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