diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/arm/rk27xx/lcd-hifiman.c | 6 | ||||
-rw-r--r-- | firmware/target/arm/rk27xx/rk27generic/lcd-rk27generic.c | 6 |
2 files changed, 10 insertions, 2 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 | ||
354 | void lcd_blit_yuv(unsigned char * const src[3], | 357 | void 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 | ||
diff --git a/firmware/target/arm/rk27xx/rk27generic/lcd-rk27generic.c b/firmware/target/arm/rk27xx/rk27generic/lcd-rk27generic.c index 3e0eca1d6f..988f710660 100644 --- a/firmware/target/arm/rk27xx/rk27generic/lcd-rk27generic.c +++ b/firmware/target/arm/rk27xx/rk27generic/lcd-rk27generic.c | |||
@@ -192,7 +192,10 @@ void lcd_update_rect(int x, int y, int width, int height) | |||
192 | } | 192 | } |
193 | } | 193 | } |
194 | 194 | ||
195 | /* Blit a YUV bitmap directly to the LCD */ | 195 | /* Blit a YUV bitmap directly to the LCD |
196 | * provided by generic fallback in lcd-16bit-common.c | ||
197 | */ | ||
198 | #if 0 | ||
196 | void lcd_blit_yuv(unsigned char * const src[3], | 199 | void lcd_blit_yuv(unsigned char * const src[3], |
197 | int src_x, int src_y, int stride, | 200 | int src_x, int src_y, int stride, |
198 | int x, int y, int width, int height) | 201 | int x, int y, int width, int height) |
@@ -206,3 +209,4 @@ void lcd_blit_yuv(unsigned char * const src[3], | |||
206 | (void)width; | 209 | (void)width; |
207 | (void)height; | 210 | (void)height; |
208 | } | 211 | } |
212 | #endif | ||