Module: Mesa Branch: master Commit: f1b7fefd4e7e3872cc0d43901b7ec643e1d115f9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f1b7fefd4e7e3872cc0d43901b7ec643e1d115f9
Author: Matt Turner <[email protected]> Date: Tue Nov 24 21:25:53 2015 -0800 i965: Pass brw_context pointer, not gl_context pointer. Fixes a warning introduced by commit dcadd855. --- src/mesa/drivers/dri/i965/brw_meta_fast_clear.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c index cd35035..1b2ea42 100644 --- a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c +++ b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c @@ -494,7 +494,6 @@ fast_clear_attachments(struct brw_context *brw, struct rect fast_clear_rect) { assert(brw->gen >= 9); - struct gl_context *ctx = &brw->ctx; brw_bind_rep_write_shader(brw, (float *) fast_clear_color); @@ -511,7 +510,7 @@ fast_clear_attachments(struct brw_context *brw, _mesa_meta_drawbuffers_from_bitfield(1 << index); - brw_draw_rectlist(ctx, &fast_clear_rect, MAX2(1, fb->MaxNumLayers)); + brw_draw_rectlist(brw, &fast_clear_rect, MAX2(1, fb->MaxNumLayers)); /* Now set the mcs we cleared to INTEL_FAST_CLEAR_STATE_CLEAR so we'll * resolve them eventually. _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
