summaryrefslogtreecommitdiff
path: root/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/iriver/h10/lcd-h10_5gb.c')
-rw-r--r--firmware/target/arm/iriver/h10/lcd-h10_5gb.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/firmware/target/arm/iriver/h10/lcd-h10_5gb.c b/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
index 8972fd1e9c..5b022e09c5 100644
--- a/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
+++ b/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
@@ -112,20 +112,6 @@ void lcd_init_device(void)
112 112
113/*** update functions ***/ 113/*** update functions ***/
114 114
115/* Performance function that works with an external buffer
116 note that by and bheight are in 4-pixel units! */
117void lcd_blit(const fb_data* data, int x, int by, int width,
118 int bheight, int stride)
119{
120 /* TODO: Implement lcd_blit() */
121 (void)data;
122 (void)x;
123 (void)by;
124 (void)width;
125 (void)bheight;
126 (void)stride;
127}
128
129#define CSUB_X 2 115#define CSUB_X 2
130#define CSUB_Y 2 116#define CSUB_Y 2
131 117
@@ -141,7 +127,7 @@ void lcd_blit(const fb_data* data, int x, int by, int width,
141#define ROUNDOFFSG (63*257) 127#define ROUNDOFFSG (63*257)
142 128
143/* Performance function to blit a YUV bitmap directly to the LCD */ 129/* Performance function to blit a YUV bitmap directly to the LCD */
144void lcd_yuv_blit(unsigned char * const src[3], 130void lcd_blit_yuv(unsigned char * const src[3],
145 int src_x, int src_y, int stride, 131 int src_x, int src_y, int stride,
146 int x, int y, int width, int height) 132 int x, int y, int width, int height)
147{ 133{