rk27xx: use generic fallback of lcd_blit_yuv()

Change-Id: I4d6834c8caa9037938d6291041f14cf9d2888e2b
This commit is contained in:
Marcin Bukat 2012-11-26 09:33:45 +01:00
parent 0b0d3ee650
commit 33b7ade67f
2 changed files with 10 additions and 2 deletions

View file

@ -350,7 +350,10 @@ bool lcd_active()
return display_on;
}
/* Blit a YUV bitmap directly to the LCD */
/* Blit a YUV bitmap directly to the LCD
* provided by generic fallback in lcd-16bit-common.c
*/
#if 0
void lcd_blit_yuv(unsigned char * const src[3],
int src_x, int src_y, int stride,
int x, int y, int width, int height)
@ -364,3 +367,4 @@ void lcd_blit_yuv(unsigned char * const src[3],
(void)width;
(void)height;
}
#endif

View file

@ -192,7 +192,10 @@ void lcd_update_rect(int x, int y, int width, int height)
}
}
/* Blit a YUV bitmap directly to the LCD */
/* Blit a YUV bitmap directly to the LCD
* provided by generic fallback in lcd-16bit-common.c
*/
#if 0
void lcd_blit_yuv(unsigned char * const src[3],
int src_x, int src_y, int stride,
int x, int y, int width, int height)
@ -206,3 +209,4 @@ void lcd_blit_yuv(unsigned char * const src[3],
(void)width;
(void)height;
}
#endif