From 67048a14f49d3c7048565b1458a053b9b8473b76 Mon Sep 17 00:00:00 2001 From: Archie Hilton Date: Fri, 19 Apr 2024 22:54:25 +0100 Subject: [PATCH] Add link to the thing I'm following --- src/main.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cc b/src/main.cc index d5e780b..effde50 100644 --- a/src/main.cc +++ b/src/main.cc @@ -3,6 +3,8 @@ #define GLFW_INCLUDE_NONE #include "GLFW/glfw3.h" +//http://seshbot.com/blog/2015/05/05/an-introduction-to-opengl-getting-started/ + static void key_callback(GLFWwindow *w, int key, int scancode, int action, int mods) { if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) { glfwSetWindowShouldClose(w, GL_TRUE);