From a266cbfe961f7f7bc80efc4f6c137e8771cb62c6 Mon Sep 17 00:00:00 2001 From: ccummingsNV Date: Fri, 26 Jul 2024 21:02:22 +0100 Subject: Add reflection of inout modifiers (#4711) --- include/slang.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include') 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 }; }; -- cgit v1.2.3