Module: Mesa Branch: master Commit: af7fef12f7ae1faa63743acd9fb19e2c024b939c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=af7fef12f7ae1faa63743acd9fb19e2c024b939c
Author: Samuel Pitoiset <[email protected]> Date: Mon Jan 30 13:55:53 2017 +0100 r600: fix a compilation warning in r600_screen_create() Should be r600_common_screen instead of r600_screen. Fixes: 80157a2c20 ("gallium/radeon: clean up r600_query_init_backend_mask") Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]> --- src/gallium/drivers/r600/r600_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 1d9111d..e83ba32 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -735,6 +735,6 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws) if (rscreen->b.debug_flags & DBG_TEST_DMA) r600_test_dma(&rscreen->b); - r600_query_fix_enabled_rb_mask(rscreen); + r600_query_fix_enabled_rb_mask(&rscreen->b); return &rscreen->b.b; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
