* Update SPIRV libraries - Update `spirv-cross` - Update `spirv-tools` - Update `glslang` `spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions). * Add SPIRV-Tools dependency to matinfo
7 lines
190 B
GLSL
7 lines
190 B
GLSL
#version 450
|
|
#extension GL_NV_sample_mask_override_coverage : enable
|
|
in vec4 color;
|
|
layout(override_coverage) out int gl_SampleMask[];
|
|
void main() {
|
|
gl_SampleMask[0] = int(0xFFFFFFFF);
|
|
} |