Module: Mesa Branch: master Commit: 0294dd00ccdab2c20d5df786ba780d7e091c2ab4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0294dd00ccdab2c20d5df786ba780d7e091c2ab4
Author: Lionel Landwerlin <[email protected]> Date: Thu Aug 11 18:25:09 2016 +0100 anv: pipeline: gen7: fix assert in debug mode SampleMask is only 8bits long on gen7. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97278 Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> --- src/intel/vulkan/genX_pipeline_util.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/intel/vulkan/genX_pipeline_util.h b/src/intel/vulkan/genX_pipeline_util.h index cf2adb0..679fb57 100644 --- a/src/intel/vulkan/genX_pipeline_util.h +++ b/src/intel/vulkan/genX_pipeline_util.h @@ -463,7 +463,11 @@ emit_ms_state(struct anv_pipeline *pipeline, * * 3DSTATE_SAMPLE_MASK.SampleMask is 16 bits. */ +#if GEN_GEN >= 8 uint32_t sample_mask = 0xffff; +#else + uint32_t sample_mask = 0xff; +#endif if (info) { samples = info->rasterizationSamples; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
