mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01: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;
|
||
|
}
|