Lines Matching defs:body
84 SVGA3dCmdUpdateGBScreenTarget body;
89 SVGA3dCmdSurfaceDMA body;
94 SVGA3dCmdSurfaceCopy body;
99 SVGA3dCmdUpdateGBImage body;
171 SVGA3dCmdDefineGBScreenTarget body;
179 cmd->header.size = sizeof(cmd->body);
181 cmd->body.stid = stdu->base.unit;
182 cmd->body.width = mode->hdisplay;
183 cmd->body.height = mode->vdisplay;
184 cmd->body.flags = (0 == cmd->body.stid) ? SVGA_STFLAG_PRIMARY : 0;
185 cmd->body.dpi = 0;
186 cmd->body.xRoot = crtc_x;
187 cmd->body.yRoot = crtc_y;
189 stdu->base.set_gui_x = cmd->body.xRoot;
190 stdu->base.set_gui_y = cmd->body.yRoot;
220 SVGA3dCmdBindGBScreenTarget body;
238 cmd->header.size = sizeof(cmd->body);
240 cmd->body.stid = stdu->base.unit;
241 cmd->body.image = image;
265 update->header.size = sizeof(update->body);
267 update->body.stid = unit;
268 update->body.rect.x = left;
269 update->body.rect.y = top;
270 update->body.rect.w = right - left;
271 update->body.rect.h = bottom - top;
325 SVGA3dCmdDestroyGBScreenTarget body;
338 cmd->header.size = sizeof(cmd->body);
340 cmd->body.stid = stdu->base.unit;
667 cmd->header.size = sizeof(cmd->body) + blit_size;
668 cmd->body.src.sid = sdirty->sid;
669 cmd->body.dest.sid = stdu->display_srf->res.id;
1097 SVGA3dBox *box = &cmd_img->body.box;
1100 cmd_img->header.size = sizeof(cmd_img->body);
1101 cmd_img->body.image.sid = stdu->display_srf->res.id;
1102 cmd_img->body.image.face = 0;
1103 cmd_img->body.image.mipmap = 0;
1214 SVGA3dBox *box = &cmd_update->body.box;
1217 cmd_update->header.size = sizeof(cmd_update->body);
1218 cmd_update->body.image.sid = vfbs->surface->res.id;
1219 cmd_update->body.image.face = 0;
1220 cmd_update->body.image.mipmap = 0;
1248 cmd_copy->header.size = sizeof(cmd_copy->body) + sizeof(SVGA3dCopyBox) *
1250 cmd_copy->body.src.sid = vfbs->surface->res.id;
1251 cmd_copy->body.dest.sid = stdu->display_srf->res.id;