comparison Renderer/Engine/viewer.h @ 1003:295b3c79fb44

game_task keep up with task_array.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Tue, 26 Oct 2010 17:29:50 +0900
parents c79651141045
children 431936c0cc96
comparison
equal deleted inserted replaced
1002:c79651141045 1003:295b3c79fb44
106 106
107 void task_array_init(int id, int task_num, int param, int inData_num, int outData_num) 107 void task_array_init(int id, int task_num, int param, int inData_num, int outData_num)
108 { 108 {
109 sgroot->task_array_init(id, task_num, param, inData_num, outData_num); 109 sgroot->task_array_init(id, task_num, param, inData_num, outData_num);
110 } 110 }
111 void task_array_finish()
112 {
113 sgroot->task_array_finish();
114 }
115 void set_game_task(int id, void *property, int size, PostFunction post_func) 111 void set_game_task(int id, void *property, int size, PostFunction post_func)
116 { 112 {
117 sgroot->set_game_task(id, property, size, post_func); 113 sgroot->set_game_task(id, property, size, post_func);
118 } 114 }
119 void set_game_task(int id, void *property, void *pad, int size, PostFunction post_func) 115 void set_game_task(int id, void *property, void *pad, int size, PostFunction post_func)
120 { 116 {
121 sgroot->set_game_task(id, property, pad, size, post_func); 117 sgroot->set_game_task(id, property, pad, size, post_func);
122 } 118 }
123 void set_move_task(SceneGraphPtr node, int move_id, void *titlep, int size, PostFunction post_func) 119 void set_move_task(SceneGraphPtr node, int move, void *titlep, int size, PostFunction post_func)
124 { 120 {
125 sgroot->set_move_task(node, move_id, titlep, size, post_func); 121 sgroot->set_move_task(node, move, titlep, size, post_func);
126 } 122 }
127 void set_pad_task(SceneGraphPtr node, int move, void *property, int size, PostFunction post_func) 123 void set_pad_task(SceneGraphPtr node, int move, void *property, int size, PostFunction post_func)
128 { 124 {
129 sgroot->set_pad_task(node, move, property, size, post_func); 125 sgroot->set_pad_task(node, move, property, size, post_func);
130 } 126 }