7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
uniform float value;
|
|
float otherValue = log(value);
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(otherValue);
|
|
}
|