[go: up one dir, main page]

glfwHideWindow

Function glfwHideWindow 

Source
pub unsafe extern "C" fn glfwHideWindow(window: *mut GLFWwindow)
Expand description

@brief Hides the specified window.

This function hides the specified window if it was previously visible. If the window is already hidden or is in full screen mode, this function does nothing.

@param[in] window The window to hide.

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

@thread_safety This function must only be called from the main thread.

@sa @ref window_hide @sa @ref glfwShowWindow

@since Added in version 3.0.

@ingroup window