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.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 57c9b1d3b8..669ef67f02 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -131,13 +131,9 @@ extern void lcd_yuv_blit(unsigned char * const src[3],
131 int src_x, int src_y, int stride, 131 int src_x, int src_y, int stride,
132 int x, int y, int width, int height); 132 int x, int y, int width, int height);
133#else 133#else
134struct grey_data { 134extern void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases,
135 unsigned char phase; /* SH1 uses it signed (doesn't matter for high level) */ 135 int bx, int by, int bwidth, int bheight,
136 unsigned char value; /* 0..128 are allowed */ 136 int stride);
137} __attribute__((packed));
138extern void lcd_grey_data(const struct grey_data *data, int count); /* private */
139extern void lcd_grey_phase_blit(const struct grey_data *data, int bx, int by,
140 int bwidth, int bheight, int stride);
141#endif 137#endif
142 138
143/* performance function */ 139/* performance function */