Lines Matching defs:xpos
1369 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig->ypos == GLFW_ANY_POSITION)
1376 frameX = wndconfig->xpos + rect.left;
1633 void _glfwGetWindowPosWin32(_GLFWwindow* window, int* xpos, int* ypos)
1638 if (xpos)
1639 *xpos = pos.x;
1644 void _glfwSetWindowPosWin32(_GLFWwindow* window, int xpos, int ypos)
1646 RECT rect = { xpos, ypos, xpos, ypos };
1843 int xpos, int ypos,
1859 RECT rect = { xpos, ypos, xpos + width, ypos + height };
1914 RECT rect = { xpos, ypos, xpos + width, ypos + height };
2204 void _glfwGetCursorPosWin32(_GLFWwindow* window, double* xpos, double* ypos)
2212 if (xpos)
2213 *xpos = pos.x;
2219 void _glfwSetCursorPosWin32(_GLFWwindow* window, double xpos, double ypos)
2221 POINT pos = { (int) xpos, (int) ypos };