Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'android/jni/com/mapswithme/opengl/android_gl_utils.hpp')
-rw-r--r--android/jni/com/mapswithme/opengl/android_gl_utils.hpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/android/jni/com/mapswithme/opengl/android_gl_utils.hpp b/android/jni/com/mapswithme/opengl/android_gl_utils.hpp
index 1e9d4a1a5b..e79067800e 100644
--- a/android/jni/com/mapswithme/opengl/android_gl_utils.hpp
+++ b/android/jni/com/mapswithme/opengl/android_gl_utils.hpp
@@ -1,9 +1,11 @@
#pragma once
-#include "../../../../../base/src_point.hpp"
+#include "drape/glIncludes.hpp"
-#include <EGL/egl.h>
-#include <GLES2/gl2.h>
+namespace my
+{
+class SrcPoint;
+}
namespace android
{
@@ -23,8 +25,7 @@ private:
void CheckEGL(my::SrcPoint const & src);
-#define CHECK_EGL(x) do { (x); CheckEGL(SRC());} while(false);
-#define CHECK_EGL_CALL() do { CheckEGL(SRC());} while (false);
-
} // namespace android
+#define CHECK_EGL(x) do { (x); android::CheckEGL(SRC());} while(false);
+#define CHECK_EGL_CALL() do { android::CheckEGL(SRC());} while (false);