Home | History | Annotate | Download | only in vmwgfx

Lines Matching defs:box

63  * @left: Left side of bounding box.
64 * @right: Right side of bounding box.
65 * @top: Top side of bounding box.
66 * @bottom: Bottom side of bounding box.
67 * @fb_left: Left side of the framebuffer/content bounding box
68 * @fb_top: Top of the framebuffer/content bounding box
254 * bounding box.
258 * @left: Left side of bounding box.
259 * @right: Right side of bounding box.
260 * @top: Top side of bounding box.
261 * @bottom: Bottom side of bounding box.
456 * Encodes a surface DMA command cliprect and updates the bounding box
479 /* Destination bounding box */
543 * This function calculates the bounding box for all the incoming clips.
552 /* Calculate destination bounding box */
559 * Calculate content bounding box. We only need the top-left
561 * destination bounding box above
671 * the screen target system that a bounding box of the cliprects has been
749 * Encodes a surface copy command cliprect and updates the bounding box
775 /* Destination bounding box */
1232 struct SVGA3dCopyBox *box = cmd;
1234 box->srcx = fb_x;
1235 box->srcy = fb_y;
1236 box->srcz = 0;
1237 box->x = clip->x1;
1238 box->y = clip->y1;
1239 box->z = 0;
1240 box->w = drm_rect_width(clip);
1241 box->h = drm_rect_height(clip);
1242 box->d = 1;
1244 return sizeof(*box);
1329 SVGA3dBox *box = &cmd_img->body.box;
1337 box->x = diff.rect.x1;
1338 box->y = diff.rect.y1;
1339 box->z = 0;
1340 box->w = drm_rect_width(&diff.rect);
1341 box->h = drm_rect_height(&diff.rect);
1342 box->d = 1;
1458 SVGA3dBox *box = &cmd_update->body.box;
1466 box->x = clip.x1;
1467 box->y = clip.y1;
1468 box->z = 0;
1469 box->w = drm_rect_width(&clip);
1470 box->h = drm_rect_height(&clip);
1471 box->d = 1;
1505 struct SVGA3dCopyBox *box = cmd;
1507 box->srcx = fb_x;
1508 box->srcy = fb_y;
1509 box->srcz = 0;
1510 box->x = clip->x1;
1511 box->y = clip->y1;
1512 box->z = 0;
1513 box->w = drm_rect_width(clip);
1514 box->h = drm_rect_height(clip);
1515 box->d = 1;
1517 return sizeof(*box);