glfwHideWindow

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.

extern (C) @nogc nothrow __gshared
void
glfwHideWindow

Parameters

window GLFWwindow*

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

Meta

Since

Added in version 3.0.

Ingroup: window