From a4e8a5748874ccdd9afca8bb7741f454d7be4904 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Wed, 30 Oct 2019 10:17:16 -0700 Subject: Fixed gcc errors --- .../GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Graphics/GraphicsEngineNextGenBase') 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()->LockCommandQueue(m_CommandQueueId); + return this->m_pDevice.RawPtr()->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()->UnlockCommandQueue(m_CommandQueueId); + this->m_pDevice.RawPtr()->UnlockCommandQueue(this->m_CommandQueueId); } protected: -- cgit v1.2.3