forked from len0rd/rockbox
Backdrop support in the X5 remote LCD driver. Still needs to be wired to the UI and settings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11601 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bbef13eddf
commit
11e2e565ca
2 changed files with 116 additions and 7 deletions
|
@ -132,8 +132,13 @@ extern void lcd_remote_setfont(int font);
|
|||
extern int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h);
|
||||
|
||||
/* low level drawing function pointer arrays */
|
||||
#if LCD_REMOTE_DEPTH > 1
|
||||
extern lcd_remote_pixelfunc_type* const *lcd_remote_pixelfuncs;
|
||||
extern lcd_remote_blockfunc_type* const *lcd_remote_blockfuncs;
|
||||
#else
|
||||
extern lcd_remote_pixelfunc_type* const lcd_remote_pixelfuncs[8];
|
||||
extern lcd_remote_blockfunc_type* const lcd_remote_blockfuncs[8];
|
||||
#endif
|
||||
|
||||
extern void lcd_remote_drawpixel(int x, int y);
|
||||
extern void lcd_remote_drawline(int x1, int y1, int x2, int y2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue