Lines Matching refs:maxwidth
835 if (window->maxwidth != GLFW_DONT_CARE &&
839 window->maxwidth,
873 int minwidth, minheight, maxwidth, maxheight;
891 if (window->maxwidth == GLFW_DONT_CARE || window->maxheight == GLFW_DONT_CARE)
892 maxwidth = maxheight = 0;
895 maxwidth = window->maxwidth;
900 maxwidth += GLFW_BORDER_SIZE * 2;
907 minwidth = maxwidth = window->wl.width;
912 xdg_toplevel_set_max_size(window->wl.xdg.toplevel, maxwidth, maxheight);
2293 int maxwidth, int maxheight)
2300 if (maxwidth == GLFW_DONT_CARE || maxheight == GLFW_DONT_CARE)
2301 maxwidth = maxheight = 0;
2306 maxwidth, maxheight);