diff options
Diffstat (limited to 'Graphics/GraphicsEngineNextGenBase')
| -rw-r--r-- | Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.h | 8 |
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: |
