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.dead-after-discard.frag
blob
769592bd5996648208c2d7881e471ed0208d7549
1
#version 450
2
3
layout(location =0 ) in float c;
4
layout(location =0 ) out int o;
5
6
void main() {
7
o = 1;
8
discard;
9
o = 3;
10
}