John Stiles | 61e5e20 | 2021-09-02 09:56:31 -0400 | [diff] [blame] | 1 | half4 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 | } |