diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-28 06:39:24 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-28 06:39:24 +0000 |
| commit | 8d653feae1e0ebf7124901b5af06f375f6cae36f (patch) | |
| tree | e9d15686d3857415106e122b8e14ff7fc97eb68f /Graphics/GraphicsEngineOpenGL | |
| parent | Fixed MacOS build issues (diff) | |
| download | DiligentCore-8d653feae1e0ebf7124901b5af06f375f6cae36f.tar.gz DiligentCore-8d653feae1e0ebf7124901b5af06f375f6cae36f.zip | |
Fixed iOS build issues
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/GLStubsIOS.h | 2 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp | 5 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp | 2 |
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 |
