From cc78b74098e02311cc646fe5b82c13641ff705fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Thu, 29 Sep 2016 15:32:48 +0200 Subject: [core] remove dependence on gl.h types --- include/mbgl/map/mode.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/mode.hpp b/include/mbgl/map/mode.hpp index 2efc8b18e0..afec5c0a08 100644 --- a/include/mbgl/map/mode.hpp +++ b/include/mbgl/map/mode.hpp @@ -45,10 +45,10 @@ enum class MapDebugOptions : EnumType { Collision = 1 << 4, Overdraw = 1 << 5, // FIXME: https://github.com/mapbox/mapbox-gl-native/issues/5117 -#ifndef GL_ES_VERSION_2_0 +#if not MBGL_USE_GLES2 StencilClip = 1 << 6, DepthBuffer = 1 << 7, -#endif // GL_ES_VERSION_2_0 +#endif // MBGL_USE_GLES2 }; constexpr MapDebugOptions operator|(MapDebugOptions lhs, MapDebugOptions rhs) { -- cgit v1.2.1