Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Oops, fix red.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16776 a1c6a512-1295-4272-9138-f99709370657

+3 -3
+1 -1
apps/plugin.c
··· 74 74 /* lcd */ 75 75 lcd_set_contrast, 76 76 lcd_update, 77 - lcd_update_rect, 78 77 lcd_clear_display, 79 78 lcd_setmargins, 80 79 lcd_getstringsize, ··· 93 92 lcd_double_height, 94 93 #else 95 94 &lcd_framebuffer[0][0], 95 + lcd_update_rect, 96 96 lcd_set_drawmode, 97 97 lcd_get_drawmode, 98 98 lcd_setfont,
+1 -1
apps/plugin.h
··· 144 144 /* lcd */ 145 145 void (*lcd_set_contrast)(int x); 146 146 void (*lcd_update)(void); 147 - void (*lcd_update_rect)(int x, int y, int width, int height); 148 147 void (*lcd_clear_display)(void); 149 148 void (*lcd_setmargins)(int x, int y); 150 149 int (*lcd_getstringsize)(const unsigned char *str, int *w, int *h); ··· 163 162 void (*lcd_double_height)(bool on); 164 163 #else /* HAVE_LCD_BITMAP */ 165 164 fb_data* lcd_framebuffer; 165 + void (*lcd_update_rect)(int x, int y, int width, int height); 166 166 void (*lcd_set_drawmode)(int mode); 167 167 int (*lcd_get_drawmode)(void); 168 168 void (*lcd_setfont)(int font);
+1 -1
uisimulator/common/lcd-common.c
··· 27 27 void lcd_blit_mono(const unsigned char *data, int x, int y, int width, int height, 28 28 int stride) 29 29 { 30 - (void)p_data; 30 + (void)data; 31 31 (void)x; 32 32 (void)y; 33 33 (void)width;