xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/vk.relaxed.changeSet.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 460
2
3layout(location = 0) out vec4 fragColor;
4
5uniform sampler2D sTexture;
6
7in vec4 Color;
8in vec2 UV;
9
10void main()
11{
12    fragColor = Color * texture(sTexture, UV.st).r;
13}
14