repo.or.cz
/
glslang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git]
/
Test
/
spv.for-complex-condition.vert
blob
81dd648974a5869edf89c30241739eeb68218cb2
1
#version 450
2
layout(location=0) out highp int r;
3
layout(location=0) in lowp int flag;
4
void main() {
5
int i;
6
for (i=0; i < (flag==1 ? 10 : 15) ; i++) { r = i; }
7
}