projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2913 from greg-lunarg/i2905
[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
}