[][src]Function rs_glfw3::bindings::glfwMaximizeWindow

pub unsafe extern "C" fn glfwMaximizeWindow(window: *mut GLFWwindow)

@brief Maximizes the specified window.

This function maximizes the specified window if it was previously not maximized. If the window is already maximized, this function does nothing.

If the specified window is a full screen window, this function does nothing.

@param[in] window The window to maximize.

@errors Possible errors include @ref GLFW_NOT_INITIALIZED and @ref GLFW_PLATFORM_ERROR.

@par Thread Safety This function may only be called from the main thread.

@sa @ref window_iconify @sa glfwIconifyWindow @sa glfwRestoreWindow

@since Added in GLFW 3.2.

@ingroup window