mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-12 08:21:33 -04:00
11 lines
171 B
GLSL
11 lines
171 B
GLSL
#ifdef GL_FRAGMENT_PRECISION_HIGH
|
|
precision highp float;
|
|
#else
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec3 v_color;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(v_color, 1.0);
|
|
}
|