diff options
author | Gustavo Lima Chaves <[email protected]> | 2018-03-19 23:06:45 -0700 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2018-06-08 11:16:01 -0700 |
commit | 7dfaf025c5d8fa1487eefc97d615d3cfde50ac6c (patch) | |
tree | 009cf096447c5725f79a01326396ee4c259ef320 /src/intel/vulkan/genX_pipeline.c | |
parent | 7cc5178bbadff29f7191f5e9ca8ea51a17ad5f06 (diff) |
anv: enable VK_EXT_shader_stencil_export
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index 6016d257584..462c59451cc 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -1600,6 +1600,7 @@ emit_3dstate_ps_extra(struct anv_pipeline *pipeline, ps.PixelShaderHasUAV = true; #if GEN_GEN >= 9 + ps.PixelShaderComputesStencil = wm_prog_data->computed_stencil; ps.PixelShaderPullsBary = wm_prog_data->pulls_bary; ps.InputCoverageMaskState = wm_prog_data->uses_sample_mask ? ICMS_INNER_CONSERVATIVE : ICMS_NONE; |