mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
8 lines
163 B
Text
8 lines
163 B
Text
uniform float value;
|
|
uniform float otherValue;
|
|
void main()
|
|
{
|
|
float invValue = 1.0 / value;
|
|
float result = otherValue / invValue;
|
|
gl_FragColor = vec4(result);
|
|
}
|