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
161 B
GLSL
11 lines
161 B
GLSL
uniform vec4 u_color;
|
|
|
|
#ifdef SAMSUNG_GOOGLE_NEXUS
|
|
uniform sampler2D u_colorTex;
|
|
#endif
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = samsungGoogleNexusWorkaround(u_color);
|
|
}
|