mirror of
https://github.com/glfw/glfw.git
synced 2026-09-22 16:52:57 +00:00
Removed window size DWIM.
This commit is contained in:
+4
-6
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user