• Home
  • Raw
  • Download

Lines Matching refs:ypos

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()
878 ypos = CW_USEDEFAULT; in createNativeWindow()
900 xpos, ypos, in createNativeWindow()
1102 void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos) in _glfwPlatformGetWindowPos() argument
1109 if (ypos) in _glfwPlatformGetWindowPos()
1110 *ypos = pos.y; 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
1449 if (ypos) in _glfwPlatformGetCursorPos()
1450 *ypos = pos.y; in _glfwPlatformGetCursorPos()
1454 void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos) in _glfwPlatformSetCursorPos() argument
1456 POINT pos = { (int) xpos, (int) ypos }; in _glfwPlatformSetCursorPos()