Mercurial > hg > Members > kono > Cerium
comparison TaskManager/Test/simple_render/task/task_init.cpp @ 35:1e17e0b441a7
*** empty log message ***
author | gongo |
---|---|
date | Tue, 12 Feb 2008 19:19:06 +0900 |
parents | |
children | 70a0ac46133e |
comparison
equal
deleted
inserted
replaced
34:34dd03a8a612 | 35:1e17e0b441a7 |
---|---|
1 #include "scene_graph_pack.h" | |
2 #include "polygon.h" | |
3 #include "TaskManager.h" | |
4 | |
5 extern TaskManager *manager; | |
6 extern int create_sgp(SceneGraphPack *sgp, Polygon *sg); | |
7 extern int update_sgp(SceneGraphPack *sgp, SceneGraphPack *_sgp); | |
8 extern int create_pp(PolygonPack *pp, SceneGraphPack *sgp); | |
9 | |
10 void | |
11 task_initialize() | |
12 { | |
13 manager->set_symbol("CreateSGP", (void*)create_sgp); | |
14 manager->set_symbol("UpdateSGP", (void*)update_sgp); | |
15 manager->set_symbol("CreatePP", (void*)create_pp); | |
16 } |