xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.textureError.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 140
2
3uniform sampler2D s2D;
4centroid vec2 centTexCoord;
5
6void main()
7{
8    gl_FragColor = texture2D(s2D, centTexCoord);
9}
10
11