Lines Matching defs:height
86 void _glfwInputWindowSize(_GLFWwindow* window, int width, int height)
90 assert(height >= 0);
93 window->callbacks.size((GLFWwindow*) window, width, height);
121 void _glfwInputFramebufferSize(_GLFWwindow* window, int width, int height)
125 assert(height >= 0);
128 window->callbacks.fbsize((GLFWwindow*) window, width, height);
180 GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height,
192 assert(height >= 0);
196 if (width <= 0 || height <= 0)
200 width, height);
210 wndconfig.height = height;
222 window->videoMode.height = height;
571 if (images[i].width <= 0 || images[i].height <= 0)
610 GLFWAPI void glfwGetWindowSize(GLFWwindow* handle, int* width, int* height)
614 if (height)
615 *height = 0;
622 _glfw.platform.getWindowSize(window, width, height);
625 GLFWAPI void glfwSetWindowSize(GLFWwindow* handle, int width, int height)
628 assert(height >= 0);
636 window->videoMode.height = height;
638 _glfw.platform.setWindowSize(window, width, height);
716 GLFWAPI void glfwGetFramebufferSize(GLFWwindow* handle, int* width, int* height)
720 if (height)
721 *height = 0;
728 _glfw.platform.getFramebufferSize(window, width, height);
1002 int width, int height,
1006 assert(height >= 0);
1014 if (width <= 0 || height <= 0)
1018 width, height);
1031 window->videoMode.height = height;
1035 xpos, ypos, width, height,