Searched refs:iconified (Results 1 - 12 of 12) sorted by relevance
/third_party/glfw/src/ |
H A D | null_window.c | 338 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 D | win32_window.c | 1028 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 D | window.c | 96 // 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 D | x11_window.c | 156 // 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 D | null_platform.h | 179 GLFWbool iconified; member
|
H A D | win32_platform.h | 421 GLFWbool iconified; member
|
H A D | internal.h | 927 void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified);
|
H A D | wl_platform.h | 369 GLFWbool iconified; member
|
H A D | x11_platform.h | 531 GLFWbool iconified; member
|
/third_party/glfw/tests/ |
H A D | iconify.c | 141 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 D | events.c | 352 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 D | glfw3.h | 1704 * 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 48 milliseconds