summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-21 03:34:00 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-21 03:34:00 +0000
commit7accb78ce40aa9aa50cd50e5adbf30f39d06116b (patch)
tree91436125e571515125ad6df33afa9b121dbc2a3f /Graphics/GraphicsEngineOpenGL
parentFixed 32-bit windows build (diff)
downloadDiligentCore-7accb78ce40aa9aa50cd50e5adbf30f39d06116b.tar.gz
DiligentCore-7accb78ce40aa9aa50cd50e5adbf30f39d06116b.zip
Refactored device object release queues
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLImpl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLImpl.h b/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLImpl.h
index 3f93f22d..0f12b83b 100644
--- a/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLImpl.h
+++ b/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLImpl.h
@@ -89,6 +89,9 @@ public:
void OnDestroyPSO(IPipelineState *pPSO);
void OnDestroyBuffer(IBuffer *pBuffer);
+ size_t GetCommandQueueCount()const { return 1; }
+ Uint64 GetCommandQueueMask()const { return Uint64{1};}
+
protected:
friend class DeviceContextGLImpl;
friend class TextureBaseGL;