Lines Matching refs:body

68 	SVGAFifoCmdBlitScreenToGMRFB body;
73 SVGAFifoCmdBlitGMRFBToScreen body;
78 SVGA3dCmdBlitSurfaceToScreen body;
83 SVGAFifoCmdDefineGMRFB body;
175 SVGAFifoCmdDestroyScreen body;
189 cmd->body.screenId = sou->base.unit;
489 gmr->body.format.bitsPerPixel = update->vfb->base.format->cpp[0] * 8;
490 gmr->body.format.colorDepth = depth;
491 gmr->body.format.reserved = 0;
492 gmr->body.bytesPerLine = update->vfb->base.pitches[0];
493 vmw_bo_get_guest_ptr(&vfbbo->buffer->tbo, &gmr->body.ptr);
505 blit->body.destScreenId = update->du->unit;
506 blit->body.srcOrigin.x = fb_x;
507 blit->body.srcOrigin.y = fb_y;
508 blit->body.destRect.left = clip->x1;
509 blit->body.destRect.top = clip->y1;
510 blit->body.destRect.right = clip->x2;
511 blit->body.destRect.bottom = clip->y2;
593 blit->header.size = sizeof(blit->body) + sizeof(SVGASignedRect) *
596 blit->body.srcImage.sid = vfbs->surface->res.id;
597 blit->body.destScreenId = update->du->unit;
600 blit->body.srcRect.left = 0;
601 blit->body.srcRect.top = 0;
602 blit->body.srcRect.right = 0;
603 blit->body.srcRect.bottom = 0;
605 blit->body.destRect.left = 0;
606 blit->body.destRect.top = 0;
607 blit->body.destRect.right = 0;
608 blit->body.destRect.bottom = 0;
649 num_hits = (blit->header.size - sizeof(blit->body))/
660 blit->body.srcRect.left = src_bb.x1;
661 blit->body.srcRect.top = src_bb.y1;
662 blit->body.srcRect.right = src_bb.x2;
663 blit->body.srcRect.bottom = src_bb.y2;
665 blit->body.destRect.left = bb->x1;
666 blit->body.destRect.top = bb->y1;
667 blit->body.destRect.right = bb->x2;
668 blit->body.destRect.bottom = bb->y2;
955 SVGAFifoCmdDefineGMRFB body;
970 cmd->body.format.bitsPerPixel = framebuffer->base.format->cpp[0] * 8;
971 cmd->body.format.colorDepth = depth;
972 cmd->body.format.reserved = 0;
973 cmd->body.bytesPerLine = framebuffer->base.pitches[0];
975 vmw_bo_get_guest_ptr(&buf->tbo, &cmd->body.ptr);
1007 cmd->header.size = sizeof(cmd->body) + region_size;
1013 cmd->body.destRect.left = sdirty->left;
1014 cmd->body.destRect.right = sdirty->right;
1015 cmd->body.destRect.top = sdirty->top;
1016 cmd->body.destRect.bottom = sdirty->bottom;
1018 cmd->body.srcRect.left = sdirty->left + trans_x;
1019 cmd->body.srcRect.right = sdirty->right + trans_x;
1020 cmd->body.srcRect.top = sdirty->top + trans_y;
1021 cmd->body.srcRect.bottom = sdirty->bottom + trans_y;
1023 cmd->body.srcImage.sid = sdirty->sid;
1024 cmd->body.destScreenId = dirty->unit->unit;
1180 blit->body.destScreenId = dirty->unit->unit;
1181 blit->body.srcOrigin.x = dirty->fb_x;
1182 blit->body.srcOrigin.y = dirty->fb_y;
1183 blit->body.destRect.left = dirty->unit_x1;
1184 blit->body.destRect.top = dirty->unit_y1;
1185 blit->body.destRect.right = dirty->unit_x2;
1186 blit->body.destRect.bottom = dirty->unit_y2;
1292 blit->body.srcScreenId = dirty->unit->unit;
1293 blit->body.destOrigin.x = dirty->fb_x;
1294 blit->body.destOrigin.y = dirty->fb_y;
1295 blit->body.srcRect.left = dirty->unit_x1;
1296 blit->body.srcRect.top = dirty->unit_y1;
1297 blit->body.srcRect.right = dirty->unit_x2;
1298 blit->body.srcRect.bottom = dirty->unit_y2;