mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-27 16:33:38 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
12 lines
167 B
GLSL
12 lines
167 B
GLSL
attribute vec2 a_pos;
|
|
attribute vec2 a_tcoord;
|
|
|
|
varying vec2 v_colorTexCoords;
|
|
|
|
void main()
|
|
{
|
|
v_colorTexCoords = a_tcoord;
|
|
gl_Position = vec4(a_pos, 0.0, 1.0);
|
|
}
|
|
|