summaryrefslogtreecommitdiff
path: root/firmware/target/arm/iriver/h10/lcd-h10.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/iriver/h10/lcd-h10.c')
-rw-r--r--firmware/target/arm/iriver/h10/lcd-h10.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/firmware/target/arm/iriver/h10/lcd-h10.c b/firmware/target/arm/iriver/h10/lcd-h10.c
index 022dc22208..7367bdc09b 100644
--- a/firmware/target/arm/iriver/h10/lcd-h10.c
+++ b/firmware/target/arm/iriver/h10/lcd-h10.c
@@ -155,14 +155,26 @@ void lcd_blit(const fb_data* data, int x, int by, int width,
155 (void)stride; 155 (void)stride;
156} 156}
157 157
158 158void lcd_yuv_blit(unsigned char * const src[3],
159 int src_x, int src_y, int stride,
160 int x, int y, int width, int height)
161{
162 (void)src;
163 (void)src_x;
164 (void)src_y;
165 (void)stride;
166 (void)x;
167 (void)y;
168 (void)width;
169 (void)height;
170}
159 171
160 172
161/* Update a fraction of the display. */ 173/* Update a fraction of the display. */
162void lcd_update_rect(int x, int y, int width, int height) 174void lcd_update_rect(int x, int y, int width, int height)
163{ 175{
164 int y0, x0, y1, x1; 176 int y0, x0, y1, x1;
165 int newx,newwidth; 177 /*int newx,newwidth;*/
166 178
167 unsigned long *addr = (unsigned long *)lcd_framebuffer; 179 unsigned long *addr = (unsigned long *)lcd_framebuffer;
168 180