diff options
Diffstat (limited to 'source/slang/slang-ast-type.cpp')
| -rw-r--r-- | source/slang/slang-ast-type.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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<ConstRefType>(paramType)) + { + return kParameterDirection_ConstRef; + } else if (as<InOutType>(paramType)) { return kParameterDirection_InOut; |
