summaryrefslogtreecommitdiff
path: root/apps/plugins/bitmaps/mono
diff options
context:
space:
mode:
authorMarianne Arnold <pixelma@rockbox.org>2009-04-07 17:56:16 +0000
committerMarianne Arnold <pixelma@rockbox.org>2009-04-07 17:56:16 +0000
commit8b13d87ec3055559ea33ea2b40225ed0cfa00788 (patch)
tree42d4b87e503c8807542d8fb120522d88de4a5c34 /apps/plugins/bitmaps/mono
parent070ee525acdf22d445eb5f5f41371f5922b675ca (diff)
downloadrockbox-8b13d87ec3055559ea33ea2b40225ed0cfa00788.tar.gz
rockbox-8b13d87ec3055559ea33ea2b40225ed0cfa00788.zip
Invadrox - some bitmap related changes in preparation of porting it to more screen resolutions, should not be visible to the user: (1) Use single bitmaps (or strips where possible) instead of one big bitmap each, so instructions and defines how to take the bitmap apart aren't needed. It's more flexible and makes it possible to (2) get some width/height variables directly from the bitmaps. (3) Use background images for static items. Both reduces the number of hardcoded values noticeably. (4) Make the 'fire_sprite' an external bitmap too - with help of Jens -. (5) Rename 'TINY_GRAPHICS' to 'SMALL_GRAPHICS' to have this name available for even smaller images (which is planned).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20646 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps/mono')
-rw-r--r--apps/plugins/bitmaps/mono/SOURCES9
-rw-r--r--apps/plugins/bitmaps/mono/invadrox_fire.6x6x1.bmpbin0 -> 86 bytes
-rw-r--r--apps/plugins/bitmaps/mono/invadrox_fire.8x8x1.bmpbin0 -> 94 bytes
3 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/mono/SOURCES b/apps/plugins/bitmaps/mono/SOURCES
index a109405bc9..63ac5adf74 100644
--- a/apps/plugins/bitmaps/mono/SOURCES
+++ b/apps/plugins/bitmaps/mono/SOURCES
@@ -37,6 +37,15 @@ flipit_cursor.16x13x1.bmp
37#endif 37#endif
38#endif 38#endif
39 39
40/* Invadrox, not on monochrome targets yet */
41#if LCD_DEPTH > 1
42#if LCD_WIDTH >= 220
43invadrox_fire.8x8x1.bmp
44#elif LCD_WIDTH >= 160
45invadrox_fire.6x6x1.bmp
46#endif
47#endif
48
40#if CONFIG_CODEC == SWCODEC 49#if CONFIG_CODEC == SWCODEC
41/* MPEGplayer */ 50/* MPEGplayer */
42mpegplayer_status_icons_8x8x1.bmp 51mpegplayer_status_icons_8x8x1.bmp
diff --git a/apps/plugins/bitmaps/mono/invadrox_fire.6x6x1.bmp b/apps/plugins/bitmaps/mono/invadrox_fire.6x6x1.bmp
new file mode 100644
index 0000000000..8fac78d84e
--- /dev/null
+++ b/apps/plugins/bitmaps/mono/invadrox_fire.6x6x1.bmp
Binary files differ
diff --git a/apps/plugins/bitmaps/mono/invadrox_fire.8x8x1.bmp b/apps/plugins/bitmaps/mono/invadrox_fire.8x8x1.bmp
new file mode 100644
index 0000000000..76216bac9d
--- /dev/null
+++ b/apps/plugins/bitmaps/mono/invadrox_fire.8x8x1.bmp
Binary files differ