diff options
Diffstat (limited to 'source/slang/reflection.cpp')
| -rw-r--r-- | source/slang/reflection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/reflection.cpp b/source/slang/reflection.cpp index b40900faf..f9c704437 100644 --- a/source/slang/reflection.cpp +++ b/source/slang/reflection.cpp @@ -609,7 +609,7 @@ SLANG_API SlangReflectionTypeLayout* spReflection_GetTypeLayout( RefPtr<TypeLayout> result; if (targetReq->getTypeLayouts().TryGetValue(type, result)) return (SlangReflectionTypeLayout*)result.Ptr(); - result = CreateTypeLayout(layoutContext, type); + result = createTypeLayout(layoutContext, type); targetReq->getTypeLayouts()[type] = result; return (SlangReflectionTypeLayout*)result.Ptr(); } |
