674a1a051f
CCBUG: 322136 REVIEW: 111600
12 lines
254 B
GLSL
12 lines
254 B
GLSL
#version 140
|
|
|
|
uniform vec2 u_center;
|
|
uniform float u_radius;
|
|
uniform float u_progress;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
float d = smoothstep(0, u_radius, distance(gl_FragCoord.xy, u_center));
|
|
fragColor = vec4(0.0, 0.0, 0.0, d * u_progress);
|
|
}
|