diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-27 02:14:06 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-27 02:14:06 +0000 |
| commit | 6d5749ee39652c68e8a923fcbb2611b1ed71533c (patch) | |
| tree | 5c97966da706577b7ecec0e0273afc419068ba0d /Graphics/GraphicsEngineOpenGL | |
| parent | Fixed Android, Apple, Linux, UWP platform headers (diff) | |
| download | DiligentCore-6d5749ee39652c68e8a923fcbb2611b1ed71533c.tar.gz DiligentCore-6d5749ee39652c68e8a923fcbb2611b1ed71533c.zip | |
Fixed few GL build issues on Mac
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp (renamed from Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h) | 0 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/src/SwapChainGLIOS.mm | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/CMakeLists.txt b/Graphics/GraphicsEngineOpenGL/CMakeLists.txt index 2ee218be..bb43533f 100644 --- a/Graphics/GraphicsEngineOpenGL/CMakeLists.txt +++ b/Graphics/GraphicsEngineOpenGL/CMakeLists.txt @@ -111,15 +111,15 @@ elseif(PLATFORM_LINUX) list(APPEND INCLUDE include/SwapChainGLImpl.hpp) elseif(PLATFORM_MACOS) list(APPEND SOURCE src/GLContextMacOS.mm) - list(APPEND INCLUDE include/GLContextMacOS.h) + list(APPEND INCLUDE include/GLContextMacOS.hpp) list(APPEND SOURCE src/SwapChainGLImpl.cpp) list(APPEND INCLUDE include/SwapChainGLImpl.hpp) elseif(PLATFORM_IOS) list(APPEND SOURCE src/GLContextIOS.mm) - list(APPEND INCLUDE include/GLContextIOS.h) + list(APPEND INCLUDE include/GLContextIOS.hpp) list(APPEND INCLUDE include/GLStubsIOS.h) list(APPEND SOURCE src/SwapChainGLIOS.mm) - list(APPEND INCLUDE include/SwapChainGLIOS.h) + list(APPEND INCLUDE include/SwapChainGLIOS.hpp) else() message(FATAL_ERROR "Unknown platform") endif() diff --git a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp index ef423930..ef423930 100644 --- a/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.h +++ b/Graphics/GraphicsEngineOpenGL/include/SwapChainGLIOS.hpp diff --git a/Graphics/GraphicsEngineOpenGL/src/SwapChainGLIOS.mm b/Graphics/GraphicsEngineOpenGL/src/SwapChainGLIOS.mm index e9fbb418..c2a95ed0 100644 --- a/Graphics/GraphicsEngineOpenGL/src/SwapChainGLIOS.mm +++ b/Graphics/GraphicsEngineOpenGL/src/SwapChainGLIOS.mm @@ -27,9 +27,9 @@ #import <OpenGLES/EAGL.h> #import <OpenGLES/EAGLDrawable.h> -#include "DeviceContextGLImpl.h" -#include "RenderDeviceGLImpl.h" -#include "SwapChainGLIOS.h" +#include "DeviceContextGLImpl.hpp" +#include "RenderDeviceGLImpl.hpp" +#include "SwapChainGLIOS.hpp" namespace Diligent { |
