We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09fe4ff commit 97c5d06Copy full SHA for 97c5d06
include/slang.h
@@ -162,6 +162,9 @@ Most applications should not need to touch this section.
162
#ifndef SLANG_WIIU
163
#define SLANG_WIIU 0
164
#endif
165
+ #ifndef SLANG_WASM
166
+ #define SLANG_WASM 0
167
+ #endif
168
#endif /* SLANG_PLATFORM */
169
170
/* Shorthands for "families" of compilers/platforms */
@@ -450,6 +453,10 @@ convention for interface methods.
450
453
#define SLANG_PROCESSOR_POWER_PC_64 0
451
454
452
455
456
+#ifndef SLANG_PROCESSOR_WASM
457
+ #define SLANG_PROCESSOR_WASM 0
458
+#endif
459
+
460
// Processor families
461
462
#define SLANG_PROCESSOR_FAMILY_X86 (SLANG_PROCESSOR_X86_64 | SLANG_PROCESSOR_X86)
0 commit comments