From c5a309afbd60114a4cb8b7f758647f7a6af0a6bd Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 8 Aug 2006 13:44:43 +0000 Subject: H300: * Implemented lcd_yuv_blit(). Speeds up video playback by about 7%. No bounds check in lcd_yuv_blit() (by convention), implementations for other targets should be adapted. * Fixed off-by-one bug in lcd_update_rect() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10484 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugin.c') diff --git a/apps/plugin.c b/apps/plugin.c index 4474d0d..bbc5d7d 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -463,8 +463,8 @@ static const struct plugin_api rockbox_api = { lcd_remote_bitmap, #endif -#if (CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO) && \ - !defined(SIMULATOR) +#if (CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO \ + || CONFIG_LCD == LCD_H300) && !defined(SIMULATOR) lcd_yuv_blit, #endif -- cgit v1.1