Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / enhanced.5.frag
blobb2a51e26a57dbacede36dd7764d5d75052aa715e
1 #version 450 core
3 layout (location = 0) out vec4 FragColor;
5 layout (location = 0) in VS_OUT
7     vec3 TexCoords;
8 } fs_in;
10 layout (binding = 1) uniform sampler2D t0;
12 void main()
13 {             
14     FragColor = texture(t0, fs_in.TexCoords.xy);