Lines Matching defs:width

270 static void updateNormalHints(_GLFWwindow* window, int width, int height)
310 hints->min_width = hints->max_width = width;
570 int width = wndconfig->width;
575 width *= _glfw.x11.contentScaleX;
608 width, height,
609 0, // Border width
722 hints->min_width = hints->max_width = width;
785 _glfwGetWindowSizeX11(window, &window->x11.width, &window->x11.height);
1115 xpos, ypos, mode.width, mode.height);
1488 if (event->xconfigure.width != window->x11.width ||
1491 window->x11.width = event->xconfigure.width;
1495 event->xconfigure.width,
1499 event->xconfigure.width,
2112 longCount += 2 + images[i].width * images[i].height;
2119 *target++ = images[i].width;
2122 for (int j = 0; j < images[i].width * images[i].height; j++)
2193 void _glfwGetWindowSizeX11(_GLFWwindow* window, int* width, int* height)
2198 if (width)
2199 *width = attribs.width;
2204 void _glfwSetWindowSizeX11(_GLFWwindow* window, int width, int height)
2214 updateNormalHints(window, width, height);
2216 XResizeWindow(_glfw.x11.display, window->x11.handle, width, height);
2226 int width, height;
2227 _glfwGetWindowSizeX11(window, &width, &height);
2228 updateNormalHints(window, width, height);
2234 int width, height;
2235 _glfwGetWindowSizeX11(window, &width, &height);
2236 updateNormalHints(window, width, height);
2240 void _glfwGetFramebufferSizeX11(_GLFWwindow* window, int* width, int* height)
2242 _glfwGetWindowSizeX11(window, width, height);
2472 int width, int height,
2485 updateNormalHints(window, width, height);
2488 xpos, ypos, width, height);
2503 updateNormalHints(window, width, height);
2520 xpos, ypos, width, height);
2619 int width, height;
2620 _glfwGetWindowSizeX11(window, &width, &height);
2621 updateNormalHints(window, width, height);
2802 int width, height;
2803 _glfwGetWindowSizeX11(window, &width, &height);
2807 if (window->x11.lastCursorPosX != width / 2 ||
2810 _glfwSetCursorPosX11(window, width / 2, height / 2);