Lines Matching refs:body
69 SVGAFifoCmdBlitScreenToGMRFB body;
74 SVGAFifoCmdBlitGMRFBToScreen body;
79 SVGA3dCmdBlitSurfaceToScreen body;
84 SVGAFifoCmdDefineGMRFB body;
176 SVGAFifoCmdDestroyScreen body;
190 cmd->body.screenId = sou->base.unit;
495 gmr->body.format.bitsPerPixel = update->vfb->base.format->cpp[0] * 8;
496 gmr->body.format.colorDepth = depth;
497 gmr->body.format.reserved = 0;
498 gmr->body.bytesPerLine = update->vfb->base.pitches[0];
499 vmw_bo_get_guest_ptr(&vfbbo->buffer->base, &gmr->body.ptr);
511 blit->body.destScreenId = update->du->unit;
512 blit->body.srcOrigin.x = fb_x;
513 blit->body.srcOrigin.y = fb_y;
514 blit->body.destRect.left = clip->x1;
515 blit->body.destRect.top = clip->y1;
516 blit->body.destRect.right = clip->x2;
517 blit->body.destRect.bottom = clip->y2;
600 blit->header.size = sizeof(blit->body) + sizeof(SVGASignedRect) *
603 blit->body.srcImage.sid = vfbs->surface->res.id;
604 blit->body.destScreenId = update->du->unit;
607 blit->body.srcRect.left = 0;
608 blit->body.srcRect.top = 0;
609 blit->body.srcRect.right = 0;
610 blit->body.srcRect.bottom = 0;
612 blit->body.destRect.left = 0;
613 blit->body.destRect.top = 0;
614 blit->body.destRect.right = 0;
615 blit->body.destRect.bottom = 0;
656 num_hits = (blit->header.size - sizeof(blit->body))/
667 blit->body.srcRect.left = src_bb.x1;
668 blit->body.srcRect.top = src_bb.y1;
669 blit->body.srcRect.right = src_bb.x2;
670 blit->body.srcRect.bottom = src_bb.y2;
672 blit->body.destRect.left = bb->x1;
673 blit->body.destRect.top = bb->y1;
674 blit->body.destRect.right = bb->x2;
675 blit->body.destRect.bottom = bb->y2;
989 SVGAFifoCmdDefineGMRFB body;
1004 cmd->body.format.bitsPerPixel = framebuffer->base.format->cpp[0] * 8;
1005 cmd->body.format.colorDepth = depth;
1006 cmd->body.format.reserved = 0;
1007 cmd->body.bytesPerLine = framebuffer->base.pitches[0];
1009 vmw_bo_get_guest_ptr(&buf->base, &cmd->body.ptr);
1041 cmd->header.size = sizeof(cmd->body) + region_size;
1047 cmd->body.destRect.left = sdirty->left;
1048 cmd->body.destRect.right = sdirty->right;
1049 cmd->body.destRect.top = sdirty->top;
1050 cmd->body.destRect.bottom = sdirty->bottom;
1052 cmd->body.srcRect.left = sdirty->left + trans_x;
1053 cmd->body.srcRect.right = sdirty->right + trans_x;
1054 cmd->body.srcRect.top = sdirty->top + trans_y;
1055 cmd->body.srcRect.bottom = sdirty->bottom + trans_y;
1057 cmd->body.srcImage.sid = sdirty->sid;
1058 cmd->body.destScreenId = dirty->unit->unit;
1214 blit->body.destScreenId = dirty->unit->unit;
1215 blit->body.srcOrigin.x = dirty->fb_x;
1216 blit->body.srcOrigin.y = dirty->fb_y;
1217 blit->body.destRect.left = dirty->unit_x1;
1218 blit->body.destRect.top = dirty->unit_y1;
1219 blit->body.destRect.right = dirty->unit_x2;
1220 blit->body.destRect.bottom = dirty->unit_y2;
1324 blit->body.srcScreenId = dirty->unit->unit;
1325 blit->body.destOrigin.x = dirty->fb_x;
1326 blit->body.destOrigin.y = dirty->fb_y;
1327 blit->body.srcRect.left = dirty->unit_x1;
1328 blit->body.srcRect.top = dirty->unit_y1;
1329 blit->body.srcRect.right = dirty->unit_x2;
1330 blit->body.srcRect.bottom = dirty->unit_y2;