mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-24 21:01:34 +00:00
866aa787cf
Update to ioquake3 revision 3306 from 1951 of the ioq3 Github repo via subversion. Over 4 years of changes.
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));
|
|
}
|