diff options
author | John Rees <john.rees@arm.com> | 2013-03-21 16:24:35 +0000 |
---|---|---|
committer | John Rees <john.rees@arm.com> | 2013-03-26 17:20:12 +0000 |
commit | 292ae509789709c68ed365b22f88022f32087561 (patch) | |
tree | 541f02d4641e0c5298f4289c6e3e4d5b8325623f /README | |
parent | 4ddeac9fb56903e80934790db1cf31ae6170bbec (diff) |
Added "Initial PL111 HW Cursor support"
Main feature added is to allow the HW Cursor on pl111 to be driven by X.
Note that the pixel format is limited only LBBP, so added a conversion routine to
convert between ARBG8888 to PL111 LBBP.
Updated README file for platform specific HW Cursor options.
Pulled out cursor dimensions to header and pl111 specific cursor helpers into separate
source file.
Change-Id: If8edf8e76da14f40a842b64ab61e927d6099cd4d
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -19,4 +19,20 @@ The platform specific defines are : #define DRM_BO_NON_SCANOUT 0x00000000 /* request non-scanout compatible buffer */ -
\ No newline at end of file +HW Cursors support +------------------- + +HW Cursor plane configuration +------------------------------ + +The cursor plane format needs to be modified to select the format that the platform expects. This can +be done by setting DRM_CURSOR_PLANE_FORMAT define to the desired format in omap_drmif_fb.h. + +Currently available options are: + +HW_CURSOR_ARGB - Cursor images support full ARGB8888 pixel format. +HW_CURSOR_PL111 - Cursor images support PL111 LBBP pixel format. + +For example to set HW_CURSOR_PL111 cursor support set DRM_CURSOR_PLANE_FORMAT in the following way: + +#define DRM_CURSOR_PLANE_FORMAT HW_CURSOR_PL111
\ No newline at end of file |