summaryrefslogtreecommitdiff
path: root/tools/gfx/renderer-shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/renderer-shared.h')
-rw-r--r--tools/gfx/renderer-shared.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gfx/renderer-shared.h b/tools/gfx/renderer-shared.h
index c7137f0fa..38aa775be 100644
--- a/tools/gfx/renderer-shared.h
+++ b/tools/gfx/renderer-shared.h
@@ -1121,7 +1121,7 @@ public:
Slang::RefPtr<PipelineStateBase> getSpecializedPipelineState(PipelineKey programKey)
{
Slang::RefPtr<PipelineStateBase> result;
- if (specializedPipelines.TryGetValue(programKey, result))
+ if (specializedPipelines.tryGetValue(programKey, result))
return result;
return nullptr;
}
@@ -1199,7 +1199,7 @@ public:
TransientResourceHeapBase* transientHeap,
IResourceCommandEncoder* encoder)
{
- if (auto ptr = m_deviceBuffers.TryGetValue(pipeline))
+ if (auto ptr = m_deviceBuffers.tryGetValue(pipeline))
{
return ptr->Ptr();
}