From b7d318f48db2cb83a41d665f1727ae93fc555124 Mon Sep 17 00:00:00 2001 From: Yong He Date: Thu, 28 Sep 2023 18:07:40 -0700 Subject: Support `constref` parameters passing. (#3249) * Support `constref` parameters passing. * Fix. * Fix. * Add test and diagnostic on mix use of __constref and no_diff. * check for [constref] on differentiable member method. --------- Co-authored-by: Yong He --- source/slang/slang-ast-type.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/slang/slang-ast-type.cpp') diff --git a/source/slang/slang-ast-type.cpp b/source/slang/slang-ast-type.cpp index f80de86fd..a29ff9bb3 100644 --- a/source/slang/slang-ast-type.cpp +++ b/source/slang/slang-ast-type.cpp @@ -372,6 +372,10 @@ ParameterDirection FuncType::getParamDirection(Index index) { return kParameterDirection_Ref; } + else if (as(paramType)) + { + return kParameterDirection_ConstRef; + } else if (as(paramType)) { return kParameterDirection_InOut; -- cgit v1.2.3