From 9a4686b563ac9e27615e1032792bd9878bb291f7 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Sun, 14 Apr 2013 18:15:09 +0200 Subject: 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 --- firmware/drivers/lcd-bitmap-common.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'firmware/drivers/lcd-bitmap-common.c') diff --git a/firmware/drivers/lcd-bitmap-common.c b/firmware/drivers/lcd-bitmap-common.c index 14c63ec471..330639fd87 100644 --- a/firmware/drivers/lcd-bitmap-common.c +++ b/firmware/drivers/lcd-bitmap-common.c @@ -445,7 +445,7 @@ static void LCDFN(putsxyofs_style)(int xpos, int ypos, /*** Line oriented text output ***/ -void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str, +static void LCDFN(putsofs_style)(int x, int y, const unsigned char *str, int style, int x_offset, int y_offset) { int xpos, ypos, h; @@ -469,7 +469,7 @@ void LCDFN(puts_style_xyoffset)(int x, int y, const unsigned char *str, void LCDFN(puts)(int x, int y, const unsigned char *str) { - LCDFN(puts_style_xyoffset)(x, y, str, STYLE_DEFAULT, 0, 0); + LCDFN(putsofs_style)(x, y, str, STYLE_DEFAULT, 0, 0); } /* Formatting version of LCDFN(puts) */ @@ -582,13 +582,6 @@ static void LCDFN(puts_scroll_worker)(int x, int y, const unsigned char *string, } } -void LCDFN(puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string, - int style, int x_offset, int y_offset) -{ - LCDFN(puts_scroll_worker)(x, y, string, style, x_offset, y_offset, - true, LCDFN(scroll_fn), NULL); -} - void LCDFN(putsxy_scroll_func)(int x, int y, const unsigned char *string, void (*scroll_func)(struct scrollinfo *), void *data, int x_offset) -- cgit v1.2.3