diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index cfe1609968..46ab0ac0c1 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>
...
videovideo 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.
+ modelmodel 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.
+ accelerationaccel3d and accel2d attributes in the
+ acceleration element.
+