blob: 313817c0e9149b3382d0c9be26d8cec2b85f963c [file] [log] [blame]
John Stiles61e5e202021-09-02 09:56:31 -04001half4 main(float2 xy) {
2 int i;
3
4 for (int a=0; a<10; ++a) { // 10
5 for (int b=0; b<10; ++b) { // 100
6 for (int c=0; c<10; ++c) { // 1000
7 for (int d=0; d<10; ++d) { // 10000
8 ++i;
9 }}}}
10
11 return half4(0);
12}