From b9fb45f408e83b5c047fabb3260d4248e9b0eef3 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 27 Oct 2013 11:03:47 +0100 Subject: [PATCH] Documentation updates. --- include/GLFW/glfw3.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 733a39ba..546c1f35 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1246,6 +1246,8 @@ GLFWAPI void glfwWindowHint(int target, int hint); * information from the application's bundle. For more information on bundles, * see the Bundle Programming Guide provided by Apple. * + * @remarks **X11:** There is no mechanism for setting the window icon yet. + * * @remarks The swap interval is not set during window creation, but is left at * the default value for that platform. For more information, see @ref * glfwSwapInterval. @@ -1600,6 +1602,9 @@ GLFWAPI GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* window, GLFWwind * @return The previously set callback, or `NULL` if no callback was set or an * error occurred. * + * @par New in GLFW 3 + * The close callback no longer returns a value. + * * @remarks **OS X:** Selecting Quit from the application menu will * trigger the close callback for all windows. *