MoltenVK is a Vulkan Portability implementation. It layers a subset of the high-performance, industry-standard Vulkan graphics and compute API over Apple's Metal graphics framework, enabling Vulkan applications to run on macOS, iOS and tvOS.
Apache License 2.0
4.82k
stars
428
forks
source link
Regression in shader discard CTS test failures #2265
There has been a recent regression in CTS fragment_shader_interlock discard tests. An additional 32 tests are failing.
The newly failing tests all seem to be those of type1xaa (one sample per pixel).
There are an existing set of 45 4xaa tests that were already failing, so it might be best to bundle all 77 of them altogether in a fix, rather than just addressing the 1xaa tests.
There has been a recent regression in CTS
fragment_shader_interlock
discard tests. An additional 32 tests are failing.The newly failing tests all seem to be those of type
1xaa
(one sample per pixel).There are an existing set of 45
4xaa
tests that were already failing, so it might be best to bundle all 77 of them altogether in a fix, rather than just addressing the1xaa
tests.The full set of 576
fragment_shader_interlock
tests is in this file: fragment-shader-interlock.txtThe full set of 77 failing
fragment_shader_interlock
tests is in this file: fragment-shader-interlock.txt-fails.txtAnd the set of 32 newly-failing
1xaa
tests that make up the regression are in this file: fragment-shader-interlock.txt-new-regression-fails.txt@aitor-lunarg I'm wondering if this is related to your recent PR #2248, covering discard side-effects.