Lines Matching refs:ypos
58 &window->null.ypos);
84 if (wndconfig->xpos == GLFW_ANY_POSITION && wndconfig->ypos == GLFW_ANY_POSITION)
87 window->null.ypos = 17;
92 window->null.ypos = wndconfig->ypos;
191 int xpos, int ypos,
199 _glfwSetWindowPosNull(window, xpos, ypos);
219 _glfwSetWindowPosNull(window, xpos, ypos);
224 void _glfwGetWindowPosNull(_GLFWwindow* window, int* xpos, int* ypos)
228 if (ypos)
229 *ypos = window->null.ypos;
232 void _glfwSetWindowPosNull(_GLFWwindow* window, int xpos, int ypos)
237 if (window->null.xpos != xpos || window->null.ypos != ypos)
240 window->null.ypos = ypos;
241 _glfwInputWindowPos(window, xpos, ypos);
382 _glfw.null.ycursor >= window->null.ypos &&
384 _glfw.null.ycursor <= window->null.ypos + window->null.height - 1;
504 void _glfwGetCursorPosNull(_GLFWwindow* window, double* xpos, double* ypos)
508 if (ypos)
509 *ypos = _glfw.null.ycursor - window->null.ypos;
515 _glfw.null.ycursor = window->null.ypos + (int) y;