Lines Matching refs:ypos
579 int xpos = 0, ypos = 0;
581 if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION)
584 ypos = wndconfig->ypos;
607 xpos, ypos,
728 if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION)
784 _glfwGetWindowPosX11(window, &window->x11.xpos, &window->x11.ypos);
1107 int xpos, ypos;
1111 _glfwGetMonitorPosX11(window->monitor, &xpos, &ypos);
1115 xpos, ypos, mode.width, mode.height);
1198 double ypos = window->virtualCursorPosY;
1207 ypos += *values;
1209 _glfwInputCursorPos(window, xpos, ypos);
1504 int ypos = event->xconfigure.y;
1517 xpos, ypos,
1518 &xpos, &ypos,
1526 if (xpos != window->x11.xpos || ypos != window->x11.ypos)
1529 window->x11.ypos = ypos;
1531 _glfwInputWindowPos(window, xpos, ypos);
1655 int xpos, ypos;
1664 &xpos, &ypos,
1667 _glfwInputCursorPos(window, xpos, ypos);
2155 void _glfwGetWindowPosX11(_GLFWwindow* window, int* xpos, int* ypos)
2165 if (ypos)
2166 *ypos = y;
2169 void _glfwSetWindowPosX11(_GLFWwindow* window, int xpos, int ypos)
2189 XMoveWindow(_glfw.x11.display, window->x11.handle, xpos, ypos);
2471 int xpos, int ypos,
2488 xpos, ypos, width, height);
2520 xpos, ypos, width, height);
2834 void _glfwGetCursorPosX11(_GLFWwindow* window, double* xpos, double* ypos)
2847 if (ypos)
2848 *ypos = childY;