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 --- apps/screen_access.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'apps/screen_access.h') diff --git a/apps/screen_access.h b/apps/screen_access.h index 933a4dc692..c5684fc0c7 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -78,10 +78,6 @@ struct screen void (*setuifont)(int newfont); void (*scroll_step)(int pixels); - void (*puts_style_xyoffset)(int x, int y, const unsigned char *str, - int style, int x_offset, int y_offset); - void (*puts_scroll_style_xyoffset)(int x, int y, const unsigned char *string, - int style, int x_offset, int y_offset); void (*mono_bitmap)(const unsigned char *src, int x, int y, int width, int height); void (*mono_bitmap_part)(const unsigned char *src, int src_x, int src_y, -- cgit