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
/
hlsl.pp.vert
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() {}