mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-06 04:24:29 +00:00
12 lines
149 B
GLSL
12 lines
149 B
GLSL
in vec2 a_pos;
|
|
in vec2 a_tcoord;
|
|
|
|
out vec2 v_colorTexCoords;
|
|
|
|
void main()
|
|
{
|
|
v_colorTexCoords = a_tcoord;
|
|
gl_Position = vec4(a_pos, 0.0, 1.0);
|
|
}
|
|
|