summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineMetal
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-09-08 22:38:04 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-09-08 22:38:04 +0000
commiteaf6da9e6276a390885ab6835041f238229e580a (patch)
treef4660651b186d0c56f5e3a45afd900322eac48e5 /Graphics/GraphicsEngineMetal
parentUpdated ICommandQueueD3D12::Wait method to return HRESULT (diff)
downloadDiligentCore-eaf6da9e6276a390885ab6835041f238229e580a.tar.gz
DiligentCore-eaf6da9e6276a390885ab6835041f238229e580a.zip
Fixed Metal build error
Diffstat (limited to 'Graphics/GraphicsEngineMetal')
-rw-r--r--Graphics/GraphicsEngineMetal/src/DeviceContextMtlImpl.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineMetal/src/DeviceContextMtlImpl.mm b/Graphics/GraphicsEngineMetal/src/DeviceContextMtlImpl.mm
index bd975afe..87c3b3ee 100644
--- a/Graphics/GraphicsEngineMetal/src/DeviceContextMtlImpl.mm
+++ b/Graphics/GraphicsEngineMetal/src/DeviceContextMtlImpl.mm
@@ -376,7 +376,7 @@ namespace Diligent
LOG_ERROR_MESSAGE("DeviceContextMtlImpl::SignalFence() is not implemented");
}
- void DeviceContextD3D11Impl::Wait(IFence* pFence, Uint64 Value)
+ void DeviceContextMtlImpl::Wait(IFence* pFence, Uint64 Value)
{
VERIFY(!m_bIsDeferred, "Fence can only be waited from immediate context");
Flush();