diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-02-05 15:19:04 +0200 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2019-02-12 19:42:08 +0200 |
commit | 65cec8be3460ff5e086bef267a8349fe99f6f41d (patch) | |
tree | 3913762a95107632dcfe54133b4b26657a0f249c /platform/darwin | |
parent | 992a955fc347deeafab1e2fee805c523de6b073e (diff) | |
download | qtlocation-mapboxgl-65cec8be3460ff5e086bef267a8349fe99f6f41d.tar.gz |
[android,darwin,ios,qt] Remove unused code
These files are no longer needed after the new GL abstraction.
Diffstat (limited to 'platform/darwin')
-rw-r--r-- | platform/darwin/include/mbgl/gl/gl_impl.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/platform/darwin/include/mbgl/gl/gl_impl.hpp b/platform/darwin/include/mbgl/gl/gl_impl.hpp deleted file mode 100644 index 0db125c7b4..0000000000 --- a/platform/darwin/include/mbgl/gl/gl_impl.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include "TargetConditionals.h" -#if TARGET_OS_IPHONE - #include <OpenGLES/ES2/gl.h> - #include <OpenGLES/ES2/glext.h> -#elif TARGET_IPHONE_SIMULATOR - #include <OpenGLES/ES2/gl.h> - #include <OpenGLES/ES2/glext.h> -#elif TARGET_OS_MAC - #if MBGL_USE_GLES2 - #define GL_GLEXT_PROTOTYPES - #include <GLES2/gl2.h> - #include <GLES2/gl2ext.h> - #else - #include <OpenGL/OpenGL.h> - #include <OpenGL/gl.h> - #include <OpenGL/glext.h> - #endif -#else - #error Unsupported Apple platform -#endif |