A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 85 lines 2.3 kB view raw
1/* Rockbox logo */ 2#if (LCD_DEPTH == 1) 3#if (LCD_WIDTH == 160) 4rockboxlogo.160x53x1.bmp 5#elif (LCD_WIDTH == 128) 6rockboxlogo.128x42x1.bmp 7#else 8rockboxlogo.112x30x1.bmp 9#endif 10#elif (LCD_WIDTH == 96) && (LCD_DEPTH >= 16) 11rockboxlogo.96x30x16.bmp 12#elif (LCD_WIDTH == 128) && (LCD_DEPTH == 2) 13rockboxlogo.128x42x2.bmp 14#elif (LCD_WIDTH == 128) && (LCD_DEPTH >= 16) 15rockboxlogo.128x40x16.bmp 16#elif (LCD_WIDTH == 132) && (LCD_DEPTH >= 16) 17rockboxlogo.132x40x16.bmp 18#elif (LCD_WIDTH == 138) && (LCD_DEPTH >= 2) 19rockboxlogo.138x46x2.bmp 20#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2) 21rockboxlogo.160x53x2.bmp 22#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 2) 23rockboxlogo.160x53x2.bmp 24#elif (LCD_WIDTH == 160) && (LCD_DEPTH >= 16) 25rockboxlogo.160x50x16.bmp 26#elif (LCD_WIDTH == 176) && (LCD_DEPTH >= 16) 27rockboxlogo.176x54x16.bmp 28#elif (LCD_WIDTH == 220) && (LCD_DEPTH >= 16) 29rockboxlogo.220x68x16.bmp 30#elif (LCD_WIDTH == 240) && (LCD_DEPTH >= 16) 31rockboxlogo.240x74x16.bmp 32#elif (LCD_WIDTH >= 320) && (LCD_WIDTH < 480) && (LCD_DEPTH >= 16) 33rockboxlogo.320x98x16.bmp 34#elif (LCD_WIDTH >= 480) && (LCD_WIDTH < 640) && (LCD_DEPTH >= 16) 35rockboxlogo.480x149x16.bmp 36#elif (LCD_WIDTH >= 640) && (LCD_DEPTH >= 16) 37rockboxlogo.640x198x16.bmp 38#endif 39 40/* The Sony NWZ linux bootloader needs icons to display a menu */ 41#if defined(BOOTLOADER) 42#if defined(SONY_NWZ_LINUX) 43rockboxicon.130x130x16.bmp 44toolsicon.130x130x16.bmp 45#elif defined(AGPTEK_ROCKER) 46hibyicon.70x70x16.bmp 47rockboxicon.70x70x16.bmp 48toolsicon.70x70x16.bmp 49#elif (defined(XDUOO_X3II) || defined(XDUOO_X20) || defined(EROS_Q) || defined(SURFANS_F28)) 50hibyicon.130x130x16.bmp 51rockboxicon.130x130x16.bmp 52toolsicon.130x130x16.bmp 53#elif defined(FIIO_M3K_LINUX) 54fiioicon.130x130x16.bmp 55rockboxicon.130x130x16.bmp 56toolsicon.130x130x16.bmp 57#endif 58#endif 59 60#ifndef BOOTLOADER /* We don't need these for the bootloader */ 61 62/* USB logo */ 63#ifdef HAVE_LCD_COLOR 64#if LCD_WIDTH > 176 65usblogo.176x48x16.bmp 66#elif LCD_WIDTH >= 128 67usblogo.128x37x16.bmp 68#elif LCD_WIDTH >= 88 69usblogo.88x24x16.bmp 70#endif 71#elif LCD_DEPTH > 1 /* greyscale */ 72#ifdef IPOD_1G2G /* use firewire logo */ 73usblogo.fw.128x39x2.bmp 74#else 75usblogo.128x33x2.bmp 76#endif 77#else /* monochrome */ 78#if LCD_WIDTH == 112 79usblogo.100x20x1.bmp 80#else 81usblogo.104x27x1.bmp 82#endif 83#endif 84 85#endif /* BOOTLOADER */