summaryrefslogtreecommitdiff
path: root/apps/screen_access.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-14 18:15:09 +0200
committerThomas Martitz <kugel@rockbox.org>2014-01-07 14:13:48 +0100
commit9a4686b563ac9e27615e1032792bd9878bb291f7 (patch)
treed90ce0718b9c74d9c8b8cdad027f3a391be9abfb /apps/screen_access.c
parent775ebe4ff6508d13712beb6bc18e546adb39f47d (diff)
downloadrockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.tar.gz
rockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.zip
lcd-common/scroll_engine: Remove unused functions lcd_puts_style_xyoffset() and lcd_puts_scroll_style_xyoffset().
With this functions removed there is no exported function in firmware left that draws line decorations. Also no function supports specifying an y-offset anymore (was used for pixel accurate positioning of otherwise strictly line-based API calls). Both should be handled in apps/ now. Change-Id: Iba4b28ccc6e686c7db63e34b51ad4badae983fce
Diffstat (limited to 'apps/screen_access.c')
-rw-r--r--apps/screen_access.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index 7ca6f8d310..31a946080c 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -248,8 +248,6 @@ struct screen screens[NB_SCREENS] =
248 .vline=&lcd_vline, 248 .vline=&lcd_vline,
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,
252 .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset,
253#endif /* HAVE_LCD_BITMAP */ 251#endif /* HAVE_LCD_BITMAP */
254 252
255#ifdef HAVE_LCD_CHARCELLS 253#ifdef HAVE_LCD_CHARCELLS
@@ -349,8 +347,6 @@ struct screen screens[NB_SCREENS] =
349 .vline=&lcd_remote_vline, 347 .vline=&lcd_remote_vline,
350 .hline=&lcd_remote_hline, 348 .hline=&lcd_remote_hline,
351 .scroll_step=&lcd_remote_scroll_step, 349 .scroll_step=&lcd_remote_scroll_step,
352 .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset,
353 .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset,
354#endif /* 1 */ 350#endif /* 1 */
355 351
356#if 0 /* no charcell remote LCDs so far */ 352#if 0 /* no charcell remote LCDs so far */