Lines Matching defs:height

57                              unsigned width, unsigned height)
66 scanout_templat.height0 = height;
98 unsigned height = height0;
111 aligned_height = align(height, 16);
114 aligned_height = height;
125 res->levels[level].layer_stride = util_format_get_stride(pres->format, align(width, 16)) * align(height, 16);
133 height = u_minify(height, 1);
148 unsigned width, unsigned height,
165 uint32_t size = setup_miptree(res, width, height, align_to_tile);
185 unsigned width, height;
192 /* VBOs/PBOs are untiled (and 1 height). */
213 height = templat->height0;
216 height = align(templat->height0, 16);
222 pres = lima_resource_create_scanout(pscreen, templat, width, height);
224 pres = lima_resource_create_bo(pscreen, templat, width, height, align_to_tile);
233 debug_printf("%s: pres=%p width=%u height=%u depth=%u target=%d "
350 unsigned width, height, stride, size;
353 height = align(pres->height0, 16);
355 size = util_format_get_2d_size(pres->format, stride, height);
464 int y = h - (b->y + b->height);
469 s->maxy = (y + b->height + 0xf) >> 4;
519 rects[i].y + rects[i].height >= pres->height0)
538 rects[i].width & 0xf || rects[i].height & 0xf) {
568 psurf->height = u_minify(pres->height0, level);
575 surf->tiled_h = align(psurf->height, 16) >> 4;
665 ptrans->layer_stride = ptrans->stride * ptrans->box.height;
667 trans->staging = malloc(ptrans->stride * ptrans->box.height * ptrans->box.depth);
677 trans->staging + i * ptrans->stride * ptrans->box.height,
680 ptrans->box.width, ptrans->box.height,
727 ptrans->box.height == res->base.height0 &&
764 ptrans->box.height,
765 trans->staging + i * ptrans->stride * ptrans->box.height,
781 trans->staging + i * ptrans->stride * ptrans->box.height,
783 ptrans->box.width, ptrans->box.height,
801 u_box_2d(0, 0, ptrans->box.width, ptrans->box.height, &box);
914 u_box_2d(0, 0, t.base.box.width, t.base.box.height, &tbox);