mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
25 lines
419 B
Text
25 lines
419 B
Text
void main ()
|
|
{
|
|
float a_2;
|
|
if ((gl_FragCoord.x == 1.0)) {
|
|
discard;
|
|
};
|
|
a_2 = 4.0;
|
|
for (int i_1 = 0; i_1 < 10; i_1++, a_2 += 1.0) {
|
|
};
|
|
while (true) {
|
|
a_2 += 2.0;
|
|
break;
|
|
};
|
|
a_2 += 1.0;
|
|
a_2 = (a_2 * a_2);
|
|
a_2 = -(a_2);
|
|
a_2 = (a_2 - 1.0);
|
|
a_2 = inversesqrt(a_2);
|
|
gl_FragColor = vec4(a_2);
|
|
}
|
|
|
|
|
|
// stats: 12 alu 1 tex 4 flow
|
|
// inputs: 1
|
|
// #0: gl_FragCoord (high float) 4x1 [-1] loc 0
|