mirror of
https://github.com/SFML/SFML.git
synced 2025-02-19 06:39:59 +08:00
11 lines
152 B
GLSL
11 lines
152 B
GLSL
uniform float blink_alpha;
|
|
|
|
varying vec4 frontColor;
|
|
|
|
void main()
|
|
{
|
|
vec4 pixel = frontColor;
|
|
pixel.a = blink_alpha;
|
|
gl_FragColor = pixel;
|
|
}
|