Lines Matching defs:ypos
1369 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig->ypos == GLFW_ANY_POSITION)
1377 frameY = wndconfig->ypos + rect.top;
1633 void _glfwGetWindowPosWin32(_GLFWwindow* window, int* xpos, int* ypos)
1640 if (ypos)
1641 *ypos = pos.y;
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)
2214 if (ypos)
2215 *ypos = pos.y;
2219 void _glfwSetCursorPosWin32(_GLFWwindow* window, double xpos, double ypos)
2221 POINT pos = { (int) xpos, (int) ypos };