mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 16:07:28 +00:00
10 lines
153 B
Text
10 lines
153 B
Text
|
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));
|
||
|
}
|