aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/core.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-04 18:36:07 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-04 18:36:07 +0100
commit09535633913069f4653c270501059c38c2d09a99 (patch)
tree1bf8d22f96461ff0136e7876bfc8adebb306d94f /yage/core/core.cpp
parent2f24449366139c71aa92f041bce15362fe11acba (diff)
downloadYAGE-09535633913069f4653c270501059c38c2d09a99.tar.gz
YAGE-09535633913069f4653c270501059c38c2d09a99.zip
Adding a core component, and removing implementation from yage.h
Diffstat (limited to 'yage/core/core.cpp')
-rw-r--r--yage/core/core.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/yage/core/core.cpp b/yage/core/core.cpp
new file mode 100644
index 00000000..63051a49
--- /dev/null
+++ b/yage/core/core.cpp
@@ -0,0 +1,37 @@
+/** ---------------------------------------------------------------------------
+ * @file: core.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
+#include "core.h"
+
+#include <GLFW/glfw3.h>
+
+#include <iostream>
+#include <stdexcept>
+
+namespace yage
+{
+
+void glfwErrorCallback(int, const char *description)
+{
+ std::cerr << "Error: " << description;
+}
+
+void init()
+{
+ glfwSetErrorCallback(glfwErrorCallback);
+ if (glfwInit() == GLFW_FALSE) {
+ throw std::runtime_error("GLFW couldn't be initialised");
+ }
+}
+
+void quit()
+{
+ glfwTerminate();
+}
+
+} // namespace yage