mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 15:21:35 +00:00
9 lines
143 B
GLSL
9 lines
143 B
GLSL
uniform vec4 u_Color;
|
|
|
|
varying float var_Scale;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = u_Color;
|
|
gl_FragColor.a = sqrt(clamp(var_Scale, 0.0, 1.0));
|
|
}
|