forked from len0rd/rockbox
Convert remaining memframe LCDs that can be convert to common code.
Massage the way it interfaces a bit to make things more flexible. The chroma_buf scheme on Sansa Connect and Creative ZVx calling the lcd_write_yuv420_lines implementation in lcd-as-memframe.S with five params with a chroma buffer that the function can't use wouldn't work anyway so just have them use the stock implementation (really, how was that working?). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31335 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
13b2f53813
commit
95e6043d5e
14 changed files with 197 additions and 453 deletions
|
@ -442,6 +442,15 @@ enum {
|
|||
};
|
||||
|
||||
extern bool lcd_active(void);
|
||||
|
||||
/* Set the active flag - to be called by target drivers only! */
|
||||
extern void lcd_set_active(bool active);
|
||||
#else
|
||||
/* NULL versions for no sleeping */
|
||||
static inline bool lcd_active(void)
|
||||
{ return true; }
|
||||
static inline void lcd_set_active(bool active)
|
||||
{ (void)active; }
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LCD_SHUTDOWN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue