mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
9 lines
163 B
GLSL
9 lines
163 B
GLSL
|
precision mediump float;
|
||
|
varying vec2 v_texcoord;
|
||
|
uniform sampler2D tex;
|
||
|
uniform float alpha;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = texture2D(tex, v_texcoord) * alpha;
|
||
|
}
|