Sign in
ara-mdk
/
people
/
jessebarker
/
glmark2
/
0cd473c5d57f26fbbe49a2ad8a27d95bd735c723
/
.
/
data
/
shaders
/
gradient.vert
blob: f9c8a88a8df5cfabcc5c3929214bb634af03e01e [
file
] [
log
] [
blame
]
attribute vec2 position
;
attribute vec2 uvIn
;
varying vec2 uv
;
void
main
()
{
uv
=
uvIn
;
gl_Position
=
vec4
(
position
,
1.0
,
1.0
);
}