Lines Matching defs:width
80 int width, int height)
87 const int currDiff = abs(images[i].width * images[i].height -
88 width * height);
114 bi.bV5Width = image->width;
140 mask = CreateBitmap(image->width, image->height, 1, 1, NULL);
149 for (i = 0; i < image->width * image->height; i++)
934 int width, height;
940 width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
945 width = GetSystemMetrics(SM_CXSCREEN);
949 pos.x += (int) ((data->data.mouse.lLastX / 65535.f) * width);
1026 const int width = LOWORD(lParam);
1042 if (width != window->win32.width || height != window->win32.height)
1044 window->win32.width = width;
1047 _glfwInputFramebufferSize(window, width, height);
1048 _glfwInputWindowSize(window, width, height);
1361 RECT rect = { 0, 0, wndconfig->width, wndconfig->height };
1426 RECT rect = { 0, 0, wndconfig->width, wndconfig->height };
1490 _glfwGetWindowSizeWin32(window, &window->win32.width, &window->win32.height);
1664 void _glfwGetWindowSizeWin32(_GLFWwindow* window, int* width, int* height)
1669 if (width)
1670 *width = area.right;
1675 void _glfwSetWindowSizeWin32(_GLFWwindow* window, int width, int height)
1687 RECT rect = { 0, 0, width, height };
1741 void _glfwGetFramebufferSizeWin32(_GLFWwindow* window, int* width, int* height)
1743 _glfwGetWindowSizeWin32(window, width, height);
1751 int width, height;
1753 _glfwGetWindowSizeWin32(window, &width, &height);
1754 SetRect(&rect, 0, 0, width, height);
1773 *right = rect.right - width;
1844 int width, int height,
1859 RECT rect = { xpos, ypos, xpos + width, ypos + height };
1914 RECT rect = { xpos, ypos, xpos + width, ypos + height };
2171 int width, height;
2172 _glfwGetWindowSizeWin32(window, &width, &height);
2177 if (window->win32.lastCursorPosX != width / 2 ||
2180 _glfwSetCursorPosWin32(window, width / 2, height / 2);