1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jonathan Gordon 2010-06-13 13:54:34 +00:00
parent 93460f50ba
commit 21cbdac55f
5 changed files with 70 additions and 49 deletions

View file

@ -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;