Module: Mesa Branch: master Commit: 103c363e0adef450aa005376834fd545a2caebf2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=103c363e0adef450aa005376834fd545a2caebf2
Author: Christian Gmeiner <[email protected]> Date: Wed Jan 18 16:15:01 2017 +0100 etnaviv: add flags parameter to texture barrier Fixes compile warning introduced by commit a1c848. Signed-off-by: Christian Gmeiner <[email protected]> --- src/gallium/drivers/etnaviv/etnaviv_texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/etnaviv/etnaviv_texture.c b/src/gallium/drivers/etnaviv/etnaviv_texture.c index 6b64de2..c020fb2 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_texture.c +++ b/src/gallium/drivers/etnaviv/etnaviv_texture.c @@ -317,7 +317,7 @@ etna_set_sampler_views(struct pipe_context *pctx, unsigned shader, } static void -etna_texture_barrier(struct pipe_context *pctx) +etna_texture_barrier(struct pipe_context *pctx, unsigned flags) { struct etna_context *ctx = etna_context(pctx); /* clear color and texture cache to make sure that texture unit reads _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
