https://github.com/shader-slang/slang
Raw File
Tip revision: 89758544c45a15e546a1eb08891e2787bb88de4a authored by Tim Foley on 29 July 2019, 21:55:04 UTC
Fix issue with outputting "static" in GLSL (#1006)
Tip revision: 8975854
undef.slang
//TEST:SIMPLE:
// #undef support

// warning: undef of something not defined
#undef FOO

#define BAR 1.0f

float foo() { return BAR + 2.0; }

#ifdef BAR
// okay
#else
#error not okay
#endif

#undef BAR

typedef float BAR;

BAR bar() { return 2.0; }

#if !defined(BAR)
// okay
#else
#error not okay
#endif


#define FOO

#undef FOO
back to top