Lines Matching defs:body
74 SVGAFifoCmdBlitScreenToGMRFB body;
79 SVGAFifoCmdBlitGMRFBToScreen body;
84 SVGA3dCmdBlitSurfaceToScreen body;
89 SVGAFifoCmdDefineGMRFB body;
181 SVGAFifoCmdDestroyScreen body;
195 cmd->body.screenId = sou->base.unit;
497 gmr->body.format.bitsPerPixel = update->vfb->base.format->cpp[0] * 8;
498 gmr->body.format.colorDepth = depth;
499 gmr->body.format.reserved = 0;
500 gmr->body.bytesPerLine = update->vfb->base.pitches[0];
501 vmw_bo_get_guest_ptr(&vfbbo->buffer->base, &gmr->body.ptr);
513 blit->body.destScreenId = update->du->unit;
514 blit->body.srcOrigin.x = fb_x;
515 blit->body.srcOrigin.y = fb_y;
516 blit->body.destRect.left = clip->x1;
517 blit->body.destRect.top = clip->y1;
518 blit->body.destRect.right = clip->x2;
519 blit->body.destRect.bottom = clip->y2;
602 blit->header.size = sizeof(blit->body) + sizeof(SVGASignedRect) *
605 blit->body.srcImage.sid = vfbs->surface->res.id;
606 blit->body.destScreenId = update->du->unit;
609 blit->body.srcRect.left = 0;
610 blit->body.srcRect.top = 0;
611 blit->body.srcRect.right = 0;
612 blit->body.srcRect.bottom = 0;
614 blit->body.destRect.left = 0;
615 body.destRect.top = 0;
616 blit->body.destRect.right = 0;
617 blit->body.destRect.bottom = 0;
658 num_hits = (blit->header.size - sizeof(blit->body))/
669 blit->body.srcRect.left = src_bb.x1;
670 blit->body.srcRect.top = src_bb.y1;
671 blit->body.srcRect.right = src_bb.x2;
672 blit->body.srcRect.bottom = src_bb.y2;
674 blit->body.destRect.left = bb->x1;
675 blit->body.destRect.top = bb->y1;
676 blit->body.destRect.right = bb->x2;
677 blit->body.destRect.bottom = bb->y2;
992 SVGAFifoCmdDefineGMRFB body;
1007 cmd->body.format.bitsPerPixel = framebuffer->base.format->cpp[0] * 8;
1008 cmd->body.format.colorDepth = depth;
1009 cmd->body.format.reserved = 0;
1010 cmd->body.bytesPerLine = framebuffer->base.pitches[0];
1012 vmw_bo_get_guest_ptr(&buf->base, &cmd->body.ptr);
1044 cmd->header.size = sizeof(cmd->body) + region_size;
1050 cmd->body.destRect.left = sdirty->left;
1051 cmd->body.destRect.right = sdirty->right;
1052 cmd->body.destRect.top = sdirty->top;
1053 cmd->body.destRect.bottom = sdirty->bottom;
1055 cmd->body.srcRect.left = sdirty->left + trans_x;
1056 cmd->body.srcRect.right = sdirty->right + trans_x;
1057 cmd->body.srcRect.top = sdirty->top + trans_y;
1058 cmd->body.srcRect.bottom = sdirty->bottom + trans_y;
1060 cmd->body.srcImage.sid = sdirty->sid;
1061 cmd->body.destScreenId = dirty->unit->unit;
1217 blit->body.destScreenId = dirty->unit->unit;
1218 blit->body.srcOrigin.x = dirty->fb_x;
1219 blit->body.srcOrigin.y = dirty->fb_y;
1220 blit->body.destRect.left = dirty->unit_x1;
1221 blit->body.destRect.top = dirty->unit_y1;
1222 blit->body.destRect.right = dirty->unit_x2;
1223 blit->body.destRect.bottom = dirty->unit_y2;
1327 blit->body.srcScreenId = dirty->unit->unit;
1328 blit->body.destOrigin.x = dirty->fb_x;
1329 blit->body.destOrigin.y = dirty->fb_y;
1330 blit->body.srcRect.left = dirty->unit_x1;
1331 blit->body.srcRect.top = dirty->unit_y1;
1332 blit->body.srcRect.right = dirty->unit_x2;
1333 blit->body.srcRect.bottom = dirty->unit_y2;