summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 7456aa77a9..6a6a8e8697 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -57,8 +57,8 @@ extern void lcd_icon(int icon, bool enable);
57 57
58#if defined(SIMULATOR) || defined(HAVE_LCD_BITMAP) 58#if defined(SIMULATOR) || defined(HAVE_LCD_BITMAP)
59/* performance function */ 59/* performance function */
60extern void lcd_blit(const unsigned char* p_data, int x, int y, int width, 60extern void lcd_blit(const unsigned char* data, int x, int by, int width,
61 int height, int stride); 61 int bheight, int stride);
62 62
63extern void lcd_update(void); 63extern void lcd_update(void);
64/* update a fraction of the screen */ 64/* update a fraction of the screen */
@@ -150,8 +150,9 @@ extern void lcd_hline(int x1, int x2, int y);
150extern void lcd_vline(int x, int y1, int y2); 150extern void lcd_vline(int x, int y1, int y2);
151extern void lcd_drawrect(int x, int y, int width, int height); 151extern void lcd_drawrect(int x, int y, int width, int height);
152extern void lcd_fillrect(int x, int y, int width, int height); 152extern void lcd_fillrect(int x, int y, int width, int height);
153extern void lcd_bitmap(const unsigned char *src, int x, int y, int nx, int ny, 153extern void lcd_bitmap_part(const unsigned char *src, int src_x, int src_y,
154 bool clear); 154 int stride, int x, int y, int width, int height);
155extern void lcd_bitmap(const unsigned char *src, int x, int y, int nx, int ny);
155extern void lcd_putsxy(int x, int y, const unsigned char *string); 156extern void lcd_putsxy(int x, int y, const unsigned char *string);
156 157
157extern void lcd_invertscroll(int x, int y); 158extern void lcd_invertscroll(int x, int y);