SPV: SampleMask does not depend on SampleRateShading.

Fixes #1158.
Fixes #1159.
This commit is contained in:
John Kessenich
2017-11-20 16:32:49 -07:00
parent e2c15b4f6e
commit cbdf871d7f
11 changed files with 175 additions and 4 deletions

9
Test/spv.sample.frag Normal file
View File

@@ -0,0 +1,9 @@
#version 450
layout(location = 0) in sample vec4 samp;
layout(location = 0) out vec4 color;
void main()
{
color = samp;
}