forked from len0rd/rockbox
Cabbiev2 gigabeat background: reduce WPS backdrop filesize by storing it as 24 bit BMP instead of unnecessary 32 bit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16802 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
38ed901284
commit
9a7978aeab
34 changed files with 410 additions and 426 deletions
|
@ -34,8 +34,8 @@ void grey_set_position(int x, int y)
|
|||
#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
|
||||
_grey_info.bx = (x + 4) >> 3;
|
||||
x = 8 * _grey_info.bx;
|
||||
#else
|
||||
#if LCD_DEPTH == 1
|
||||
#else /* vertical packing or vertical interleaved */
|
||||
#if (LCD_DEPTH == 1) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED)
|
||||
_grey_info.by = (y + 4) >> 3;
|
||||
y = 8 * _grey_info.by;
|
||||
#elif LCD_DEPTH == 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue