diff options
author | Jason Ekstrand <[email protected]> | 2019-03-13 17:27:39 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-03-14 12:22:20 -0500 |
commit | 162286eb7529d469f64b83e11ff896ac3549add6 (patch) | |
tree | cc037d5b52d206dbc9733107a66f9698c95c121b /src/intel/vulkan | |
parent | b63fe65bf680dac516e935f3b1608a7bc046a132 (diff) |
anv: Only set 3DSTATE_PS::VectorMaskEnable on gen8+
We don't set it on HSW and earlier in i965 and disabling it appears to
make derivatives somewhat more reliable.
Acked-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index 975052deb79..3767e5033c5 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -1761,7 +1761,7 @@ emit_3dstate_ps(struct anv_pipeline *pipeline, brw_wm_prog_data_prog_offset(wm_prog_data, ps, 2); ps.SingleProgramFlow = false; - ps.VectorMaskEnable = true; + ps.VectorMaskEnable = GEN_GEN >= 8; /* WA_1606682166 */ ps.SamplerCount = GEN_GEN == 11 ? 0 : get_sampler_count(fs_bin); /* Gen 11 workarounds table #2056 WABTPPrefetchDisable */ |