summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-07-02 00:42:51 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-07-02 00:42:51 +0000
commitd445b79a153eb229a508bea8f4500f6e1ffb0474 (patch)
treedc881e6f4c5691254040fad7ffff79b3dae5bbe4 /Graphics/GraphicsEngineOpenGL
parentReworked binding default frame buffer to keep references to current RTV and D... (diff)
downloadDiligentCore-d445b79a153eb229a508bea8f4500f6e1ffb0474.tar.gz
DiligentCore-d445b79a153eb229a508bea8f4500f6e1ffb0474.zip
Fixed iOS build error
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h
index 141d7c4f..51d34a47 100644
--- a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h
+++ b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h
@@ -56,6 +56,9 @@ public:
virtual void SetWindowedMode()override final;
virtual GLuint GetDefaultFBO()const override final;
+
+ virtual ITextureView* GetCurrentBackBufferRTV()override final{return nullptr;}
+ virtual ITextureView* GetDepthBufferDSV()override final{return nullptr;}
private:
void InitRenderBuffers(bool InitFromDrawable, Uint32 &Width, Uint32 &Height);