Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / spv.ext.textureShadowLod.error.frag
blobef6ec21d444e30798a12287614bbe287a39cd2a3
1 #version 450
3 layout(binding = 0) uniform sampler2DArrayShadow s2da;
5 layout(location = 0) out vec4 c_out;
7 layout(location = 0) in vec4 tc;
9 void main()
11     float c = textureLod(s2da, tc, 0);
12     c_out = vec4(c);