summaryrefslogtreecommitdiffhomepage
path: root/src/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 98a7a60..f1a6c46 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -1,6 +1,12 @@
+
+// external libs
#include "glad/glad.h"
#include "GLFW/glfw3.h"
+// project headers
+#include "window.hpp"
+
+// std libs
#include <iostream>
namespace Window {
@@ -25,7 +31,7 @@ namespace Window {
)
{
glfwInit();
- glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // 4.6 is highest
+ glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // 4.6 is highest, but lets use 3.3 for compatability
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
@@ -53,6 +59,7 @@ namespace Window {
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
+
return 0;
}
}