Lines Matching refs:body

85 	SVGA3dCmdUpdateGBScreenTarget body;
90 SVGA3dCmdSurfaceDMA body;
95 SVGA3dCmdSurfaceCopy body;
100 SVGA3dCmdUpdateGBImage body;
172 SVGA3dCmdDefineGBScreenTarget body;
180 cmd->header.size = sizeof(cmd->body);
182 cmd->body.stid = stdu->base.unit;
183 cmd->body.width = mode->hdisplay;
184 cmd->body.height = mode->vdisplay;
185 cmd->body.flags = (0 == cmd->body.stid) ? SVGA_STFLAG_PRIMARY : 0;
186 cmd->body.dpi = 0;
187 cmd->body.xRoot = crtc_x;
188 cmd->body.yRoot = crtc_y;
190 stdu->base.set_gui_x = cmd->body.xRoot;
191 stdu->base.set_gui_y = cmd->body.yRoot;
223 SVGA3dCmdBindGBScreenTarget body;
241 cmd->header.size = sizeof(cmd->body);
243 cmd->body.stid = stdu->base.unit;
244 cmd->body.image = image;
268 update->header.size = sizeof(update->body);
270 update->body.stid = unit;
271 update->body.rect.x = left;
272 update->body.rect.y = top;
273 update->body.rect.w = right - left;
274 update->body.rect.h = bottom - top;
331 SVGA3dCmdDestroyGBScreenTarget body;
344 cmd->header.size = sizeof(cmd->body);
346 cmd->body.stid = stdu->base.unit;
666 cmd->header.size = sizeof(cmd->body) + blit_size;
667 cmd->body.src.sid = sdirty->sid;
668 cmd->body.dest.sid = stdu->display_srf->res.id;
1103 SVGA3dBox *box = &cmd_img->body.box;
1106 cmd_img->header.size = sizeof(cmd_img->body);
1107 cmd_img->body.image.sid = stdu->display_srf->res.id;
1108 cmd_img->body.image.face = 0;
1109 cmd_img->body.image.mipmap = 0;
1220 SVGA3dBox *box = &cmd_update->body.box;
1223 cmd_update->header.size = sizeof(cmd_update->body);
1224 cmd_update->body.image.sid = vfbs->surface->res.id;
1225 cmd_update->body.image.face = 0;
1226 cmd_update->body.image.mipmap = 0;
1254 cmd_copy->header.size = sizeof(cmd_copy->body) + sizeof(SVGA3dCopyBox) *
1256 cmd_copy->body.src.sid = vfbs->surface->res.id;
1257 cmd_copy->body.dest.sid = stdu->display_srf->res.id;