mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-29 17:23:47 +00:00
11 lines
161 B
GLSL
11 lines
161 B
GLSL
#ifdef SAMSUNG_GOOGLE_NEXUS
|
|
uniform sampler2D u_colorTex;
|
|
#endif
|
|
|
|
varying vec4 v_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = samsungGoogleNexusWorkaround(v_color);
|
|
}
|