summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h4
-rw-r--r--apps/screen_access.c2
-rw-r--r--apps/screen_access.h2
4 files changed, 0 insertions, 10 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index eed3be7291..af06a4c484 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -200,7 +200,6 @@ static const struct plugin_api rockbox_api = {
200 lcd_blit_pal256, 200 lcd_blit_pal256,
201 lcd_pal256_update_pal, 201 lcd_pal256_update_pal,
202#endif 202#endif
203 lcd_puts_scroll_style,
204#ifdef HAVE_LCD_INVERT 203#ifdef HAVE_LCD_INVERT
205 lcd_set_invert_display, 204 lcd_set_invert_display,
206#endif /* HAVE_LCD_INVERT */ 205#endif /* HAVE_LCD_INVERT */
@@ -259,7 +258,6 @@ static const struct plugin_api rockbox_api = {
259 lcd_remote_mono_bitmap_part, 258 lcd_remote_mono_bitmap_part,
260 lcd_remote_mono_bitmap, 259 lcd_remote_mono_bitmap,
261 lcd_remote_putsxy, 260 lcd_remote_putsxy,
262 lcd_remote_puts_scroll_style,
263 &lcd_remote_static_framebuffer[0][0], 261 &lcd_remote_static_framebuffer[0][0],
264 lcd_remote_update, 262 lcd_remote_update,
265 lcd_remote_update_rect, 263 lcd_remote_update_rect,
diff --git a/apps/plugin.h b/apps/plugin.h
index 237d2f82ee..673ad0b8c1 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -269,8 +269,6 @@ struct plugin_api {
269 int width, int height); 269 int width, int height);
270 void (*lcd_pal256_update_pal)(fb_data *palette); 270 void (*lcd_pal256_update_pal)(fb_data *palette);
271#endif 271#endif
272 void (*lcd_puts_scroll_style)(int x, int y, const unsigned char* string,
273 int style);
274#ifdef HAVE_LCD_INVERT 272#ifdef HAVE_LCD_INVERT
275 void (*lcd_set_invert_display)(bool yesno); 273 void (*lcd_set_invert_display)(bool yesno);
276#endif /* HAVE_LCD_INVERT */ 274#endif /* HAVE_LCD_INVERT */
@@ -346,8 +344,6 @@ struct plugin_api {
346 void (*lcd_remote_mono_bitmap)(const unsigned char *src, int x, int y, 344 void (*lcd_remote_mono_bitmap)(const unsigned char *src, int x, int y,
347 int width, int height); 345 int width, int height);
348 void (*lcd_remote_putsxy)(int x, int y, const unsigned char *string); 346 void (*lcd_remote_putsxy)(int x, int y, const unsigned char *string);
349 void (*lcd_remote_puts_scroll_style)(int x, int y, const unsigned char* string,
350 int style);
351 fb_remote_data* lcd_remote_framebuffer; 347 fb_remote_data* lcd_remote_framebuffer;
352 void (*lcd_remote_update)(void); 348 void (*lcd_remote_update)(void);
353 void (*lcd_remote_update_rect)(int x, int y, int width, int height); 349 void (*lcd_remote_update_rect)(int x, int y, int width, int height);
diff --git a/apps/screen_access.c b/apps/screen_access.c
index 452e5e9501..7ca6f8d310 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -249,7 +249,6 @@ struct screen screens[NB_SCREENS] =
249 .hline=&lcd_hline, 249 .hline=&lcd_hline,
250 .scroll_step=&lcd_scroll_step, 250 .scroll_step=&lcd_scroll_step,
251 .puts_style_xyoffset=&lcd_puts_style_xyoffset, 251 .puts_style_xyoffset=&lcd_puts_style_xyoffset,
252 .puts_scroll_style=&lcd_puts_scroll_style,
253 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset, 252 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset,
254#endif /* HAVE_LCD_BITMAP */ 253#endif /* HAVE_LCD_BITMAP */
255 254
@@ -351,7 +350,6 @@ struct screen screens[NB_SCREENS] =
351 .hline=&lcd_remote_hline, 350 .hline=&lcd_remote_hline,
352 .scroll_step=&lcd_remote_scroll_step, 351 .scroll_step=&lcd_remote_scroll_step,
353 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset, 352 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset,
354 .puts_scroll_style=&lcd_remote_puts_scroll_style,
355 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset, 353 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset,
356#endif /* 1 */ 354#endif /* 1 */
357 355
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 4f1faac187..933a4dc692 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -80,8 +80,6 @@ struct screen
80 void (*scroll_step)(int pixels); 80 void (*scroll_step)(int pixels);
81 void (*puts_style_xyoffset)(int x, int y, const unsigned char *str, 81 void (*puts_style_xyoffset)(int x, int y, const unsigned char *str,
82 int style, int x_offset, int y_offset); 82 int style, int x_offset, int y_offset);
83 void (*puts_scroll_style)(int x, int y, const unsigned char *string,
84 int style);
85 void (*puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string, 83 void (*puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string,
86 int style, int x_offset, int y_offset); 84 int style, int x_offset, int y_offset);
87 void (*mono_bitmap)(const unsigned char *src, 85 void (*mono_bitmap)(const unsigned char *src,