summaryrefslogtreecommitdiff
path: root/lib/rendercopy_gen9.c
diff options
context:
space:
mode:
authorImre Deak <imre.deak@intel.com>2015-01-29 00:03:19 -0800
committerImre Deak <imre.deak@intel.com>2015-02-02 15:27:10 +0200
commit87edb519408746d31110ea4a01cfbf0734433cb8 (patch)
treee96f61e76cdb186d7af3487c1a9ca8e95bf3597b /lib/rendercopy_gen9.c
parent51d87b80493169f68bf1cda0eb2f6715310fe45c (diff)
rendercopy/gen9: fix gem_render_copy 3d state setup
Without emitting the default 3DSTATE_WM_DEPTH_STENCIL state the test will fail. Signed-off-by: Imre Deak <imre.deak@intel.com>
Diffstat (limited to 'lib/rendercopy_gen9.c')
-rw-r--r--lib/rendercopy_gen9.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index e20a84fd..b7b133ca 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -821,7 +821,13 @@ gen8_emit_ps(struct intel_batchbuffer *batch, uint32_t kernel) {
}
static void
-gen8_emit_depth(struct intel_batchbuffer *batch) {
+gen9_emit_depth(struct intel_batchbuffer *batch)
+{
+ OUT_BATCH(GEN8_3DSTATE_WM_DEPTH_STENCIL | (4 - 2));
+ OUT_BATCH(0);
+ OUT_BATCH(0);
+ OUT_BATCH(0);
+
OUT_BATCH(GEN7_3DSTATE_DEPTH_BUFFER | (8-2));
OUT_BATCH(0);
OUT_BATCH(0);
@@ -999,7 +1005,7 @@ void gen9_render_copyfunc(struct intel_batchbuffer *batch,
OUT_BATCH(GEN6_3DSTATE_SCISSOR_STATE_POINTERS);
OUT_BATCH(scissor_state);
- gen8_emit_depth(batch);
+ gen9_emit_depth(batch);
gen7_emit_clear(batch);