diff options
author | Robert Kukla <roolku@rockbox.org> | 2008-04-08 15:04:26 +0000 |
---|---|---|
committer | Robert Kukla <roolku@rockbox.org> | 2008-04-08 15:04:26 +0000 |
commit | ff554e0c7f944907e35af1aa67d17976378ce1c4 (patch) | |
tree | b3626013d1fcc1f41cdfc36efff1702f1e81031c /apps/plugins | |
parent | f4deea60273d34f643cf7965cab184f13d66f322 (diff) |
m:robe 100 - make screendump work for greyscale and add screenshots for the manual
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17033 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/lib/grey_core.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c index c38a8b8446..2fbbc9cb3b 100644 --- a/apps/plugins/lib/grey_core.c +++ b/apps/plugins/lib/grey_core.c @@ -725,9 +725,18 @@ static const unsigned char bmpheader[] = }; #if LCD_DEPTH == 1 +#ifdef MROBE_100 +#define BMP_RED 241 +#define BMP_GREEN 6 +#define BMP_BLUE 3 +#define BMP_RED_BASE 94 +#define BMP_GREEN_BASE 2 +#define BMP_BLUE_BASE 2 +#elif #define BMP_RED 0x90 #define BMP_GREEN 0xee #define BMP_BLUE 0x90 +#endif #elif LCD_DEPTH == 2 #define BMP_RED 0xad #define BMP_GREEN 0xd8 @@ -762,9 +771,18 @@ static void grey_screendump_hook(int fd) for (i = 0; i <= 128; i++) { +#ifdef MROBE_100 + *clut_entry++ = (_GREY_MULUQ(BMP_BLUE-BMP_BLUE_BASE, i) >> 7) + + BMP_BLUE_BASE; + *clut_entry++ = (_GREY_MULUQ(BMP_GREEN-BMP_GREEN_BASE, i) >> 7) + + BMP_GREEN_BASE; + *clut_entry++ = (_GREY_MULUQ(BMP_RED-BMP_RED_BASE, i) >> 7) + + BMP_RED_BASE; +#else *clut_entry++ = _GREY_MULUQ(BMP_BLUE, i) >> 7; *clut_entry++ = _GREY_MULUQ(BMP_GREEN, i) >> 7; *clut_entry++ = _GREY_MULUQ(BMP_RED, i) >> 7; +#endif clut_entry++; } _grey_info.rb->write(fd, linebuf, 4*BMP_VARCOLORS); |