Lines Matching defs:height
130 * the stw_framebuffer's width/height.
135 LONG width, height;
144 assert(fb->width && fb->height);
146 assert(fb->client_rect.bottom == fb->client_rect.top + fb->height);
158 height = client_rect.bottom - client_rect.top;
160 fb->minimized = width == 0 || height == 0;
162 if (width <= 0 || height <= 0) {
171 if (width != fb->width || height != fb->height) {
174 fb->height = height;
186 fb->client_rect.bottom = fb->client_rect.top + fb->height;
306 * Windows can be sometimes have zero width and or height, but we ensure
312 fb->height = 1;
316 fb->client_rect.bottom = fb->client_rect.top + fb->height;
373 assert(fb->height);