mirror of
https://github.com/SFML/SFML.git
synced 2025-03-14 01:40:05 +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;
|
|
}
|