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
/
hlsl.pp.vert
blob
4b0a451239bd2b85f6442cf7f37cf4be72aa376d
1
#define A defined(B)
2
3
#if A
4
int badGlobal1;
5
#else
6
int goodGlobal1;
7
#endif
8
9
#define B
10
11
#if A
12
int goodGlobal2;
13
#else
14
int badGlobal2;
15
#endif
16
17
void main() {}