summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineNextGenBase
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-30 17:17:16 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-30 17:17:16 +0000
commita4e8a5748874ccdd9afca8bb7741f454d7be4904 (patch)
treea5a547b000e219e2251f22a393cf79e283eb65fc /Graphics/GraphicsEngineNextGenBase
parentAdded methods to get command queue from the device context (API Version 240038) (diff)
downloadDiligentCore-a4e8a5748874ccdd9afca8bb7741f454d7be4904.tar.gz
DiligentCore-a4e8a5748874ccdd9afca8bb7741f454d7be4904.zip
Fixed gcc errors
Diffstat (limited to 'Graphics/GraphicsEngineNextGenBase')
-rw-r--r--Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h b/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h
index f92c0d93..471082d2 100644
--- a/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h
+++ b/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h
@@ -65,22 +65,22 @@ public:
virtual ICommandQueueType* LockCommandQueue()override final
{
- if (m_bIsDeferred)
+ if (this->m_bIsDeferred)
{
LOG_WARNING_MESSAGE("Deferred contexts have no associated command queues");
return nullptr;
}
- return m_pDevice.RawPtr<DeviceImplType>()->LockCommandQueue(m_CommandQueueId);
+ return this->m_pDevice.RawPtr<DeviceImplType>()->LockCommandQueue(this->m_CommandQueueId);
}
virtual void UnlockCommandQueue()
{
- if (m_bIsDeferred)
+ if (this->m_bIsDeferred)
{
LOG_WARNING_MESSAGE("Deferred contexts have no associated command queues");
return;
}
- m_pDevice.RawPtr<DeviceImplType>()->UnlockCommandQueue(m_CommandQueueId);
+ this->m_pDevice.RawPtr<DeviceImplType>()->UnlockCommandQueue(this->m_CommandQueueId);
}
protected: