summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor <egor.yusov@gmail.com>2019-03-08 06:13:31 +0000
committerEgor <egor.yusov@gmail.com>2019-03-08 06:13:31 +0000
commit4e8202984f134b207a9da42b953acd10b5b8d3bd (patch)
tree061567868821dd1a8c2808a9275296939b1cbc4b /Graphics/GraphicsEngineOpenGL
parentUpdated release history (diff)
downloadDiligentCore-4e8202984f134b207a9da42b953acd10b5b8d3bd.tar.gz
DiligentCore-4e8202984f134b207a9da42b953acd10b5b8d3bd.zip
Fixed Android build issues
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/RenderDeviceGLESImpl.h8
-rw-r--r--Graphics/GraphicsEngineOpenGL/src/RenderDeviceGLESImpl.cpp8
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)
{
}