summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/gigabeat-s
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-03-24 00:35:53 +0000
committerJens Arnold <amiconn@rockbox.org>2008-03-24 00:35:53 +0000
commit68a21689aef3a81335456476d4d10860ef5bc6b3 (patch)
treea57b6c31e4edd13e178da276344d33b172796456 /firmware/target/arm/imx31/gigabeat-s
parent99c0978faa94b0e2fabe5d06000a10c8d48e7a0c (diff)
downloadrockbox-68a21689aef3a81335456476d4d10860ef5bc6b3.tar.gz
rockbox-68a21689aef3a81335456476d4d10860ef5bc6b3.zip
Consistent naming scheme the various blit functions. * Removed lcd_blit_mono() for colour targets. Plugin API became incompatible, so sort, clean up & bump. * Implemented lcd_blit_mono() for M3.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16775 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/gigabeat-s')
-rw-r--r--firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c b/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
index b39ddbe77d..07258fa123 100644
--- a/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
+++ b/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
@@ -174,7 +174,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
174/* Performance function to blit a YUV bitmap directly to the LCD */ 174/* Performance function to blit a YUV bitmap directly to the LCD */
175/* For the Gigabeat - show it rotated */ 175/* For the Gigabeat - show it rotated */
176/* So the LCD_WIDTH is now the height */ 176/* So the LCD_WIDTH is now the height */
177void lcd_yuv_blit(unsigned char * const src[3], 177void lcd_blit_yuv(unsigned char * const src[3],
178 int src_x, int src_y, int stride, 178 int src_x, int src_y, int stride,
179 int x, int y, int width, int height) 179 int x, int y, int width, int height)
180{ 180{
@@ -235,18 +235,6 @@ void lcd_set_invert_display(bool yesno) {
235 // TODO: 235 // TODO:
236} 236}
237 237
238void lcd_blit(const fb_data* data, int bx, int y, int bwidth,
239 int height, int stride)
240{
241 (void) data;
242 (void) bx;
243 (void) y;
244 (void) bwidth;
245 (void) height;
246 (void) stride;
247 //TODO:
248}
249
250void lcd_set_flip(bool yesno) { 238void lcd_set_flip(bool yesno) {
251 (void) yesno; 239 (void) yesno;
252 // TODO: 240 // TODO: