diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2008-01-31 19:28:51 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2008-01-31 19:28:51 +0000 |
| commit | 4cd37d5ba4ed840f7d08ec6b6024cfa8c16457da (patch) | |
| tree | 98a203fe4905f33cbfd09c5cea67a6a830af5c6e /apps/plugins/bitmaps | |
| parent | cdc933f40fd5b551fb7e0130262bb44b0ec2e6aa (diff) | |
| download | rockbox-4cd37d5ba4ed840f7d08ec6b6024cfa8c16457da.zip rockbox-4cd37d5ba4ed840f7d08ec6b6024cfa8c16457da.tar.gz rockbox-4cd37d5ba4ed840f7d08ec6b6024cfa8c16457da.tar.bz2 rockbox-4cd37d5ba4ed840f7d08ec6b6024cfa8c16457da.tar.xz | |
Use nicer logos in the logo plugin, plus use the bitmap build system magic.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16189 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 27 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.112x30x1.bmp | bin | 0 -> 542 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.128x40x16.bmp | bin | 0 -> 10294 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.138x46x2.bmp | bin | 0 -> 3392 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.220x68x16.bmp | bin | 0 -> 44934 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.90x28x16.bmp | bin | 0 -> 7670 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.91x32x1.bmp | bin | 0 -> 446 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/rockboxlogo.91x32x2.bmp | bin | 0 -> 1566 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/remote_native/SOURCES | 7 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x1.bmp | bin | 0 -> 446 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x2.bmp | bin | 0 -> 1566 bytes |
11 files changed, 34 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index d9a0be3..c3a74ef 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -577,5 +577,32 @@ matrix_normal.bmp sliding_puzzle.80x64x1.bmp #endif +/* Logo */ +#if LCD_DEPTH == 16 +#if (LCD_WIDTH >= 320) + rockboxlogo.220x68x16.bmp +#elif (LCD_WIDTH > 160) + rockboxlogo.128x40x16.bmp +#else + rockboxlogo.90x28x16.bmp +#endif + +#elif LCD_DEPTH == 2 +#if (LCD_WIDTH > 138) + rockboxlogo.138x46x2.bmp +#else + rockboxlogo.91x32x2.bmp +#endif +#endif + +#elif LCD_DEPTH == 1 +#if (LCD_WIDTH > 112) + /* Such a screen isn't currently in any target */ + rockboxlogo.112x30x1.bmp +#else + rockboxlogo.91x32x1.bmp +#endif +#endif + #endif /* HAVE_LCD_BITMAP */ diff --git a/apps/plugins/bitmaps/native/rockboxlogo.112x30x1.bmp b/apps/plugins/bitmaps/native/rockboxlogo.112x30x1.bmp Binary files differnew file mode 100644 index 0000000..c414ffb --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.112x30x1.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.128x40x16.bmp b/apps/plugins/bitmaps/native/rockboxlogo.128x40x16.bmp Binary files differnew file mode 100644 index 0000000..b7a81c5 --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.128x40x16.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.138x46x2.bmp b/apps/plugins/bitmaps/native/rockboxlogo.138x46x2.bmp Binary files differnew file mode 100644 index 0000000..4b5d7be --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.138x46x2.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.220x68x16.bmp b/apps/plugins/bitmaps/native/rockboxlogo.220x68x16.bmp Binary files differnew file mode 100644 index 0000000..1dc68a0 --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.220x68x16.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.90x28x16.bmp b/apps/plugins/bitmaps/native/rockboxlogo.90x28x16.bmp Binary files differnew file mode 100644 index 0000000..51b2ccc --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.90x28x16.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.91x32x1.bmp b/apps/plugins/bitmaps/native/rockboxlogo.91x32x1.bmp Binary files differnew file mode 100644 index 0000000..ec74318 --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.91x32x1.bmp diff --git a/apps/plugins/bitmaps/native/rockboxlogo.91x32x2.bmp b/apps/plugins/bitmaps/native/rockboxlogo.91x32x2.bmp Binary files differnew file mode 100644 index 0000000..eaf25b4 --- /dev/null +++ b/apps/plugins/bitmaps/native/rockboxlogo.91x32x2.bmp diff --git a/apps/plugins/bitmaps/remote_native/SOURCES b/apps/plugins/bitmaps/remote_native/SOURCES index a884ebb..3633f23 100644 --- a/apps/plugins/bitmaps/remote_native/SOURCES +++ b/apps/plugins/bitmaps/remote_native/SOURCES @@ -15,3 +15,10 @@ clock_smalldigits_remote.112x64x1.bmp clock_segments_remote.112x64x1.bmp clock_smallsegments_remote.112x64x1.bmp + +/* Logo */ +#if (LCD_REMOTE_DEPTH == 1) + remote_rockboxlogo.91x32x1.bmp +#elif (LCD_REMOTE_DEPTH == 2) + remote_rockboxlogo.91x32x2.bmp +#endif diff --git a/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x1.bmp b/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x1.bmp Binary files differnew file mode 100644 index 0000000..ec74318 --- /dev/null +++ b/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x1.bmp diff --git a/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x2.bmp b/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x2.bmp Binary files differnew file mode 100644 index 0000000..eaf25b4 --- /dev/null +++ b/apps/plugins/bitmaps/remote_native/remote_rockboxlogo.91x32x2.bmp |