Lines Matching refs:xpos
57 &window->null.xpos,
84 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig->ypos == GLFW_ANY_POSITION)
86 window->null.xpos = 17;
91 window->null.xpos = wndconfig->xpos;
191 int xpos, int ypos,
199 _glfwSetWindowPosNull(window, xpos, ypos);
219 _glfwSetWindowPosNull(window, xpos, ypos);
224 void _glfwGetWindowPosNull(_GLFWwindow* window, int* xpos, int* ypos)
226 if (xpos)
227 *xpos = window->null.xpos;
232 void _glfwSetWindowPosNull(_GLFWwindow* window, int xpos, int ypos)
237 if (window->null.xpos != xpos || window->null.ypos != ypos)
239 window->null.xpos = xpos;
241 _glfwInputWindowPos(window, xpos, ypos);
381 return _glfw.null.xcursor >= window->null.xpos &&
383 _glfw.null.xcursor <= window->null.xpos + window->null.width - 1 &&
504 void _glfwGetCursorPosNull(_GLFWwindow* window, double* xpos, double* ypos)
506 if (xpos)
507 *xpos = _glfw.null.xcursor - window->null.xpos;
514 _glfw.null.xcursor = window->null.xpos + (int) x;