mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
8 lines
114 B
GLSL
8 lines
114 B
GLSL
|
|
precision mediump float;
|
||
|
|
varying vec4 v_color;
|
||
|
|
varying vec2 v_texcoord;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
gl_FragColor = v_color;
|
||
|
|
}
|