зеркало из https://github.com/stride3d/xkslang.git
17 строки
230 B
GLSL
17 строки
230 B
GLSL
|
#version 110
|
||
|
|
||
|
uniform vec4 bigColor;
|
||
|
varying vec4 BaseColor;
|
||
|
uniform float d;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 color = BaseColor;
|
||
|
|
||
|
do {
|
||
|
color += bigColor;
|
||
|
} while (color.x < d);
|
||
|
|
||
|
gl_FragColor = color;
|
||
|
}
|