i965: Fix an unused variable warning in the release build.
authorEric Anholt <eric@anholt.net>
Thu, 11 Apr 2013 17:34:59 +0000 (10:34 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 12 Apr 2013 23:32:13 +0000 (16:32 -0700)
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 <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_misc_state.c

index db6bc2d89936f60b9fbb590dba0e22e574958ea3..953f6cdbdb378ee513df5617b5049aa7dd810532 100644 (file)
@@ -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;