https://github.com/shader-slang/slang
Raw File
Tip revision: e449446d540b6cc3d5fcd70a8f05886ef2be7547 authored by Yong He on 26 September 2022, 19:58:48 UTC
Support clang-format `file` and `--fallback-style` in slangd. (#2412)
Tip revision: e449446
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