mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-15 08:02:34 -05:00
rk27xx: use generic fallback of lcd_blit_yuv()
Change-Id: I4d6834c8caa9037938d6291041f14cf9d2888e2b
This commit is contained in:
parent
0b0d3ee650
commit
33b7ade67f
2 changed files with 10 additions and 2 deletions
|
|
@ -350,7 +350,10 @@ bool lcd_active()
|
||||||
return display_on;
|
return display_on;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Blit a YUV bitmap directly to the LCD */
|
/* Blit a YUV bitmap directly to the LCD
|
||||||
|
* provided by generic fallback in lcd-16bit-common.c
|
||||||
|
*/
|
||||||
|
#if 0
|
||||||
void lcd_blit_yuv(unsigned char * const src[3],
|
void lcd_blit_yuv(unsigned char * const src[3],
|
||||||
int src_x, int src_y, int stride,
|
int src_x, int src_y, int stride,
|
||||||
int x, int y, int width, int height)
|
int x, int y, int width, int height)
|
||||||
|
|
@ -364,3 +367,4 @@ void lcd_blit_yuv(unsigned char * const src[3],
|
||||||
(void)width;
|
(void)width;
|
||||||
(void)height;
|
(void)height;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -192,7 +192,10 @@ void lcd_update_rect(int x, int y, int width, int height)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Blit a YUV bitmap directly to the LCD */
|
/* Blit a YUV bitmap directly to the LCD
|
||||||
|
* provided by generic fallback in lcd-16bit-common.c
|
||||||
|
*/
|
||||||
|
#if 0
|
||||||
void lcd_blit_yuv(unsigned char * const src[3],
|
void lcd_blit_yuv(unsigned char * const src[3],
|
||||||
int src_x, int src_y, int stride,
|
int src_x, int src_y, int stride,
|
||||||
int x, int y, int width, int height)
|
int x, int y, int width, int height)
|
||||||
|
|
@ -206,3 +209,4 @@ void lcd_blit_yuv(unsigned char * const src[3],
|
||||||
(void)width;
|
(void)width;
|
||||||
(void)height;
|
(void)height;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue