summaryrefslogtreecommitdiff
path: root/apps/plugins/greyscale.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-03-25 23:21:36 +0000
committerJens Arnold <amiconn@rockbox.org>2008-03-25 23:21:36 +0000
commit40919d7db29d036033f57fe6fbf9e3f562e61c0d (patch)
treeb04fa272f6cee51639b7307ee5fcd9b4f9737fde /apps/plugins/greyscale.c
parent6ceaf321f3aadc804b1daa8fb10607a7ae209351 (diff)
downloadrockbox-40919d7db29d036033f57fe6fbf9e3f562e61c0d.tar.gz
rockbox-40919d7db29d036033f57fe6fbf9e3f562e61c0d.zip
iAudio M3: Optimised LCD driver, with more/better assembly code. Speedup is ~80% when boosted, ~15% when unboosted. Also implemented grey phase blitting. * Adapted the greyscale library, and the plugins using it. * Fixed a bug in greyscale scroll down for vertically packed pixels.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16809 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/greyscale.c')
-rw-r--r--apps/plugins/greyscale.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/greyscale.c b/apps/plugins/greyscale.c
index 522a81fc28..42ba08f22e 100644
--- a/apps/plugins/greyscale.c
+++ b/apps/plugins/greyscale.c
@@ -78,6 +78,17 @@ PLUGIN_HEADER
78#define GREYSCALE_LEFT BUTTON_LEFT 78#define GREYSCALE_LEFT BUTTON_LEFT
79#define GREYSCALE_RIGHT BUTTON_RIGHT 79#define GREYSCALE_RIGHT BUTTON_RIGHT
80#define GREYSCALE_OFF BUTTON_EQ 80#define GREYSCALE_OFF BUTTON_EQ
81
82#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
83#define GREYSCALE_SHIFT BUTTON_RC_PLAY /* somewhat dangerous... */
84#define GREYSCALE_UP BUTTON_RC_VOL_UP
85#define GREYSCALE_DOWN BUTTON_RC_VOL_DOWN
86#define GREYSCALE_LEFT BUTTON_RC_REW
87#define GREYSCALE_RIGHT BUTTON_RC_FF
88#define GREYSCALE_OFF BUTTON_RC_REC
89
90#define GREYSCALE_RC_OFF BUTTON_REC
91
81#endif 92#endif
82 93
83#define GFX_HEIGHT (LCD_HEIGHT-8) 94#define GFX_HEIGHT (LCD_HEIGHT-8)