mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-29 02:55:36 -05:00
20 lines
445 B
Text
20 lines
445 B
Text
|
// Used to expose bugs in constant variable optimization,
|
||
|
// when variables were deemed constant not taking into
|
||
|
// account branches or previous dereferences of them.
|
||
|
|
||
|
uniform float mode;
|
||
|
float func (float c) {
|
||
|
if (mode == 2.0)
|
||
|
return c;
|
||
|
if (mode == 3.0)
|
||
|
discard;
|
||
|
if (mode == 10.0)
|
||
|
c = 0.1;
|
||
|
return c;
|
||
|
}
|
||
|
void main() {
|
||
|
vec4 c = gl_FragCoord;
|
||
|
c.x = func(c.x);
|
||
|
gl_FragColor = c;
|
||
|
}
|