summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorccummingsNV <ccummings@nvidia.com>2024-07-26 21:02:22 +0100
committerGitHub <noreply@github.com>2024-07-26 13:02:22 -0700
commita266cbfe961f7f7bc80efc4f6c137e8771cb62c6 (patch)
tree305d6605c9e991fc6e13a0e2559bb9dbae93fc0b /include
parenta4eac09102336e082823217ebb01402880ab2823 (diff)
Add reflection of inout modifiers (#4711)
Diffstat (limited to 'include')
-rw-r--r--include/slang.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/slang.h b/include/slang.h
index ec8cb0984..edcaa8a3f 100644
--- a/include/slang.h
+++ b/include/slang.h
@@ -2412,7 +2412,10 @@ extern "C"
SLANG_MODIFIER_EXPORT,
SLANG_MODIFIER_EXTERN,
SLANG_MODIFIER_DIFFERENTIABLE,
- SLANG_MODIFIER_MUTATING
+ SLANG_MODIFIER_MUTATING,
+ SLANG_MODIFIER_IN,
+ SLANG_MODIFIER_OUT,
+ SLANG_MODIFIER_INOUT
};
// User Attribute
@@ -3327,7 +3330,10 @@ namespace slang
Export = SLANG_MODIFIER_EXPORT,
Extern = SLANG_MODIFIER_EXTERN,
Differentiable = SLANG_MODIFIER_DIFFERENTIABLE,
- Mutating = SLANG_MODIFIER_MUTATING
+ Mutating = SLANG_MODIFIER_MUTATING,
+ In = SLANG_MODIFIER_IN,
+ Out = SLANG_MODIFIER_OUT,
+ InOut = SLANG_MODIFIER_INOUT
};
};