a4deb3bbb501e88912cd735dcf1c6139c045f724
[platform/upstream/VK-GL-CTS.git] / data / gles2 / shaders / loops.test
1 group custom "Custom loop tests"
2
3         case continue_in_fragment_for_loop
4                 vertex ""
5                         void main()
6                         {
7                         }
8                 ""
9                 fragment ""
10                         void main()
11                         {
12                                 int count1 = 0;
13                                 for(int i=0;i<4;i++)
14                                 {
15                                         if (count1 == 2)
16                                                 continue;
17                                 }
18                                 gl_FragColor = vec4(1.0);
19                         }
20                 ""
21         end
22
23 end # custom