summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/lcd-gray.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/lcd-gray.c')
-rw-r--r--firmware/target/arm/ipod/lcd-gray.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/ipod/lcd-gray.c b/firmware/target/arm/ipod/lcd-gray.c
index b77d3eb7f6..e36a7efc1d 100644
--- a/firmware/target/arm/ipod/lcd-gray.c
+++ b/firmware/target/arm/ipod/lcd-gray.c
@@ -277,8 +277,8 @@ void lcd_mono_data(const unsigned char *data, int count);
277 277
278/* Performance function that works with an external buffer 278/* Performance function that works with an external buffer
279 note that x, bwidtht and stride are in 8-pixel units! */ 279 note that x, bwidtht and stride are in 8-pixel units! */
280void lcd_blit(const unsigned char* data, int bx, int y, int bwidth, 280void lcd_blit_mono(const unsigned char *data, int bx, int y, int bwidth,
281 int height, int stride) 281 int height, int stride)
282{ 282{
283 while (height--) 283 while (height--)
284 { 284 {
@@ -295,7 +295,7 @@ void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
295 295
296/* Performance function that works with an external buffer 296/* Performance function that works with an external buffer
297 note that bx and bwidth are in 8-pixel units! */ 297 note that bx and bwidth are in 8-pixel units! */
298void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases, 298void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
299 int bx, int y, int bwidth, int height, int stride) 299 int bx, int y, int bwidth, int height, int stride)
300{ 300{
301 while (height--) 301 while (height--)