summaryrefslogtreecommitdiff
path: root/apps/bitmaps/native/SOURCES
blob: ba642ab7aa9a0f3b34e5d7efc45e1e855d5a6399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifdef HAVE_LCD_BITMAP

/* Rockbox logo */
#if (LCD_DEPTH == 1)
rockboxlogo.112x30x1.bmp
#elif (LCD_WIDTH == 128) && (LCD_DEPTH == 16)
rockboxlogo.128x40x16.bmp
#elif (LCD_WIDTH == 138) && (LCD_DEPTH == 2)
rockboxlogo.138x46x2.bmp
#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2)
rockboxlogo.160x53x2.bmp
#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 2)
rockboxlogo.160x53x2.bmp
#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16)
rockboxlogo.160x50x16.bmp
#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
rockboxlogo.176x54x16.bmp
#elif (LCD_WIDTH == 220) && (LCD_DEPTH == 16)
rockboxlogo.220x68x16.bmp
#elif (LCD_WIDTH == 240) && (LCD_DEPTH == 16)
rockboxlogo.240x74x16.bmp
#elif (LCD_WIDTH >= 320) && (LCD_DEPTH == 16)
rockboxlogo.320x98x16.bmp
#endif

/* USB logo */
#ifdef HAVE_LCD_COLOR
#if LCD_WIDTH > 176
usblogo.176x48x16.bmp
#elif LCD_WIDTH >= 128
usblogo.128x37x16.bmp
#endif
#elif LCD_DEPTH > 1 /* greyscale */
usblogo.128x33x2.bmp
#else /* monochrome */
#if LCD_WIDTH == 112
usblogo.100x20x1.bmp
#else
usblogo.104x27x1.bmp
#endif
#endif

#endif /* HAVE_LCD_BITMAP */