mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
5154db5183
including SPV generation using SPV_EXT_fragment_invocation_density. This is an alias of the functionality in SPV_NV_shading_rate, and thus in some cases we can only have one set of the tokens present (switch statements), so we have picked the EXT version. This required updating the expected test results for SPV_NV_shading_rate. Also updated the known-good for spirv-headers so that the validator in spirv-tools knows about the new extension.
13 lines
324 B
GLSL
13 lines
324 B
GLSL
#version 450
|
|
|
|
// try using a fragment-only extension in a vertex shader
|
|
#extension GL_EXT_fragment_invocation_density : require
|
|
|
|
layout (location = 0) out uvec2 FragSize;
|
|
layout (location = 2) out int FragInvocationCount;
|
|
|
|
void main () {
|
|
FragSize = gl_FragSizeEXT;
|
|
FragInvocationCount = gl_FragInvocationCountEXT;
|
|
}
|