Sign in
ara-mdk
/
people
/
jessebarker
/
glmark2
/
b00c4a2ee5648d25402684302122dabfffa318bf
/
.
/
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
);
}