Lines Matching defs:height
33 static void applySizeLimits(_GLFWwindow* window, int* width, int* height)
38 *height = (int) (*width / ratio);
47 *height = _glfw_min(*height, window->minheight);
49 *height = _glfw_max(*height, window->maxheight);
60 window->null.height = mode.height;
96 window->null.height = wndconfig->height;
192 int width, int height,
200 _glfwSetWindowSizeNull(window, width, height);
220 _glfwSetWindowSizeNull(window, width, height);
245 void _glfwGetWindowSizeNull(_GLFWwindow* window, int* width, int* height)
249 if (height)
250 *height = window->null.height;
253 void _glfwSetWindowSizeNull(_GLFWwindow* window, int width, int height)
258 if (window->null.width != width || window->null.height != height)
261 window->null.height = height;
262 _glfwInputFramebufferSize(window, width, height);
264 _glfwInputWindowSize(window, width, height);
273 int height = window->null.height;
274 applySizeLimits(window, &width, &height);
275 _glfwSetWindowSizeNull(window, width, height);
281 int height = window->null.height;
282 applySizeLimits(window, &width, &height);
283 _glfwSetWindowSizeNull(window, width, height);
286 void _glfwGetFramebufferSizeNull(_GLFWwindow* window, int* width, int* height)
290 if (height)
291 *height = window->null.height;
384 _glfw.null.ycursor <= window->null.ypos + window->null.height - 1;