yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
2896aa39a
master
1//DIAGNOSTIC_TEST(smoke):SIMPLE: 2 3// Use an undefined identifier in a preprocessor conditional 4 5#define FOO 1 6#define BORT 1 7 8#if FOO && BART 9#error Should not get here 10#endif