Home | History | Annotate | Download | only in vmwgfx

Lines Matching defs:box

157 	SVGA3dCopyBox *box;
179 DRM_ERROR("at least one full copy box must be given\n");
183 box = (SVGA3dCopyBox *)&cmd[1];
188 box->x != 0 || box->y != 0 || box->z != 0 ||
189 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 ||
190 box->d != 1 || box_count != 1) {
196 box->srcx, box->srcy, box->srcz,
197 box->x, box->y, box->z,
198 box->w, box->h, box->d, box_count,
218 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) {
222 for (i = 0; i < box->h; i++)
225 box->w * 4);
1478 /* Bounding box upper left is at (0,0). */
1495 * limit on primary bounding box
2610 SVGA3dBox *box;
2622 box = &cmd->body.box;
2636 box->x = clips->x1;
2637 box->y = clips->y1;
2638 box->z = 0;
2639 box->w = clips->x2 - clips->x1;
2640 box->h = clips->y2 - clips->y1;
2641 box->d = 1;