8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
uniform float otherValue;
|
|
uniform float value;
|
|
void main ()
|
|
{
|
|
gl_FragColor = vec4((otherValue / (1.0/(value))));
|
|
}
|
|
|