Sign in
cobalt
/
cobalt
/
2a8c847d785c1602f60915c8e0112e0aec6a15a5
/
.
/
src
/
cobalt
/
renderer
/
glimp_shaders
/
glsl
/
vertex_position_and_texcoord.glsl
blob: 57b4fa73c3f76bfbc2ef74bdbe8e747510a7e5a6 [
file
] [
log
] [
blame
]
attribute vec2 a_position
;
attribute vec2 a_tex_coord
;
varying vec2 v_tex_coord
;
void
main
()
{
gl_Position
=
vec4
(
a_position
.
x
,
a_position
.
y
,
0
,
1
);
v_tex_coord
=
a_tex_coord
;
}