summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
index af74b6c688..3952171e7e 100644
--- a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
+++ b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
@@ -435,19 +435,3 @@ void lcd_update(void)
435{ 435{
436 lcd_update_rect(0, 0, LCD_WIDTH, LCD_HEIGHT); 436 lcd_update_rect(0, 0, LCD_WIDTH, LCD_HEIGHT);
437} 437}
438
439void lcd_blit_yuv(unsigned char * const src[3],
440 int src_x, int src_y, int stride,
441 int x, int y, int width, int height)
442{
443 /* TODO */
444 (void)src;
445 (void)src_x;
446 (void)src_y;
447 (void)stride;
448 (void)x;
449 (void)y;
450 (void)width;
451 (void)height;
452}
453