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