summaryrefslogtreecommitdiff
path: root/firmware/target/arm/rk27xx/lcd-hifiman.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/rk27xx/lcd-hifiman.c')
-rw-r--r--firmware/target/arm/rk27xx/lcd-hifiman.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/target/arm/rk27xx/lcd-hifiman.c b/firmware/target/arm/rk27xx/lcd-hifiman.c
index f93adfdcf5..1c42921a42 100644
--- a/firmware/target/arm/rk27xx/lcd-hifiman.c
+++ b/firmware/target/arm/rk27xx/lcd-hifiman.c
@@ -350,7 +350,10 @@ bool lcd_active()
350 return display_on; 350 return display_on;
351} 351}
352 352
353/* Blit a YUV bitmap directly to the LCD */ 353/* Blit a YUV bitmap directly to the LCD
354 * provided by generic fallback in lcd-16bit-common.c
355 */
356#if 0
354void lcd_blit_yuv(unsigned char * const src[3], 357void lcd_blit_yuv(unsigned char * const src[3],
355 int src_x, int src_y, int stride, 358 int src_x, int src_y, int stride,
356 int x, int y, int width, int height) 359 int x, int y, int width, int height)
@@ -364,3 +367,4 @@ void lcd_blit_yuv(unsigned char * const src[3],
364 (void)width; 367 (void)width;
365 (void)height; 368 (void)height;
366} 369}
370#endif