You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
368 B

group custom "Custom loop tests"
case continue_in_fragment_for_loop
vertex ""
${VERTEX_DECLARATIONS}
void main()
{
${VERTEX_OUTPUT}
}
""
fragment ""
${FRAGMENT_DECLARATIONS}
void main()
{
int count1 = 0;
for(int i=0;i<4;i++)
{
if (count1 == 2)
continue;
}
${FRAGMENT_OUTPUT}
}
""
end
end # custom