aboutsummaryrefslogtreecommitdiffstats
path: root/yage/yage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yage/yage.cpp')
-rw-r--r--yage/yage.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/yage/yage.cpp b/yage/yage.cpp
deleted file mode 100644
index a141d9aa..00000000
--- a/yage/yage.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-/* ----------------------------------------------------------------------------
- * yage.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
- * ----------------------------------------------------------------------------
- */
-
-#include "yage.h"
-
-#include <GLFW/glfw3.h>
-
-#include <stdexcept>
-
-namespace yage
-{
-
-void glfwErrorCallback(int, const char *description)
-{
- fprintf(stderr, "ERROR: %s\n", description);
-}
-
-void init()
-{
- glfwSetErrorCallback(glfwErrorCallback);
- if (!glfwInit()) {
- throw std::runtime_error("GLFW couldn't be initialised");
- }
-}
-
-void quit()
-{
- glfwTerminate();
-}
-
-} // namespace yage