2012-04-03 23:30:07 -04:00
|
|
|
void main ()
|
|
|
|
{
|
2012-10-07 23:41:18 -04:00
|
|
|
float a_2;
|
2012-04-03 23:30:07 -04:00
|
|
|
if ((gl_FragCoord.x == 1.0)) {
|
|
|
|
discard;
|
|
|
|
};
|
2012-10-07 23:41:18 -04:00
|
|
|
a_2 = 4.0;
|
2015-07-28 23:04:55 -04:00
|
|
|
for (int i_1 = 0; i_1 < 10; i_1++) {
|
|
|
|
a_2 += 1.0;
|
2012-04-03 23:30:07 -04:00
|
|
|
};
|
|
|
|
while (true) {
|
2014-02-11 02:06:13 -05:00
|
|
|
a_2 += 2.0;
|
2012-04-03 23:30:07 -04:00
|
|
|
break;
|
|
|
|
};
|
2014-10-11 15:32:43 -04:00
|
|
|
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);
|
2012-04-03 23:30:07 -04:00
|
|
|
}
|
|
|
|
|
2014-02-11 02:06:13 -05:00
|
|
|
|
2014-10-11 15:32:43 -04:00
|
|
|
// stats: 12 alu 1 tex 4 flow
|
|
|
|
// inputs: 1
|
|
|
|
// #0: gl_FragCoord (high float) 4x1 [-1] loc 0
|