Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
097215f6188817252e5b06ef03e99ba1d06daed0
/
.
/
Test
/
vk.relaxed.changeSet.vert
blob: 419adba362486296840d3757ca26c7488bc9ba6f [
file
] [
log
] [
blame
]
#version 460
in
vec2 aPos
;
in
vec2 aUV
;
in
vec4 aColor
;
uniform mat4 projectionMatrix
;
out
vec4
Color
;
out
vec2 UV
;
void
main
()
{
Color
=
aColor
;
UV
=
aUV
;
gl_Position
=
projectionMatrix
*
vec4
(
aPos
,
0
,
1
);
}