summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/x5/lcd-x5.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/coldfire/iaudio/x5/lcd-x5.c')
-rw-r--r--firmware/target/coldfire/iaudio/x5/lcd-x5.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/firmware/target/coldfire/iaudio/x5/lcd-x5.c b/firmware/target/coldfire/iaudio/x5/lcd-x5.c
index 5ca2cb508c..19faf0474d 100644
--- a/firmware/target/coldfire/iaudio/x5/lcd-x5.c
+++ b/firmware/target/coldfire/iaudio/x5/lcd-x5.c
@@ -407,21 +407,6 @@ void lcd_sleep(void)
407 407
408/*** update functions ***/ 408/*** update functions ***/
409 409
410/* Performance function that works with an external buffer
411 note that by and bheight are in 8-pixel units! */
412void lcd_blit(const fb_data* data, int x, int by, int width,
413 int bheight, int stride)
414{
415 /* TODO: Implement lcd_blit() */
416 (void)data;
417 (void)x;
418 (void)by;
419 (void)width;
420 (void)bheight;
421 (void)stride;
422 /*if(display_on)*/
423}
424
425/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. 410/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420.
426 * y should have two lines of Y back to back, 2nd line first. 411 * y should have two lines of Y back to back, 2nd line first.
427 * c should contain the Cb and Cr data for the two lines of Y back to back. 412 * c should contain the Cb and Cr data for the two lines of Y back to back.
@@ -434,7 +419,7 @@ extern void lcd_write_yuv420_lines(const unsigned char *y,
434 * src_x, src_y, width and height should be even and within the LCD's 419 * src_x, src_y, width and height should be even and within the LCD's
435 * boundaries. 420 * boundaries.
436 */ 421 */
437void lcd_yuv_blit(unsigned char * const src[3], 422void lcd_blit_yuv(unsigned char * const src[3],
438 int src_x, int src_y, int stride, 423 int src_x, int src_y, int stride,
439 int x, int y, int width, int height) 424 int x, int y, int width, int height)
440{ 425{