Mesa (master): i965: Use ctx->Stencil._WriteEnabled in DEPTH_STENCIL_STATE.

Kenneth Graunke kwg at kemper.freedesktop.org
Thu Apr 4 22:39:45 UTC 2013


Module: Mesa
Branch: master
Commit: 32726b1af6adbde9d6512ef2400c34d544fa02a8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=32726b1af6adbde9d6512ef2400c34d544fa02a8

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Tue Apr  2 10:28:07 2013 -0700

i965: Use ctx->Stencil._WriteEnabled in DEPTH_STENCIL_STATE.

This is the same computation as the _WriteEnabled flag, so we may as
well use it.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Paul Berry <stereotype441 at gmail.com>

---

 src/mesa/drivers/dri/i965/gen6_depthstencil.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/gen6_depthstencil.c b/src/mesa/drivers/dri/i965/gen6_depthstencil.c
index 4ea517f..940d91f 100644
--- a/src/mesa/drivers/dri/i965/gen6_depthstencil.c
+++ b/src/mesa/drivers/dri/i965/gen6_depthstencil.c
@@ -74,11 +74,7 @@ gen6_upload_depth_stencil_state(struct brw_context *brw)
 	 ds->ds1.bf_stencil_test_mask = ctx->Stencil.ValueMask[back];
       }
 
-      /* Not really sure about this:
-       */
-      if (ctx->Stencil.WriteMask[0] ||
-	  (ctx->Stencil._TestTwoSide && ctx->Stencil.WriteMask[back]))
-	 ds->ds0.stencil_write_enable = 1;
+      ds->ds0.stencil_write_enable = ctx->Stencil._WriteEnabled;
    }
 
    /* _NEW_DEPTH */




More information about the mesa-commit mailing list