mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +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
11 lines
172 B
GLSL
11 lines
172 B
GLSL
#version 150 core
|
|
|
|
uniform sampler2D u_sampler;
|
|
in vec2 v_texCoord;
|
|
out vec4 v_FragColor;
|
|
|
|
void main()
|
|
{
|
|
v_FragColor = vec4(texture(u_sampler, v_texCoord).rgb, 1.0);
|
|
}
|