Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/spe/spe-main.cc @ 422:217258e3d148 draft
change spe/*.cpp -> spe/*.cc
author | hiroki@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 24 Sep 2009 15:26:58 +0900 |
parents | TaskManager/Test/test_render/spe/spe-main.cpp@208ba3551474 |
children | 19524a506039 |
rev | line source |
---|---|
109 | 1 #include "../Func.h" |
2 #include "SchedTask.h" | |
3 | |
4 SchedExternTask(LoadTexture); | |
5 SchedExternTask(SetTexture); | |
6 SchedExternTask(DrawSpan); | |
184 | 7 SchedExternTask(DrawSpanRenew); |
109 | 8 SchedExternTask(DrawBack); |
9 | |
395 | 10 SchedExternTask(ChainCal); |
11 SchedExternTask(ChainInit); | |
12 | |
109 | 13 SchedExternTask(CreateSpan); |
138 | 14 //SchedExternTask(CreatePolygon); |
109 | 15 |
326
fbd7337bf220
add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
184
diff
changeset
|
16 SchedExternTask(ShowTime); |
fbd7337bf220
add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
184
diff
changeset
|
17 |
109 | 18 void |
19 task_init(void) | |
20 { | |
21 SchedRegisterTask(TASK_INIT_TEXTURE, LoadTexture); | |
22 SchedRegisterTask(TASK_SET_TEXTURE, SetTexture); | |
23 SchedRegisterTask(TASK_DRAW_SPAN, DrawSpan); | |
395 | 24 |
25 SchedRegisterTask(CHAINCAL_TASK, ChainCal); | |
26 SchedRegisterTask(CHAININIT_TASK, ChainInit); | |
389 | 27 #if 0 |
184 | 28 SchedRegisterTask(TASK_DRAW_SPAN2, DrawSpanRenew); |
389 | 29 #endif |
109 | 30 SchedRegisterTask(TASK_DRAW_BACK, DrawBack); |
31 | |
32 SchedRegisterTask(TASK_CREATE_SPAN, CreateSpan); | |
138 | 33 //SchedRegisterTask(TASK_CREATE_PP, CreatePolygon); |
326
fbd7337bf220
add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
184
diff
changeset
|
34 |
fbd7337bf220
add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
184
diff
changeset
|
35 SchedRegisterTask(SHOW_TIME, ShowTime); |
109 | 36 } |