Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git] / Test / vk.relaxed.changeSet.vert
1 #version 460
2
3 in vec2 aPos;
4 in vec2 aUV;
5 in vec4 aColor;
6 uniform mat4 projectionMatrix;
7
8 out vec4 Color;
9 out vec2 UV;
10
11 void main()
12 {
13     Color = aColor;
14     UV = aUV;
15     gl_Position = projectionMatrix * vec4(aPos, 0, 1);
16 }