summaryrefslogtreecommitdiff
path: root/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/sandisk/sansa-e200/lcd-e200.c')
-rw-r--r--firmware/target/arm/sandisk/sansa-e200/lcd-e200.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c b/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
index e1212c9512..f2689eabbf 100644
--- a/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
+++ b/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
@@ -612,18 +612,6 @@ void lcd_set_flip(bool yesno)
612 612
613/* Blitting functions */ 613/* Blitting functions */
614 614
615void lcd_blit(const fb_data* data, int x, int by, int width,
616 int bheight, int stride)
617{
618 /* TODO: Implement lcd_blit() */
619 (void)data;
620 (void)x;
621 (void)by;
622 (void)width;
623 (void)bheight;
624 (void)stride;
625}
626
627void lcd_yuv_set_options(unsigned options) 615void lcd_yuv_set_options(unsigned options)
628{ 616{
629 lcd_yuv_options = options; 617 lcd_yuv_options = options;
@@ -643,7 +631,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
643/* Performance function to blit a YUV bitmap directly to the LCD */ 631/* Performance function to blit a YUV bitmap directly to the LCD */
644/* For the e200 - show it rotated */ 632/* For the e200 - show it rotated */
645/* So the LCD_WIDTH is now the height */ 633/* So the LCD_WIDTH is now the height */
646void lcd_yuv_blit(unsigned char * const src[3], 634void lcd_blit_yuv(unsigned char * const src[3],
647 int src_x, int src_y, int stride, 635 int src_x, int src_y, int stride,
648 int x, int y, int width, int height) 636 int x, int y, int width, int height)
649{ 637{