summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-04-05 12:17:11 +0000
committerThomas Martitz <kugel@rockbox.org>2010-04-05 12:17:11 +0000
commitae69e92008046b447833dde37e1fbc55c229cdcf (patch)
tree67dd52b6016f8f50e613b7f4dc0af4fe61e0d8bb /firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
parent20003ec1c080f683f5c3b76537a419a231f6cf14 (diff)
downloadrockbox-ae69e92008046b447833dde37e1fbc55c229cdcf.tar.gz
rockbox-ae69e92008046b447833dde37e1fbc55c229cdcf.zip
as2525(v2): We don't need yuv blitting/greylib support in the bootloader so don't compile it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c')
-rw-r--r--firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
index 5c3e92bb1a..2808d60f46 100644
--- a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
+++ b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
@@ -366,6 +366,8 @@ static void lcd_window_blit(int xmin, int ymin, int xmax, int ymax)
366 } 366 }
367} 367}
368 368
369
370#ifndef BOOTLOADER
369/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. */ 371/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. */
370extern void lcd_write_yuv420_lines(unsigned char const * const src[3], 372extern void lcd_write_yuv420_lines(unsigned char const * const src[3],
371 int width, 373 int width,
@@ -434,6 +436,9 @@ void lcd_blit_yuv(unsigned char * const src[3],
434 } 436 }
435} 437}
436 438
439#endif
440
441
437/* Update the display. 442/* Update the display.
438 This must be called after all other LCD functions that change the display. */ 443 This must be called after all other LCD functions that change the display. */
439void lcd_update(void) 444void lcd_update(void)