mirror of
https://github.com/swaywm/sway.git
synced 2026-04-22 06:46:27 -04:00
7 lines
117 B
GLSL
7 lines
117 B
GLSL
precision mediump float;
|
|
varying vec4 v_color;
|
|
varying vec2 v_texcoord;
|
|
|
|
void main() {
|
|
gl_FragColor = v_color;
|
|
}
|