diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-08-08 13:44:43 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-08-08 13:44:43 +0000 |
| commit | c5a309afbd60114a4cb8b7f758647f7a6af0a6bd (patch) | |
| tree | cb615f1619892e1d059c1767481d3f5f67a47402 /apps/plugin.c | |
| parent | 905cf06e32197f54cd005851e4060f0e8cbff34c (diff) | |
| download | rockbox-c5a309afbd60114a4cb8b7f758647f7a6af0a6bd.zip rockbox-c5a309afbd60114a4cb8b7f758647f7a6af0a6bd.tar.gz rockbox-c5a309afbd60114a4cb8b7f758647f7a6af0a6bd.tar.bz2 rockbox-c5a309afbd60114a4cb8b7f758647f7a6af0a6bd.tar.xz | |
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
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |