Use IRAM where appropriate when testing framerate, for more realistic results for the greyscale library.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16481 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ea92e4c2d7
commit
1509faf618
1 changed files with 4 additions and 1 deletions
|
@ -22,6 +22,8 @@
|
||||||
|
|
||||||
#ifdef HAVE_LCD_BITMAP
|
#ifdef HAVE_LCD_BITMAP
|
||||||
|
|
||||||
|
PLUGIN_IRAM_DECLARE
|
||||||
|
|
||||||
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
||||||
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
||||||
#define FPS_QUIT BUTTON_MENU
|
#define FPS_QUIT BUTTON_MENU
|
||||||
|
@ -258,7 +260,7 @@ static void time_remote_update(void)
|
||||||
|
|
||||||
#if LCD_DEPTH < 4
|
#if LCD_DEPTH < 4
|
||||||
|
|
||||||
GREY_INFO_STRUCT
|
GREY_INFO_STRUCT_IRAM
|
||||||
static unsigned char greydata[LCD_HEIGHT][LCD_WIDTH];
|
static unsigned char greydata[LCD_HEIGHT][LCD_WIDTH];
|
||||||
|
|
||||||
static void make_grey_rect(int width, int height)
|
static void make_grey_rect(int width, int height)
|
||||||
|
@ -337,6 +339,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* standard stuff */
|
/* standard stuff */
|
||||||
|
PLUGIN_IRAM_INIT(api)
|
||||||
(void)parameter;
|
(void)parameter;
|
||||||
rb = api;
|
rb = api;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue