Lines Matching refs:xpos
397 int xpos, ypos; in acquireMonitor() local
402 _glfwPlatformGetMonitorPos(window->monitor, &xpos, &ypos); in acquireMonitor()
405 xpos, ypos, mode.width, mode.height, in acquireMonitor()
858 int xpos, ypos, fullWidth, fullHeight; in createNativeWindow() local
870 _glfwPlatformGetMonitorPos(window->monitor, &xpos, &ypos); in createNativeWindow()
877 xpos = CW_USEDEFAULT; in createNativeWindow()
900 xpos, ypos, in createNativeWindow()
1102 void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos) in _glfwPlatformGetWindowPos() argument
1107 if (xpos) in _glfwPlatformGetWindowPos()
1108 *xpos = pos.x; in _glfwPlatformGetWindowPos()
1113 void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos) in _glfwPlatformSetWindowPos() argument
1115 RECT rect = { xpos, ypos, xpos, ypos }; in _glfwPlatformSetWindowPos()
1246 int xpos, int ypos, in _glfwPlatformSetWindowMonitor() argument
1259 RECT rect = { xpos, ypos, xpos + width, ypos + height }; in _glfwPlatformSetWindowMonitor()
1292 _glfwPlatformGetMonitorPos(monitor, &xpos, &ypos); in _glfwPlatformSetWindowMonitor()
1295 xpos, ypos, mode.width, mode.height, in _glfwPlatformSetWindowMonitor()
1303 RECT rect = { xpos, ypos, xpos + width, ypos + height }; in _glfwPlatformSetWindowMonitor()
1439 void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos) in _glfwPlatformGetCursorPos() argument
1447 if (xpos) in _glfwPlatformGetCursorPos()
1448 *xpos = pos.x; in _glfwPlatformGetCursorPos()
1454 void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos) in _glfwPlatformSetCursorPos() argument
1456 POINT pos = { (int) xpos, (int) ypos }; in _glfwPlatformSetCursorPos()