Files
Lucina3DS/externals/glslang/Test/hlsl.pp.vert
2025-02-06 22:24:29 +08:00

18 lines
154 B
GLSL

#define A defined(B)
#if A
int badGlobal1;
#else
int goodGlobal1;
#endif
#define B
#if A
int goodGlobal2;
#else
int badGlobal2;
#endif
void main() {}