mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-05-15 21:45:10 -04:00
12 lines
181 B
GLSL
12 lines
181 B
GLSL
#ifdef GL_FRAGMENT_PRECISION_HIGH
|
|
precision highp float;
|
|
#else
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec2 v_texcoord;
|
|
uniform vec4 color;
|
|
|
|
void main() {
|
|
gl_FragColor = color;
|
|
}
|