Lines Matching defs:box

85                 struct pipe_box box = {
97 .width0 = box.width,
98 .height0 = box.height,
111 &box);
162 .first_layer = info->dst.box.z,
163 .last_layer = info->dst.box.z,
192 util_blitter_blit_generic(v3d->blitter, dst_surf, &info->dst.box,
193 src_view, &info->src.box,
375 info->dst.box.x != 0 ||
376 info->dst.box.y != 0 ||
377 info->dst.box.width != dst_width ||
378 info->dst.box.height != dst_height ||
379 info->dst.box.depth != 1 ||
380 info->src.box.x != 0 ||
381 info->src.box.y != 0 ||
382 info->src.box.width != info->dst.box.width ||
383 info->src.box.height != info->dst.box.height ||
384 info->src.box.depth != 1) {
394 info->src.box.z, info->dst.box.z,
445 if (info->src.box.x != info->dst.box.x ||
446 info->src.box.y != info->dst.box.y ||
447 info->src.box.width != info->dst.box.width ||
448 info->src.box.height != info->dst.box.height)
474 v3d_get_blit_surface(pctx, info->dst.resource, info->dst.format, info->dst.level, info->dst.box.z);
476 v3d_get_blit_surface(pctx, info->src.resource, info->src.format, info->src.level, info->src.box.z);
494 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
495 is_tile_unaligned(info->dst.box.y, tile_height) ||
496 (is_tile_unaligned(info->dst.box.width, tile_width) &&
497 info->dst.box.x + info->dst.box.width != dst_surface_width) ||
498 (is_tile_unaligned(info->dst.box.height, tile_height) &&
499 info->dst.box.y + info->dst.box.height != dst_surface_height)) {
515 job->draw_min_x = info->dst.box.x;
516 job->draw_min_y = info->dst.box.y;
517 job->draw_max_x = info->dst.box.x + info->dst.box.width;
518 job->draw_max_y = info->dst.box.y + info->dst.box.height;
535 job->num_layers = info->dst.box.depth;
769 assert(info->src.box.x == 0 && info->dst.box.x == 0);
770 assert(info->src.box.y == 0 && info->dst.box.y == 0);
771 assert(info->src.box.width == info->dst.box.width);
772 assert(info->src.box.height == info->dst.box.height);
778 info->dst.level, info->dst.box.z);