From: Eric Anholt Date: Thu, 20 Jun 2013 16:28:53 +0000 (-0700) Subject: i965: Remove _NEW_DEPTH state flagging on drawbuffers change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15c47481ba9bfaf88f125f12234da642588f1495;p=mesa.git i965: Remove _NEW_DEPTH state flagging on drawbuffers change. Of the places noting a _NEW_DEPTH dependency, all were already checking for _NEW_BUFFERS if appropriate. Reviewed-by: Anuj Phogat Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_vtbl.c b/src/mesa/drivers/dri/i965/brw_vtbl.c index 2c71c087196..99d661f97b8 100644 --- a/src/mesa/drivers/dri/i965/brw_vtbl.c +++ b/src/mesa/drivers/dri/i965/brw_vtbl.c @@ -130,8 +130,6 @@ brw_update_draw_buffer(struct intel_context *intel) return; } - intel->NewGLState |= _NEW_DEPTH; - /* The driver uses this in places that need to look up * renderbuffers' buffer objects. */ diff --git a/src/mesa/drivers/dri/i965/gen7_misc_state.c b/src/mesa/drivers/dri/i965/gen7_misc_state.c index 12b752cc846..539fc321fbb 100644 --- a/src/mesa/drivers/dri/i965/gen7_misc_state.c +++ b/src/mesa/drivers/dri/i965/gen7_misc_state.c @@ -44,7 +44,7 @@ gen7_emit_depth_stencil_hiz(struct brw_context *brw, intel_emit_depth_stall_flushes(intel); - /* _NEW_DEPTH, _NEW_STENCIL */ + /* _NEW_DEPTH, _NEW_STENCIL, _NEW_BUFFERS */ BEGIN_BATCH(7); OUT_BATCH(GEN7_3DSTATE_DEPTH_BUFFER << 16 | (7 - 2)); OUT_BATCH((depth_mt ? depth_mt->region->pitch - 1 : 0) |