mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05: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;
|
||
|
|
}
|