medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 41941b065f9e30d78b263335842258b616e45eaf
parent 623f6139956149d2c317ab80f6292ab313ab7ebb
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Fri Jun 17 23:27:56 +0100

Ask for OpenGL 3.3 context

Diffstat:
gl.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gl.cc b/gl.cc @@ -79,7 +79,7 @@ GLFWwindow * gl_init() { glfwWindowHint( GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE ); glfwWindowHint( GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE ); glfwWindowHint( GLFW_CONTEXT_VERSION_MAJOR, 3 ); - glfwWindowHint( GLFW_CONTEXT_VERSION_MINOR, 2 ); + glfwWindowHint( GLFW_CONTEXT_VERSION_MINOR, 3 ); GLFWwindow * const window = glfwCreateWindow( WIDTH, HEIGHT, "bsp", NULL, NULL ); if( !window ) {