blob: 9304115fc33779a2c35673160584bd31d476cce9 [file] [log] [blame]
half4 main(float2 xy) {
int i;
for (int a=0; a<10; ++a) // 10
for (int b=0; b<10; ++b) // 100
for (int c=0; c<10; ++c) // 1000
for (int d=0; d<10; ++d) // 10000
for (int e=0; e<10; ++e) // 100000
++i;
return half4(0);
}