summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tatung
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tatung')
-rw-r--r--firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c b/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
index 53f32792c3..d563d55017 100644
--- a/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
+++ b/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
@@ -51,22 +51,8 @@ void lcd_init_device(void)
51 51
52/*** update functions ***/ 52/*** update functions ***/
53 53
54/* Performance function that works with an external buffer
55 note that by and bheight are in 4-pixel units! */
56void lcd_blit(const fb_data* data, int x, int by, int width,
57 int bheight, int stride)
58{
59 /* TODO: Implement lcd_blit() */
60 (void)data;
61 (void)x;
62 (void)by;
63 (void)width;
64 (void)bheight;
65 (void)stride;
66}
67
68/* Performance function to blit a YUV bitmap directly to the LCD */ 54/* Performance function to blit a YUV bitmap directly to the LCD */
69void lcd_yuv_blit(unsigned char * const src[3], 55void lcd_blit_yuv(unsigned char * const src[3],
70 int src_x, int src_y, int stride, 56 int src_x, int src_y, int stride,
71 int x, int y, int width, int height) 57 int x, int y, int width, int height)
72{ 58{