Lines Matching defs:xpos
579 int xpos = 0, ypos = 0;
581 if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION)
583 xpos = wndconfig->xpos;
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);
1197 double xpos = window->virtualCursorPosX;
1202 xpos += *values;
1209 _glfwInputCursorPos(window, xpos, ypos);
1503 int xpos = event->xconfigure.x;
1517 xpos, ypos,
1518 &xpos, &ypos,
1526 if (xpos != window->x11.xpos || ypos != window->x11.ypos)
1528 window->x11.xpos = xpos;
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)
2163 if (xpos)
2164 *xpos = x;
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)
2845 if (xpos)
2846 *xpos = childX;