Removed window size DWIM.

This commit is contained in:
Camilla Berglund
2012-11-22 17:04:54 +01:00
parent 14355d692f
commit b8c16e49f1
12 changed files with 20 additions and 33 deletions
+4 -6
View File
@@ -1063,12 +1063,10 @@ GLFWAPI void glfwWindowHint(int target, int hint);
/*! @brief Creates a window and its associated context.
*
* @param[in] width The desired width, in pixels, of the window. If @p width
* is zero, it will be set to 4/3 times @p height. If both are zero, it will
* be set to 640.
* @param[in] height The desired height, in pixels, of the window. If @p
* height is zero, it will be set to 3/4 times @p width. If both are zero, it
* will be set to 480.
* @param[in] width The desired width, in pixels, of the window. This must be
* greater than zero.
* @param[in] height The desired height, in pixels, of the window. This must
* be greater than zero.
* @param[in] mode One of @ref GLFW_WINDOWED or @ref GLFW_FULLSCREEN.
* @param[in] title The initial, UTF-8 encoded window title.
* @param[in] share The window whose context to share resources with, or @c