summaryrefslogtreecommitdiff
path: root/utils/newparser/newparser.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-13 13:54:34 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-13 13:54:34 +0000
commit21cbdac55fc0894dba81cd3d81ba3eba86d1c60e (patch)
treea00da2dd847b18036e12ee717b0fc90fccdfbb24 /utils/newparser/newparser.c
parent93460f50ba07a00f60105706b54bf6264309f109 (diff)
downloadrockbox-21cbdac55fc0894dba81cd3d81ba3eba86d1c60e.zip
rockbox-21cbdac55fc0894dba81cd3d81ba3eba86d1c60e.tar.gz
rockbox-21cbdac55fc0894dba81cd3d81ba3eba86d1c60e.tar.bz2
rockbox-21cbdac55fc0894dba81cd3d81ba3eba86d1c60e.tar.xz
get the renderer working more better! "handle" sublines correctly, dont "draw" in the first viewport if we are using viewports, get rid of the idea of a linear token array (i.e we are going to use the parse tree directly)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26831 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/newparser/newparser.c')
-rw-r--r--utils/newparser/newparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/newparser/newparser.c b/utils/newparser/newparser.c
index 2f58b64..4baf4ae 100644
--- a/utils/newparser/newparser.c
+++ b/utils/newparser/newparser.c
@@ -73,8 +73,8 @@ int main(int argc, char* argv[])
struct skin_element* tree = skin_parse(buffer);
struct skin skin;
+ handle_tree(&skin, tree);
skin_render(tree);
- //handle_tree(&skin, tree);
skin_free_tree(tree);
return 0;