From 4e8202984f134b207a9da42b953acd10b5b8d3bd Mon Sep 17 00:00:00 2001 From: Egor Date: Thu, 7 Mar 2019 22:13:31 -0800 Subject: Fixed Android build issues --- Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h | 8 ++++---- Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'Graphics/GraphicsEngineOpenGL') diff --git a/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h b/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h index 3ed12b56..57a966f2 100644 --- a/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h +++ b/Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h @@ -31,10 +31,10 @@ namespace Diligent class RenderDeviceGLESImpl final : public RenderDeviceGLImpl { public: - RenderDeviceGLESImpl( IReferenceCounters* pRefCounters, - IMemoryAllocator& RawMemAllocator, - const EngineGLAttribs& InitAttribs, - const SwapChainDesc* pSCDesc = nullptr); + RenderDeviceGLESImpl( IReferenceCounters* pRefCounters, + IMemoryAllocator& RawMemAllocator, + const EngineGLCreateInfo& InitAttribs, + const SwapChainDesc* pSCDesc = nullptr); virtual void QueryInterface( const INTERFACE_ID& IID, IObject** ppInterface ); diff --git a/Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp b/Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp index 61435151..8edc0fcf 100644 --- a/Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp @@ -27,10 +27,10 @@ namespace Diligent { - RenderDeviceGLESImpl::RenderDeviceGLESImpl(IReferenceCounters* pRefCounters, - IMemoryAllocator& RawMemAllocator, - const EngineGLAttribs& InitAttribs, - const SwapChainDesc* pSCDesc) : + RenderDeviceGLESImpl::RenderDeviceGLESImpl(IReferenceCounters* pRefCounters, + IMemoryAllocator& RawMemAllocator, + const EngineGLCreateInfo& InitAttribs, + const SwapChainDesc* pSCDesc) : RenderDeviceGLImpl(pRefCounters, RawMemAllocator, InitAttribs, pSCDesc) { } -- cgit v1.2.3