summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-11-05 19:12:23 +0000
committerThomas Martitz <kugel@rockbox.org>2010-11-05 19:12:23 +0000
commit5411e14c57185b2b33fbfbb7ff7fec8ca2700551 (patch)
tree41149a1100c3ba708e0065cd7409c2e14ac976b2 /apps/gui
parentd98f2929e9c07505056d846d1d309f1e16694ce7 (diff)
downloadrockbox-5411e14c57185b2b33fbfbb7ff7fec8ca2700551.tar.gz
rockbox-5411e14c57185b2b33fbfbb7ff7fec8ca2700551.zip
Undo the part of r28480 that caused the simulator to also use host malloc.
We want simulators to simulate target code where possible, that includes memory constraints and memory allocation schemes. It also removed the sim's ability to show the theme's ram usage. Use malloc only in application builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28498 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_engine.c12
-rw-r--r--apps/gui/skin_engine/skin_parser.c6
2 files changed, 9 insertions, 9 deletions
diff --git a/apps/gui/skin_engine/skin_engine.c b/apps/gui/skin_engine/skin_engine.c
index 960bbdb313..25baeb2c3c 100644
--- a/apps/gui/skin_engine/skin_engine.c
+++ b/apps/gui/skin_engine/skin_engine.c
@@ -40,18 +40,18 @@
40 40
41static bool skins_initialising = true; 41static bool skins_initialising = true;
42 42
43/* Hosted platforms use the host malloc to manage the buffer */ 43/* App uses the host malloc to manage the buffer */
44#if ((CONFIG_PLATFORM&PLATFORM_HOSTED) == 0) 44#ifdef APPLICATION
45static char *skin_buffer = NULL; 45#define skin_buffer NULL
46void theme_init_buffer(void) 46void theme_init_buffer(void)
47{ 47{
48 skin_buffer = buffer_alloc(SKIN_BUFFER_SIZE);
49 skins_initialising = false; 48 skins_initialising = false;
50} 49}
51#else 50#else
52#define skin_buffer NULL 51static char *skin_buffer = NULL;
53void theme_init_buffer(void) 52void theme_init_buffer(void)
54{ 53{
54 skin_buffer = buffer_alloc(SKIN_BUFFER_SIZE);
55 skins_initialising = false; 55 skins_initialising = false;
56} 56}
57#endif 57#endif
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index c0ea3e3ca9..ad3e7e48ce 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1613,13 +1613,13 @@ bool skin_data_load(enum screen_type screen, struct wps_data *wps_data,
1613 wps_data->backdrop_id = -1; 1613 wps_data->backdrop_id = -1;
1614#endif 1614#endif
1615 /* parse the skin source */ 1615 /* parse the skin source */
1616#if ((CONFIG_PLATFORM&PLATFORM_HOSTED) == 0) 1616#ifndef APPLICATION
1617 skin_buffer_save_position(); 1617 skin_buffer_save_position();
1618#endif 1618#endif
1619 wps_data->tree = skin_parse(wps_buffer, skin_element_callback, wps_data); 1619 wps_data->tree = skin_parse(wps_buffer, skin_element_callback, wps_data);
1620 if (!wps_data->tree) { 1620 if (!wps_data->tree) {
1621 skin_data_reset(wps_data); 1621 skin_data_reset(wps_data);
1622#if ((CONFIG_PLATFORM&PLATFORM_HOSTED) == 0) 1622#ifndef APPLICATION
1623 skin_buffer_restore_position(); 1623 skin_buffer_restore_position();
1624#endif 1624#endif
1625 return false; 1625 return false;
@@ -1643,7 +1643,7 @@ bool skin_data_load(enum screen_type screen, struct wps_data *wps_data,
1643 !skin_load_fonts(wps_data)) 1643 !skin_load_fonts(wps_data))
1644 { 1644 {
1645 skin_data_reset(wps_data); 1645 skin_data_reset(wps_data);
1646#if ((CONFIG_PLATFORM&PLATFORM_HOSTED) == 0) 1646#ifndef APPLICATION
1647 skin_buffer_restore_position(); 1647 skin_buffer_restore_position();
1648#endif 1648#endif
1649 return false; 1649 return false;