Lines Matching defs:box

58  * @left: Left side of bounding box.
59 * @right: Right side of bounding box.
60 * @top: Top side of bounding box.
61 * @bottom: Bottom side of bounding box.
62 * @fb_left: Left side of the framebuffer/content bounding box
63 * @fb_top: Top of the framebuffer/content bounding box
249 * bounding box.
253 * @left: Left side of bounding box.
254 * @right: Right side of bounding box.
255 * @top: Top side of bounding box.
256 * @bottom: Bottom side of bounding box.
451 * Encodes a surface DMA command cliprect and updates the bounding box
474 /* Destination bounding box */
538 * This function calculates the bounding box for all the incoming clips.
547 /* Calculate destination bounding box */
554 * Calculate content bounding box. We only need the top-left
556 * destination bounding box above
666 * the screen target system that a bounding box of the cliprects has been
744 * Encodes a surface copy command cliprect and updates the bounding box
770 /* Destination bounding box */
1215 struct SVGA3dCopyBox *box = cmd;
1217 box->srcx = fb_x;
1218 box->srcy = fb_y;
1219 box->srcz = 0;
1220 box->x = clip->x1;
1221 box->y = clip->y1;
1222 box->z = 0;
1223 box->w = drm_rect_width(clip);
1224 box->h = drm_rect_height(clip);
1225 box->d = 1;
1227 return sizeof(*box);
1312 SVGA3dBox *box = &cmd_img->body.box;
1320 box->x = diff.rect.x1;
1321 box->y = diff.rect.y1;
1322 box->z = 0;
1323 box->w = drm_rect_width(&diff.rect);
1324 box->h = drm_rect_height(&diff.rect);
1325 box->d = 1;
1441 SVGA3dBox *box = &cmd_update->body.box;
1449 box->x = clip.x1;
1450 box->y = clip.y1;
1451 box->z = 0;
1452 box->w = drm_rect_width(&clip);
1453 box->h = drm_rect_height(&clip);
1454 box->d = 1;
1488 struct SVGA3dCopyBox *box = cmd;
1490 box->srcx = fb_x;
1491 box->srcy = fb_y;
1492 box->srcz = 0;
1493 box->x = clip->x1;
1494 box->y = clip->y1;
1495 box->z = 0;
1496 box->w = drm_rect_width(clip);
1497 box->h = drm_rect_height(clip);
1498 box->d = 1;
1500 return sizeof(*box);