summaryrefslogtreecommitdiff
path: root/common/glfw_view.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/glfw_view.hpp')
-rw-r--r--common/glfw_view.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/glfw_view.hpp b/common/glfw_view.hpp
index 05a4063289..efef3431a9 100644
--- a/common/glfw_view.hpp
+++ b/common/glfw_view.hpp
@@ -1,8 +1,8 @@
-#ifndef LLMR_COMMON_GLFW_VIEW
-#define LLMR_COMMON_GLFW_VIEW
+#ifndef MBGL_COMMON_GLFW_VIEW
+#define MBGL_COMMON_GLFW_VIEW
-#include <llmr/llmr.hpp>
-#include <llmr/util/time.hpp>
+#include <mbgl/mbgl.hpp>
+#include <mbgl/util/time.hpp>
#ifdef NVIDIA
#define GLFW_INCLUDE_ES2
@@ -11,15 +11,15 @@
#include <uv.h>
-class GLFWView : public llmr::View {
+class GLFWView : public mbgl::View {
public:
GLFWView(bool fullscreen = false);
~GLFWView();
- void initialize(llmr::Map *map);
+ void initialize(mbgl::Map *map);
void swap();
void make_active();
- void notify_map_change(llmr::MapChange change, llmr::timestamp delay = 0);
+ void notify_map_change(mbgl::MapChange change, mbgl::timestamp delay = 0);
static void key(GLFWwindow *window, int key, int scancode, int action, int mods);
static void scroll(GLFWwindow *window, double xoffset, double yoffset);