summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/m3/lcd-m3.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/coldfire/iaudio/m3/lcd-m3.c')
-rw-r--r--firmware/target/coldfire/iaudio/m3/lcd-m3.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/firmware/target/coldfire/iaudio/m3/lcd-m3.c b/firmware/target/coldfire/iaudio/m3/lcd-m3.c
index b8c410b321..b1e81f91ba 100644
--- a/firmware/target/coldfire/iaudio/m3/lcd-m3.c
+++ b/firmware/target/coldfire/iaudio/m3/lcd-m3.c
@@ -428,6 +428,35 @@ void lcd_init_device(void)
428#endif 428#endif
429} 429}
430 430
431/* TODO: implement blit functions */
432
433/* Performance function that works with an external buffer
434 note that by and bheight are in 8-pixel units! */
435void lcd_blit(const fb_data *data, int x, int by, int width,
436 int bheight, int stride)
437{
438 (void)data;
439 (void)x;
440 (void)by;
441 (void)width;
442 (void)bheight;
443 (void)stride;
444}
445
446/* Performance function that works with an external buffer
447 note that by and bheight are in 8-pixel units! */
448void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases,
449 int x, int by, int width, int bheight, int stride)
450{
451 (void)values;
452 (void)phases;
453 (void)x;
454 (void)by;
455 (void)width;
456 (void)bheight;
457 (void)stride;
458}
459
431/* Update the display. 460/* Update the display.
432 This must be called after all other LCD functions that change the display. */ 461 This must be called after all other LCD functions that change the display. */
433void lcd_update(void) ICODE_ATTR; 462void lcd_update(void) ICODE_ATTR;