projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git]
/
Test
/
spv.for-continue-break.vert
1
#version 310 es
2
void main() {
3
int i;
4
int A, B, C, D, E, F, G;
5
for (i=0; i < 10 ; i++) {
6
A = 1;
7
if (i%2 ==0) {
8
B = 1;
9
continue;
10
C = 1;
11
}
12
if (i%3 == 0) {
13
D = 1;
14
break;
15
E = 1;
16
}
17
F = 12;
18
}
19
G = 99;
20
}