summaryrefslogtreecommitdiff
path: root/apps/plugins/bitmaps/native/SOURCES
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bitmaps/native/SOURCES')
-rw-r--r--apps/plugins/bitmaps/native/SOURCES37
1 files changed, 25 insertions, 12 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES
index 4325da9a24..704f2ce2c4 100644
--- a/apps/plugins/bitmaps/native/SOURCES
+++ b/apps/plugins/bitmaps/native/SOURCES
@@ -369,29 +369,42 @@ pegbox_pieces.8x8x1.bmp
369#endif 369#endif
370 370
371/* Rockblox */ 371/* Rockblox */
372#if (LCD_WIDTH == 320) && (LCD_HEIGHT == 240) && (LCD_DEPTH == 16) 372#if LCD_DEPTH == 16 /* colour versions*/
373#if (LCD_WIDTH == 320) && (LCD_HEIGHT == 240)
373rockblox_background.320x240x16.bmp 374rockblox_background.320x240x16.bmp
374#elif (LCD_WIDTH == 240) && (LCD_HEIGHT == 320) && (LCD_DEPTH == 16) 375#elif (LCD_WIDTH == 240) && (LCD_HEIGHT == 320)
375rockblox_background.240x320x16.bmp 376rockblox_background.240x320x16.bmp
376#elif (LCD_WIDTH >= 220) && (LCD_HEIGHT >= 176) && (LCD_DEPTH == 16) 377#elif (LCD_WIDTH == 220) && (LCD_HEIGHT == 176)
377rockblox_background.220x176x16.bmp 378rockblox_background.220x176x16.bmp
378#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 132) && (LCD_DEPTH == 16) 379#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 220)
379rockblox_background.176x132x16.bmp
380#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 220) && (LCD_DEPTH == 16)
381rockblox_background.176x220x16.bmp 380rockblox_background.176x220x16.bmp
382#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && (LCD_DEPTH >= 16) 381#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 132)
382rockblox_background.176x132x16.bmp
383#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128)
383rockblox_background.160x128x16.bmp 384rockblox_background.160x128x16.bmp
384#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 128) && (LCD_DEPTH == 16) 385#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 128)
385rockblox_background.128x128x16.bmp 386rockblox_background.128x128x16.bmp
386#elif (LCD_WIDTH == 132) && (LCD_HEIGHT == 80) && (LCD_DEPTH == 16) 387#elif (LCD_WIDTH == 132) && (LCD_HEIGHT == 80)
387rockblox_background.132x80x16.bmp 388rockblox_background.132x80x16.bmp
388#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && (LCD_DEPTH == 2) 389#endif
390#elif LCD_DEPTH == 2 /* greyscale versions */
391#if (LCD_WIDTH == 160) && (LCD_HEIGHT == 128)
389rockblox_background.160x128x2.bmp 392rockblox_background.160x128x2.bmp
390#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) && (LCD_DEPTH == 2) 393#elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110)
391rockblox_background.138x110x2.bmp 394rockblox_background.138x110x2.bmp
392#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96) && (LCD_DEPTH == 2) 395#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 96)
393rockblox_background.128x96x2.bmp 396rockblox_background.128x96x2.bmp
394#endif 397#endif
398#elif LCD_DEPTH == 1 /* monochrome versions */
399#if (LCD_WIDTH == 160) && (LCD_HEIGHT == 128)
400rockblox_background.160x128x1.bmp
401#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 64)
402rockblox_background.128x64x1.bmp
403#elif (LCD_WIDTH == 112) && (LCD_HEIGHT == 64)
404rockblox_background.112x64x1.bmp
405#endif
406#endif /* LCD_DEPTH */
407
395 408
396/* Rockpaint */ 409/* Rockpaint */
397#ifdef HAVE_LCD_COLOR 410#ifdef HAVE_LCD_COLOR