Lines Matching defs:height

80                                     int width, int height)
87 const int currDiff = abs(images[i].width * images[i].height -
88 width * height);
115 bi.bV5Height = -image->height;
140 mask = CreateBitmap(image->width, image->height, 1, 1, NULL);
149 for (i = 0; i < image->width * image->height; i++)
934 int width, height;
941 height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
946 height = GetSystemMetrics(SM_CYSCREEN);
950 pos.y += (int) ((data->data.mouse.lLastY / 65535.f) * height);
1027 const int height = HIWORD(lParam);
1042 if (width != window->win32.width || height != window->win32.height)
1045 window->win32.height = height;
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)
1671 if (height)
1672 *height = area.bottom;
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);
1775 *bottom = rect.bottom - height;
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);
2178 window->win32.lastCursorPosY != height / 2)
2180 _glfwSetCursorPosWin32(window, width / 2, height / 2);