summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorc2024-02-21 08:57:01 -0500
committerc2024-02-21 08:57:01 -0500
commitb2e1e2412b175dfa224d18e66f87eaa282f3a4f6 (patch)
tree376a21c9599d76e85248304a3304040ca5f3ab75 /src/main.c
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..f5941bb
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,54 @@
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <GL/glew.h>
+#include <GLFW/glfw3.h>
+
+int main(int argc, char** argv) {
+ glewExperimental = 1;
+
+ if (!glfwInit()) {
+ fprintf(stderr, "bad\n");
+ return 1;
+ }
+
+ // Window hints.
+ glfwWindowHint(GLFW_SAMPLES, 4); // 4x antialiasing.
+ glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // Version 3.3.
+ glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
+ glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
+ glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
+
+ // Create the window.
+ GLFWwindow* window;
+ window = glfwCreateWindow( 1024, 768, "Hi", NULL, NULL);
+
+ if (!window) {
+ fprintf(stderr, "no window\n");
+ glfwTerminate();
+ return 1;
+ }
+
+ // Glue.
+ glfwMakeContextCurrent(window);
+ glewExperimental = 1;
+
+ // Is the glue OK?
+ if (glewInit() != GLEW_OK) {
+ fprintf(stderr, "glewless\n");
+ return 1;
+ }
+
+ glfwSetInputMode(window, GLFW_STICKY_KEYS, 1);
+
+ do {
+ glfwSwapBuffers(window);
+ glfwPollEvents();
+ } while (
+ glfwGetKey(window, GLFW_KEY_ESCAPE) != GLFW_PRESS
+ && !glfwWindowShouldClose(window)
+ );
+
+
+ return 0;
+}