summaryrefslogtreecommitdiff
path: root/firmware/target/sh/archos/lcd-archos-bitmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/sh/archos/lcd-archos-bitmap.c')
-rw-r--r--firmware/target/sh/archos/lcd-archos-bitmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/sh/archos/lcd-archos-bitmap.c b/firmware/target/sh/archos/lcd-archos-bitmap.c
index 18d48f4ead..bc17bd3950 100644
--- a/firmware/target/sh/archos/lcd-archos-bitmap.c
+++ b/firmware/target/sh/archos/lcd-archos-bitmap.c
@@ -140,8 +140,8 @@ void lcd_init_device(void)
140 140
141/* Performance function that works with an external buffer 141/* Performance function that works with an external buffer
142 note that by and bheight are in 8-pixel units! */ 142 note that by and bheight are in 8-pixel units! */
143void lcd_blit(const unsigned char* data, int x, int by, int width, 143void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
144 int bheight, int stride) 144 int bheight, int stride)
145{ 145{
146 /* Copy display bitmap to hardware */ 146 /* Copy display bitmap to hardware */
147 while (bheight--) 147 while (bheight--)
@@ -160,7 +160,7 @@ void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
160 160
161/* Performance function that works with an external buffer 161/* Performance function that works with an external buffer
162 note that by and bheight are in 8-pixel units! */ 162 note that by and bheight are in 8-pixel units! */
163void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases, 163void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
164 int x, int by, int width, int bheight, int stride) 164 int x, int by, int width, int bheight, int stride)
165{ 165{
166 stride <<= 3; /* 8 pixels per block */ 166 stride <<= 3; /* 8 pixels per block */