summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/video/lcd-video.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/video/lcd-video.c')
-rw-r--r--firmware/target/arm/ipod/video/lcd-video.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/firmware/target/arm/ipod/video/lcd-video.c b/firmware/target/arm/ipod/video/lcd-video.c
index 0829114289..d0c82e905c 100644
--- a/firmware/target/arm/ipod/video/lcd-video.c
+++ b/firmware/target/arm/ipod/video/lcd-video.c
@@ -247,20 +247,6 @@ void lcd_init_device(void)
247 247
248/*** update functions ***/ 248/*** update functions ***/
249 249
250/* Performance function that works with an external buffer
251 note that by and bheight are in 4-pixel units! */
252void lcd_blit(const fb_data* data, int x, int by, int width,
253 int bheight, int stride)
254{
255 /* TODO: Implement lcd_blit() */
256 (void)data;
257 (void)x;
258 (void)by;
259 (void)width;
260 (void)bheight;
261 (void)stride;
262}
263
264/* Update a fraction of the display. */ 250/* Update a fraction of the display. */
265void lcd_update_rect(int x, int y, int width, int height) 251void lcd_update_rect(int x, int y, int width, int height)
266{ 252{
@@ -319,7 +305,7 @@ extern void lcd_write_yuv420_lines(unsigned char const * const src[3],
319 int stride); 305 int stride);
320 306
321/* Performance function to blit a YUV bitmap directly to the LCD */ 307/* Performance function to blit a YUV bitmap directly to the LCD */
322void lcd_yuv_blit(unsigned char * const src[3], 308void lcd_blit_yuv(unsigned char * const src[3],
323 int src_x, int src_y, int stride, 309 int src_x, int src_y, int stride,
324 int x, int y, int width, int height) 310 int x, int y, int width, int height)
325{ 311{