It was holding the jenkins system to run cts on HSW. So I pushed [PATCH 1/2] upstream.
On Fri, Aug 12, 2016 at 5:02 PM, Anuj Phogat <anuj.pho...@gmail.com> wrote: > On Thu, Aug 11, 2016 at 10:25 AM, Lionel Landwerlin > <llandwer...@gmail.com> wrote: >> SampleMask is only 8bits long on gen7. >> >> Signed-off-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> >> Cc: Jason Ekstrand <ja...@jlekstrand.net> >> --- >> 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 64b89cd..d56eeb8 100644 >> --- a/src/intel/vulkan/genX_pipeline_util.h >> +++ b/src/intel/vulkan/genX_pipeline_util.h >> @@ -462,7 +462,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; >> -- >> 2.8.1 >> >> _______________________________________________ >> mesa-dev mailing list >> mesa-dev@lists.freedesktop.org >> https://lists.freedesktop.org/mailman/listinfo/mesa-dev > > Thanks for fixing this. > > Reviewed-by: Anuj Phogat <anuj.pho...@gmail.com> _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev