drm/docs: Align layout of optional plane blending properties

Just a bit of drive-by OCD. All the other property docs use enumerations,
for some nice visual consistency. It also neatly highlights the property
name.

Reviewed-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180219225356.24996-2-daniel.vetter@ffwll.ch
This commit is contained in:
Daniel Vetter 2018-02-19 23:53:53 +01:00
parent 3f0df756b6
commit 4d10bd45d4

View File

@ -88,15 +88,17 @@
* On top of this basic transformation additional properties can be exposed by * On top of this basic transformation additional properties can be exposed by
* the driver: * the driver:
* *
* - Rotation is set up with drm_plane_create_rotation_property(). It adds a * rotation:
* rotation and reflection step between the source and destination rectangles. * Rotation is set up with drm_plane_create_rotation_property(). It adds a
* Without this property the rectangle is only scaled, but not rotated or * rotation and reflection step between the source and destination rectangles.
* reflected. * Without this property the rectangle is only scaled, but not rotated or
* reflected.
* *
* - Z position is set up with drm_plane_create_zpos_immutable_property() and * zpos:
* drm_plane_create_zpos_property(). It controls the visibility of overlapping * Z position is set up with drm_plane_create_zpos_immutable_property() and
* planes. Without this property the primary plane is always below the cursor * drm_plane_create_zpos_property(). It controls the visibility of overlapping
* plane, and ordering between all other planes is undefined. * planes. Without this property the primary plane is always below the cursor
* plane, and ordering between all other planes is undefined.
* *
* Note that all the property extensions described here apply either to the * Note that all the property extensions described here apply either to the
* plane or the CRTC (e.g. for the background color, which currently is not * plane or the CRTC (e.g. for the background color, which currently is not