xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.texture.sampler.transform.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 440
2
3uniform sampler smp;
4uniform texture2D tex;
5
6in vec2 coord;
7
8out vec4 color;
9
10void main()
11{
12  color = texture(sampler2D(tex, smp), coord);
13}
14