Home
last modified time | relevance | path

Searched refs:iconified (Results 1 - 12 of 12) sorted by relevance

/third_party/glfw/src/
H A Dnull_window.c338 if (!window->null.iconified) in _glfwIconifyWindowNull()
340 window->null.iconified = GLFW_TRUE; in _glfwIconifyWindowNull()
350 if (window->null.iconified) in _glfwRestoreWindowNull()
352 window->null.iconified = GLFW_FALSE; in _glfwRestoreWindowNull()
480 return window->null.iconified; in _glfwWindowIconifiedNull()
H A Dwin32_window.c1028 const GLFWbool iconified = wParam == SIZE_MINIMIZED; in windowProc() local
1036 if (window->win32.iconified != iconified) in windowProc()
1037 _glfwInputWindowIconify(window, iconified); in windowProc()
1051 if (window->monitor && window->win32.iconified != iconified) in windowProc()
1053 if (iconified) in windowProc()
1062 window->win32.iconified = iconified; in windowProc()
H A Dwindow.c96 // Notifies shared code that a window has been iconified or restored
98 void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified) in _glfwInputWindowIconify() argument
101 assert(iconified == GLFW_TRUE || iconified == GLFW_FALSE); in _glfwInputWindowIconify()
104 window->callbacks.iconify((GLFWwindow*) window, iconified); in _glfwInputWindowIconify()
H A Dx11_window.c156 // Returns whether the window is iconified
1803 const GLFWbool iconified = (state == IconicState); in processEvent() local
1804 if (window->x11.iconified != iconified) in processEvent()
1808 if (iconified) in processEvent()
1814 window->x11.iconified = iconified; in processEvent()
1815 _glfwInputWindowIconify(window, iconified); in processEvent()
2318 // Override-redirect windows cannot be iconified or restored, as those in _glfwIconifyWindowX11()
2333 // Override-redirect windows cannot be iconified o in _glfwRestoreWindowX11()
[all...]
H A Dnull_platform.h179 GLFWbool iconified; member
H A Dwin32_platform.h421 GLFWbool iconified; member
H A Dinternal.h927 void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified);
H A Dwl_platform.h369 GLFWbool iconified; member
H A Dx11_platform.h531 GLFWbool iconified; member
/third_party/glfw/tests/
H A Diconify.c141 static void window_iconify_callback(GLFWwindow* window, int iconified) in window_iconify_callback() argument
145 iconified ? "iconified" : "uniconified"); in window_iconify_callback()
274 glfwGetWindowAttrib(windows[i], GLFW_ICONIFIED) ? "iconified" : "restored", in main()
H A Devents.c352 static void window_iconify_callback(GLFWwindow* window, int iconified) in window_iconify_callback() argument
357 iconified ? "iconified" : "uniconified"); in window_iconify_callback()
/third_party/glfw/include/GLFW/
H A Dglfw3.h1704 * void function_name(GLFWwindow* window, int iconified)
1707 * @param[in] window The window that was iconified or restored.
1708 * @param[in] iconified `GLFW_TRUE` if the window was iconified, or
1718 typedef void (* GLFWwindowiconifyfun)(GLFWwindow* window, int iconified);
2874 * will depend on whether that window is iconified.
3120 * iconified, the supported video mode most closely matching the desired video
3135 * As long as at least one full screen window is not iconified, the screensaver
3798 * previously restored. If the window is already iconified, this function does
3810 * @remark @wayland Once a window is iconified,
[all...]

Completed in 29 milliseconds