https://github.com/shader-slang/slang
Raw File
Tip revision: 662ef3ed90cd96435c05096c50f3486a1a6e9d18 authored by Yong He on 04 May 2023, 20:44:00 UTC
Update user-guide. (#2868)
Tip revision: 662ef3e
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