summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-11-29 17:52:31 -0800
committerKenneth Graunke <kenneth@whitecape.org>2014-01-31 17:50:06 -0800
commit17768bb7b428f367e351bf9bfa480bd0d4e57442 (patch)
tree7a3050a30390bb0076f2d8b5ba3fcaa4b131a403 /src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
parent90fff1354b81ab880f1d2c2945c374ad6d8fe44f (diff)
downloadexternal_mesa3d-17768bb7b428f367e351bf9bfa480bd0d4e57442.zip
external_mesa3d-17768bb7b428f367e351bf9bfa480bd0d4e57442.tar.gz
external_mesa3d-17768bb7b428f367e351bf9bfa480bd0d4e57442.tar.bz2
i965: Replace DEPTH_STENCIL_STATE with Gen8's 3DSTATE_WM_DEPTH_STENCIL.
v2: Use stencil->_WriteEnabled instead of setting GEN8_WM_DS_STENCIL_BUFFER_WRITE_ENABLE twice (suggested by Eric). v3: Mask stencil->WriteMask and stencil->ValueMask with 0xff. The field is only 8-bits, so we'd trip the new SET_FIELD assertion when core Mesa gave us a value like 0xFFFFFFFF. The Gen7 code uses structure field widths to implicitly do this truncation. Fixes Piglit tests. v4: Use uint32_t for dw1/dw2, not uint8_t. Worst. Typo. Ever. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net> [v2]
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c')
-rw-r--r--src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c102
1 files changed, 102 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c b/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
new file mode 100644
index 0000000..8f5728f
--- /dev/null
+++ b/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
@@ -0,0 +1,102 @@
+/*
+ * Copyright © 2012 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include "intel_batchbuffer.h"
+#include "intel_fbo.h"
+#include "brw_context.h"
+#include "brw_defines.h"
+#include "brw_state.h"
+
+static void
+gen8_upload_wm_depth_stencil(struct brw_context *brw)
+{
+ struct gl_context *ctx = &brw->ctx;
+ uint32_t dw1 = 0, dw2 = 0;
+
+ /* _NEW_BUFFERS */
+ struct intel_renderbuffer *depth_irb =
+ intel_get_renderbuffer(ctx->DrawBuffer, BUFFER_DEPTH);
+
+ struct gl_stencil_attrib *stencil = &ctx->Stencil;
+
+ /* _NEW_STENCIL | _NEW_BUFFERS */
+ if (stencil->_Enabled) {
+ #define FUNC intel_translate_compare_func
+ #define OP intel_translate_stencil_op
+
+ dw1 |=
+ GEN8_WM_DS_STENCIL_TEST_ENABLE |
+ FUNC(stencil->Function[0]) << GEN8_WM_DS_STENCIL_FUNC_SHIFT |
+ OP(stencil->FailFunc[0]) << GEN8_WM_DS_STENCIL_FAIL_OP_SHIFT |
+ OP(stencil->ZFailFunc[0]) << GEN8_WM_DS_Z_FAIL_OP_SHIFT |
+ OP(stencil->ZPassFunc[0]) << GEN8_WM_DS_Z_PASS_OP_SHIFT;
+
+ if (stencil->_WriteEnabled)
+ dw1 |= GEN8_WM_DS_STENCIL_BUFFER_WRITE_ENABLE;
+
+ dw2 |=
+ SET_FIELD(stencil->WriteMask[0] & 0xff, GEN8_WM_DS_STENCIL_WRITE_MASK) |
+ SET_FIELD(stencil->ValueMask[0] & 0xff, GEN8_WM_DS_STENCIL_TEST_MASK);
+
+ if (stencil->_TestTwoSide) {
+ const int b = stencil->_BackFace;
+
+ dw1 |=
+ GEN8_WM_DS_DOUBLE_SIDED_STENCIL_ENABLE |
+ FUNC(stencil->Function[b]) << GEN8_WM_DS_BF_STENCIL_FUNC_SHIFT |
+ OP(stencil->FailFunc[b]) << GEN8_WM_DS_BF_STENCIL_FAIL_OP_SHIFT |
+ OP(stencil->ZFailFunc[b]) << GEN8_WM_DS_BF_Z_FAIL_OP_SHIFT |
+ OP(stencil->ZPassFunc[b]) << GEN8_WM_DS_BF_Z_PASS_OP_SHIFT;
+
+ dw2 |= SET_FIELD(stencil->WriteMask[b] & 0xff,
+ GEN8_WM_DS_BF_STENCIL_WRITE_MASK) |
+ SET_FIELD(stencil->ValueMask[b] & 0xff,
+ GEN8_WM_DS_BF_STENCIL_TEST_MASK);
+ }
+ }
+
+ /* _NEW_DEPTH */
+ if (ctx->Depth.Test && depth_irb) {
+ dw1 |=
+ GEN8_WM_DS_DEPTH_TEST_ENABLE |
+ FUNC(ctx->Depth.Func) << GEN8_WM_DS_DEPTH_FUNC_SHIFT;
+
+ if (ctx->Depth.Mask)
+ dw1 |= GEN8_WM_DS_DEPTH_BUFFER_WRITE_ENABLE;
+ }
+
+ BEGIN_BATCH(3);
+ OUT_BATCH(_3DSTATE_WM_DEPTH_STENCIL << 16 | (3 - 2));
+ OUT_BATCH(dw1);
+ OUT_BATCH(dw2);
+ ADVANCE_BATCH();
+}
+
+const struct brw_tracked_state gen8_wm_depth_stencil = {
+ .dirty = {
+ .mesa = _NEW_BUFFERS | _NEW_DEPTH | _NEW_STENCIL,
+ .brw = BRW_NEW_CONTEXT,
+ .cache = 0,
+ },
+ .emit = gen8_upload_wm_depth_stencil,
+};