forked from len0rd/rockbox
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
This commit is contained in:
parent
99c0978faa
commit
68a21689ae
31 changed files with 272 additions and 405 deletions
|
|
@ -192,7 +192,7 @@ static void time_main_yuv(void)
|
|||
time_start = *rb->current_tick;
|
||||
while((time_end = *rb->current_tick) - time_start < DURATION)
|
||||
{
|
||||
rb->lcd_yuv_blit(yuvbuf, 0, 0, YUV_WIDTH,
|
||||
rb->lcd_blit_yuv(yuvbuf, 0, 0, YUV_WIDTH,
|
||||
0, 0, YUV_WIDTH, YUV_HEIGHT);
|
||||
frame_count++;
|
||||
}
|
||||
|
|
@ -208,7 +208,7 @@ static void time_main_yuv(void)
|
|||
time_start = *rb->current_tick;
|
||||
while((time_end = *rb->current_tick) - time_start < DURATION)
|
||||
{
|
||||
rb->lcd_yuv_blit(yuvbuf, 0, 0, YUV_WIDTH,
|
||||
rb->lcd_blit_yuv(yuvbuf, 0, 0, YUV_WIDTH,
|
||||
part14_x, part14_y, part14_w, part14_h);
|
||||
frame_count++;
|
||||
}
|
||||
|
|
@ -260,7 +260,7 @@ static void time_remote_update(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if LCD_DEPTH < 4
|
||||
#if (LCD_DEPTH < 4) && !defined(IAUDIO_M3)
|
||||
|
||||
GREY_INFO_STRUCT_IRAM
|
||||
static unsigned char greydata[LCD_HEIGHT][LCD_WIDTH];
|
||||
|
|
@ -357,7 +357,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
log_text("Main LCD YUV");
|
||||
time_main_yuv();
|
||||
#endif
|
||||
#if LCD_DEPTH < 4
|
||||
#if (LCD_DEPTH < 4) && !defined(IAUDIO_M3)
|
||||
log_text("Greyscale library");
|
||||
time_greyscale();
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue