diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-04-14 18:15:09 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-07 14:13:48 +0100 |
| commit | 9a4686b563ac9e27615e1032792bd9878bb291f7 (patch) | |
| tree | d90ce0718b9c74d9c8b8cdad027f3a391be9abfb /apps/screen_access.c | |
| parent | 775ebe4ff6508d13712beb6bc18e546adb39f47d (diff) | |
| download | rockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.zip rockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.tar.gz rockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.tar.bz2 rockbox-9a4686b563ac9e27615e1032792bd9878bb291f7.tar.xz | |
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.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index 7ca6f8d..31a9460 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -248,8 +248,6 @@ struct screen screens[NB_SCREENS] = .vline=&lcd_vline, .hline=&lcd_hline, .scroll_step=&lcd_scroll_step, - .puts_style_xyoffset=&lcd_puts_style_xyoffset, - .puts_scroll_style_xyoffset=&lcd_puts_scroll_style_xyoffset, #endif /* HAVE_LCD_BITMAP */ #ifdef HAVE_LCD_CHARCELLS @@ -349,8 +347,6 @@ struct screen screens[NB_SCREENS] = .vline=&lcd_remote_vline, .hline=&lcd_remote_hline, .scroll_step=&lcd_remote_scroll_step, - .puts_style_xyoffset=&lcd_remote_puts_style_xyoffset, - .puts_scroll_style_xyoffset=&lcd_remote_puts_scroll_style_xyoffset, #endif /* 1 */ #if 0 /* no charcell remote LCDs so far */ |