From: Anuj Phogat Date: Mon, 26 Sep 2016 18:40:00 +0000 (-0700) Subject: anv/gen7_pipeline: Set sample mask field in 3DSTATE_PS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ffcf95fc4a63c56471eeee268d1a973daa55d7a;p=mesa.git anv/gen7_pipeline: Set sample mask field in 3DSTATE_PS Signed-off-by: Anuj Phogat Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/gen7_pipeline.c b/src/intel/vulkan/gen7_pipeline.c index 8de9749043d..d4d494f6210 100644 --- a/src/intel/vulkan/gen7_pipeline.c +++ b/src/intel/vulkan/gen7_pipeline.c @@ -237,6 +237,9 @@ genX(graphics_pipeline_create)( /* Haswell requires the sample mask to be set in this packet as well as * in 3DSTATE_SAMPLE_MASK; the values should match. */ /* _NEW_BUFFERS, _NEW_MULTISAMPLE */ +#if GEN_IS_HASWELL + ps.SampleMask = 0xff; +#endif } uint32_t samples = pCreateInfo->pMultisampleState ?