summaryrefslogtreecommitdiff
path: root/tools/gfx/shader-cursor.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-01-14 15:48:54 -0800
committerGitHub <noreply@github.com>2021-01-14 15:48:54 -0800
commitf834f25794cfb746079e92d58c7410b767c57208 (patch)
tree583a86d4cb2e446c2c06f9d786996d10647baf84 /tools/gfx/shader-cursor.cpp
parentac76997690a39605b2b8fbd63de9cbbbc2af2a73 (diff)
COM-ify all slang-gfx interfaces. (#1656)
* COM-ify all slang-gfx interfaces.
Diffstat (limited to 'tools/gfx/shader-cursor.cpp')
-rw-r--r--tools/gfx/shader-cursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gfx/shader-cursor.cpp b/tools/gfx/shader-cursor.cpp
index c4a9ac607..65cf2f8ac 100644
--- a/tools/gfx/shader-cursor.cpp
+++ b/tools/gfx/shader-cursor.cpp
@@ -13,7 +13,7 @@ Result gfx::ShaderCursor::getDereferenced(ShaderCursor& outCursor) const
case slang::TypeReflection::Kind::ConstantBuffer:
case slang::TypeReflection::Kind::ParameterBlock:
{
- ShaderObject* subObject = m_baseObject->getObject(m_offset);
+ auto subObject = m_baseObject->getObject(m_offset);
outCursor = ShaderCursor(subObject);
return SLANG_OK;
}