summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h2
-rw-r--r--Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp5
-rw-r--r--Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp2
3 files changed, 4 insertions, 5 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h b/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
index c6669652..e9da15aa 100644
--- a/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
+++ b/Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h
@@ -23,7 +23,7 @@
#pragma once
-#include "Errors.h"
+#include "Errors.hpp"
#define glUseProgramStages glUseProgramStagesEXT
#define glActiveShaderProgram glActiveShaderProgramEXT
diff --git a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp
index ef423930..d3c98f7c 100644
--- a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp
+++ b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp
@@ -24,13 +24,12 @@
#pragma once
#include "SwapChainGL.h"
-#include "SwapChainGLBase.h"
-#include "GLObjectWrapper.h"
+#include "SwapChainGLBase.hpp"
+#include "GLObjectWrapper.hpp"
namespace Diligent
{
-class IMemoryAllocator;
/// Implementation of the Diligent::ISwapChainGL interface on IOS
class SwapChainGLIOS final : public SwapChainGLBase<ISwapChainGL>
{
diff --git a/Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp b/Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp
index d81620a4..024a7bfc 100644
--- a/Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp
+++ b/Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp
@@ -37,7 +37,7 @@
#include "EngineFactoryBase.hpp"
#if PLATFORM_IOS
-# include "SwapChainGLIOS.h"
+# include "SwapChainGLIOS.hpp"
#else
# include "SwapChainGLImpl.hpp"
#endif