Sign in
ara-mdk
/
people
/
jessebarker
/
glmark2
/
0cd473c5d57f26fbbe49a2ad8a27d95bd735c723
/
.
/
data
/
shaders
/
text-renderer.vert
blob: d6cadbd47f164a4d26f7f3e32af080f3bad03763 [
file
] [
log
] [
blame
]
attribute vec2 position
;
attribute vec2 texcoord
;
varying vec2
TextureCoord
;
void
main
(
void
)
{
TextureCoord
=
texcoord
;
gl_Position
=
vec4
(
position
,
0.0
,
1.0
);
}