diff options
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h | 8 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp | 8 |
2 files changed, 8 insertions, 8 deletions
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) { } |
