Lines Matching defs:window
41 static DWORD getWindowStyle(const _GLFWwindow* window) in getWindowStyle()
67 static DWORD getWindowExStyle(const _GLFWwindow* window) in getWindowExStyle()
190 static void applyAspectRatio(_GLFWwindow* window, int edge, RECT* area) in applyAspectRatio()
225 static void updateCursorImage(_GLFWwindow* window) in updateCursorImage()
246 static void captureCursor(_GLFWwindow* window) in captureCursor()
266 static void enableRawMouseMotion(_GLFWwindow* window) in enableRawMouseMotion()
279 static void disableRawMouseMotion(_GLFWwindow* window) in disableRawMouseMotion()
292 static void disableCursor(_GLFWwindow* window) in disableCursor()
308 static void enableCursor(_GLFWwindow* window) in enableCursor()
323 static GLFWbool cursorInContentArea(_GLFWwindow* window) in cursorInContentArea()
343 static void updateWindowStyles(const _GLFWwindow* window) in updateWindowStyles()
372 static void updateFramebufferTransparency(const _GLFWwindow* window) in updateFramebufferTransparency()
429 static void fitToMonitor(_GLFWwindow* window) in fitToMonitor()
443 static void acquireMonitor(_GLFWwindow* window) in acquireMonitor()
464 static void releaseMonitor(_GLFWwindow* window) in releaseMonitor()
484 static void maximizeWindowManually(_GLFWwindow* window) in maximizeWindowManually()
536 _GLFWwindow* window = GetPropW(hWnd, L"GLFW"); in windowProc() local
1276 static int createNativeWindow(_GLFWwindow* window, in createNativeWindow()
1495 GLFWbool _glfwCreateWindowWin32(_GLFWwindow* window, in _glfwCreateWindowWin32()
1557 void _glfwDestroyWindowWin32(_GLFWwindow* window) in _glfwDestroyWindowWin32()
1585 void _glfwSetWindowTitleWin32(_GLFWwindow* window, const char* title) in _glfwSetWindowTitleWin32()
1595 void _glfwSetWindowIconWin32(_GLFWwindow* window, int count, const GLFWimage* images) in _glfwSetWindowIconWin32()
1633 void _glfwGetWindowPosWin32(_GLFWwindow* window, int* xpos, int* ypos) in _glfwGetWindowPosWin32()
1644 void _glfwSetWindowPosWin32(_GLFWwindow* window, int xpos, int ypos) in _glfwSetWindowPosWin32()
1664 void _glfwGetWindowSizeWin32(_GLFWwindow* window, int* width, int* height) in _glfwGetWindowSizeWin32()
1675 void _glfwSetWindowSizeWin32(_GLFWwindow* window, int width, int height) in _glfwSetWindowSizeWin32()
1707 void _glfwSetWindowSizeLimitsWin32(_GLFWwindow* window, in _glfwSetWindowSizeLimitsWin32()
1726 void _glfwSetWindowAspectRatioWin32(_GLFWwindow* window, int numer, int denom) in _glfwSetWindowAspectRatioWin32()
1741 void _glfwGetFramebufferSizeWin32(_GLFWwindow* window, int* width, int* height) in _glfwGetFramebufferSizeWin32()
1746 void _glfwGetWindowFrameSizeWin32(_GLFWwindow* window, in _glfwGetWindowFrameSizeWin32()
1778 void _glfwGetWindowContentScaleWin32(_GLFWwindow* window, float* xscale, float* yscale) in _glfwGetWindowContentScaleWin32()
1785 void _glfwIconifyWindowWin32(_GLFWwindow* window) in _glfwIconifyWindowWin32()
1790 void _glfwRestoreWindowWin32(_GLFWwindow* window) in _glfwRestoreWindowWin32()
1795 void _glfwMaximizeWindowWin32(_GLFWwindow* window) in _glfwMaximizeWindowWin32()
1803 void _glfwShowWindowWin32(_GLFWwindow* window) in _glfwShowWindowWin32()
1824 void _glfwHideWindowWin32(_GLFWwindow* window) in _glfwHideWindowWin32()
1829 void _glfwRequestWindowAttentionWin32(_GLFWwindow* window) in _glfwRequestWindowAttentionWin32()
1834 void _glfwFocusWindowWin32(_GLFWwindow* window) in _glfwFocusWindowWin32()
1841 void _glfwSetWindowMonitorWin32(_GLFWwindow* window, in _glfwSetWindowMonitorWin32()
1951 GLFWbool _glfwWindowFocusedWin32(_GLFWwindow* window) in _glfwWindowFocusedWin32()
1956 GLFWbool _glfwWindowIconifiedWin32(_GLFWwindow* window) in _glfwWindowIconifiedWin32()
1961 GLFWbool _glfwWindowVisibleWin32(_GLFWwindow* window) in _glfwWindowVisibleWin32()
1966 GLFWbool _glfwWindowMaximizedWin32(_GLFWwindow* window) in _glfwWindowMaximizedWin32()
1971 GLFWbool _glfwWindowHoveredWin32(_GLFWwindow* window) in _glfwWindowHoveredWin32()
1976 GLFWbool _glfwFramebufferTransparentWin32(_GLFWwindow* window) in _glfwFramebufferTransparentWin32()
2003 void _glfwSetWindowResizableWin32(_GLFWwindow* window, GLFWbool enabled) in _glfwSetWindowResizableWin32()
2008 void _glfwSetWindowDecoratedWin32(_GLFWwindow* window, GLFWbool enabled) in _glfwSetWindowDecoratedWin32()
2013 void _glfwSetWindowFloatingWin32(_GLFWwindow* window, GLFWbool enabled) in _glfwSetWindowFloatingWin32()
2020 void _glfwSetWindowMousePassthroughWin32(_GLFWwindow* window, GLFWbool enabled) in _glfwSetWindowMousePassthroughWin32()
2050 float _glfwGetWindowOpacityWin32(_GLFWwindow* window) in _glfwGetWindowOpacityWin32()
2065 void _glfwSetWindowOpacityWin32(_GLFWwindow* window, float opacity) in _glfwSetWindowOpacityWin32()
2086 void _glfwSetRawMouseMotionWin32(_GLFWwindow *window, GLFWbool enabled) in _glfwSetRawMouseMotionWin32()
2106 _GLFWwindow* window; in _glfwPollEventsWin32() local
2204 void _glfwGetCursorPosWin32(_GLFWwindow* window, double* xpos, double* ypos) in _glfwGetCursorPosWin32()
2219 void _glfwSetCursorPosWin32(_GLFWwindow* window, double xpos, double ypos) in _glfwSetCursorPosWin32()
2231 void _glfwSetCursorModeWin32(_GLFWwindow* window, int mode) in _glfwSetCursorModeWin32()
2361 void _glfwSetCursorWin32(_GLFWwindow* window, _GLFWcursor* cursor) in _glfwSetCursorWin32()
2512 EGLNativeWindowType _glfwGetEGLNativeWindowWin32(_GLFWwindow* window) in _glfwGetEGLNativeWindowWin32()
2545 _GLFWwindow* window, in _glfwCreateWindowSurfaceWin32()
2589 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetWin32Window() local