summaryrefslogtreecommitdiff
path: root/slang.h
diff options
context:
space:
mode:
Diffstat (limited to 'slang.h')
-rw-r--r--slang.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/slang.h b/slang.h
index 2f6c112c0..3ed715f23 100644
--- a/slang.h
+++ b/slang.h
@@ -93,7 +93,11 @@ extern "C"
typedef unsigned int SlangCompileFlags;
enum
{
- SLANG_COMPILE_FLAG_NO_CHECKING = 1 << 0, /**< Disable semantic checking as much as possible. */
+ /** Disable semantic checking as much as possible. */
+ SLANG_COMPILE_FLAG_NO_CHECKING = 1 << 0,
+
+ /* Split apart types that contain a mix of resource and non-resource data */
+ SLANG_COMPILE_FLAG_SPLIT_MIXED_TYPES = 1 << 1,
};
/*!