From: Eric Anholt Date: Thu, 11 Apr 2013 17:34:59 +0000 (-0700) Subject: i965: Fix an unused variable warning in the release build. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28170c5b7f1feaa5918f4f5427435b0ad53a8c2f;p=mesa.git i965: Fix an unused variable warning in the release build. I think this actually clarifies what's going on in the asserts a bit, given how many regions we've got floating around. Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/mesa/drivers/dri/i965/brw_misc_state.c index db6bc2d8993..953f6cdbdb3 100644 --- a/src/mesa/drivers/dri/i965/brw_misc_state.c +++ b/src/mesa/drivers/dri/i965/brw_misc_state.c @@ -599,8 +599,6 @@ brw_emit_depthbuffer(struct brw_context *brw) } if (depth_irb) { - struct intel_region *region = depth_mt->region; - /* When 3DSTATE_DEPTH_BUFFER.Separate_Stencil_Enable is set, then * 3DSTATE_DEPTH_BUFFER.Surface_Format is not permitted to be a packed * depthstencil format. @@ -616,8 +614,8 @@ brw_emit_depthbuffer(struct brw_context *brw) /* Prior to Gen7, if using separate stencil, hiz must be enabled. */ assert(intel->gen >= 7 || !separate_stencil || hiz); - assert(intel->gen < 6 || region->tiling == I915_TILING_Y); - assert(!hiz || region->tiling == I915_TILING_Y); + assert(intel->gen < 6 || depth_mt->region->tiling == I915_TILING_Y); + assert(!hiz || depth_mt->region->tiling == I915_TILING_Y); depthbuffer_format = brw_depthbuffer_format(brw); depth_surface_type = BRW_SURFACE_2D;