xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.ext.textureShadowLod.error.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 450
2
3layout(binding = 0) uniform sampler2DArrayShadow s2da;
4
5layout(location = 0) out vec4 c_out;
6
7layout(location = 0) in vec4 tc;
8
9void main()
10{
11    float c = textureLod(s2da, tc, 0);
12    c_out = vec4(c);
13}
14