Sign in
ara-mdk
/
people
/
jessebarker
/
glmark2
/
0cd473c5d57f26fbbe49a2ad8a27d95bd735c723
/
.
/
data
/
shaders
/
effect-2d.vert
blob: d0aa488b3ed7b6790a4c93ed8421723149ae387c [
file
] [
log
] [
blame
]
attribute vec3 position
;
varying vec2
TextureCoord
;
void
main
(
void
)
{
gl_Position
=
vec4
(
position
,
1.0
);
TextureCoord
=
position
.
xy
*
0.5
+
0.5
;
}