mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 14:13:45 +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
14 lines
252 B
GLSL
14 lines
252 B
GLSL
varying float v_intensity;
|
|
|
|
#ifdef SAMSUNG_GOOGLE_NEXUS
|
|
uniform sampler2D u_colorTex;
|
|
#endif
|
|
|
|
uniform vec4 u_color;
|
|
|
|
void main()
|
|
{
|
|
vec4 resColor = vec4(u_color.rgb, u_color.a * v_intensity);
|
|
gl_FragColor = samsungGoogleNexusWorkaround(resColor);
|
|
}
|