From 5df4df6ca49dc156556d177cf21c35e5f1545175 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 22 Oct 2012 02:59:05 +0200 Subject: [PATCH 1/4] Added glfwDefaultWindowHints. --- include/GL/glfw3.h | 1 + readme.html | 1 + src/init.c | 6 ++--- src/internal.h | 3 --- src/window.c | 61 ++++++++++++++++++++++++---------------------- 5 files changed, 37 insertions(+), 35 deletions(-) diff --git a/include/GL/glfw3.h b/include/GL/glfw3.h index 968ab0db..df0ac6b1 100644 --- a/include/GL/glfw3.h +++ b/include/GL/glfw3.h @@ -529,6 +529,7 @@ GLFWAPI void glfwGetGammaRamp(GLFWgammaramp* ramp); GLFWAPI void glfwSetGammaRamp(const GLFWgammaramp* ramp); /* Window handling */ +GLFWAPI void glfwDefaultWindowHints(void); GLFWAPI void glfwWindowHint(int target, int hint); GLFWAPI GLFWwindow glfwCreateWindow(int width, int height, int mode, const char* title, GLFWwindow share); GLFWAPI void glfwDestroyWindow(GLFWwindow window); diff --git a/readme.html b/readme.html index 22e2b6bb..a40e1d35 100644 --- a/readme.html +++ b/readme.html @@ -268,6 +268,7 @@ version of GLFW.

v3.0