diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index cfe160996886ea748551af87a8478085500609e3..46ab0ac0c14725fc3c1827a6c537575e84ca50c4 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -774,20 +774,34 @@ qemu-kvm -net nic,model=? /dev/null
... - <video type='vga' nvram='8192' heads='1'> - <acceleration accel3d='yes' accel3d='yes' /> + <video> + <model type='vga' vram='8192' heads='1'> + <acceleration accel3d='yes' accel3d='yes'/> + </model> </video> ...
video
video
element has a mandatory type
- attribute which takes the value "vga", "cirrus", "vmvga", "xen" or "vbox".
- You can also provide the amount of video memory using nvram
,
- the number of screen with heads
, and whether acceleration
- should be enabled (if supported) using the accel3d
and
- accel2d
attributes in the acceleration
element.
+ video
element is the a container for describing
+ video devices.
+ model
model
element has a mandatory type
+ attribute which takes the value "vga", "cirrus", "vmvga", "xen" or "vbox".
+ You can also provide the amount of video memory in kilobytes using
+ vram
and the number of screen with heads
.
+ acceleration
accel3d
and accel2d
attributes in the
+ acceleration
element.
+