forked from len0rd/rockbox
Changed the LCD_COLOR pixel value format to packed RGB (unsigned int). Now all LCDs with depth > 1 use the same datatype. Added macros for easy pixel value definition.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7912 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
15046f99b3
commit
5b2cba17aa
15 changed files with 94 additions and 148 deletions
|
|
@ -76,11 +76,7 @@ struct screen
|
|||
int x, int y, int width, int height);
|
||||
void (*set_drawmode)(int mode);
|
||||
#if LCD_DEPTH > 1
|
||||
#if HAVE_LCD_COLOR
|
||||
void (*set_background)(struct rgb color);
|
||||
#else
|
||||
void (*set_background)(int brightness);
|
||||
#endif
|
||||
void (*set_background)(unsigned background);
|
||||
#endif /* LCD_DEPTH > 1 */
|
||||
void (*update_rect)(int x, int y, int width, int height);
|
||||
void (*fillrect)(int x, int y, int width, int height);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue