Lines Matching full:box
57 * @left: Left side of bounding box.
58 * @right: Right side of bounding box.
59 * @top: Top side of bounding box.
60 * @bottom: Bottom side of bounding box.
61 * @fb_left: Left side of the framebuffer/content bounding box
62 * @fb_top: Top of the framebuffer/content bounding box
250 * bounding box.
254 * @left: Left side of bounding box.
255 * @right: Right side of bounding box.
256 * @top: Top side of bounding box.
257 * @bottom: Bottom side of bounding box.
452 * This function calculates the bounding box for all the incoming clips.
461 /* Calculate destination bounding box */ in vmw_stdu_bo_cpu_clip()
468 * Calculate content bounding box. We only need the top-left in vmw_stdu_bo_cpu_clip()
470 * destination bounding box above in vmw_stdu_bo_cpu_clip()
537 * the screen target system that a bounding box of the cliprects has been
605 * Encodes a surface copy command cliprect and updates the bounding box
631 /* Destination bounding box */ in vmw_kms_stdu_surface_clip()
1097 SVGA3dBox *box = &cmd_img->body.box; in vmw_stdu_bo_populate_update_cpu() local
1105 box->x = diff.rect.x1; in vmw_stdu_bo_populate_update_cpu()
1106 box->y = diff.rect.y1; in vmw_stdu_bo_populate_update_cpu()
1107 box->z = 0; in vmw_stdu_bo_populate_update_cpu()
1108 box->w = drm_rect_width(&diff.rect); in vmw_stdu_bo_populate_update_cpu()
1109 box->h = drm_rect_height(&diff.rect); in vmw_stdu_bo_populate_update_cpu()
1110 box->d = 1; in vmw_stdu_bo_populate_update_cpu()
1214 SVGA3dBox *box = &cmd_update->body.box; in vmw_stdu_surface_update_proxy() local
1222 box->x = clip.x1; in vmw_stdu_surface_update_proxy()
1223 box->y = clip.y1; in vmw_stdu_surface_update_proxy()
1224 box->z = 0; in vmw_stdu_surface_update_proxy()
1225 box->w = drm_rect_width(&clip); in vmw_stdu_surface_update_proxy()
1226 box->h = drm_rect_height(&clip); in vmw_stdu_surface_update_proxy()
1227 box->d = 1; in vmw_stdu_surface_update_proxy()
1261 struct SVGA3dCopyBox *box = cmd; in vmw_stdu_surface_populate_clip() local
1263 box->srcx = fb_x; in vmw_stdu_surface_populate_clip()
1264 box->srcy = fb_y; in vmw_stdu_surface_populate_clip()
1265 box->srcz = 0; in vmw_stdu_surface_populate_clip()
1266 box->x = clip->x1; in vmw_stdu_surface_populate_clip()
1267 box->y = clip->y1; in vmw_stdu_surface_populate_clip()
1268 box->z = 0; in vmw_stdu_surface_populate_clip()
1269 box->w = drm_rect_width(clip); in vmw_stdu_surface_populate_clip()
1270 box->h = drm_rect_height(clip); in vmw_stdu_surface_populate_clip()
1271 box->d = 1; in vmw_stdu_surface_populate_clip()
1273 return sizeof(*box); in vmw_stdu_surface_populate_clip()