Mercurial > hg > Game > Cerium
annotate TaskManager/test/SetCpuTest/gpu/task_init.cc @ 1727:e99dc86d39e2 draft
minor fix
author | Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 30 Oct 2013 19:05:38 +0900 |
parents | 39a381fec1e7 |
children |
rev | line source |
---|---|
1727 | 1 #include "Func.h" |
1628 | 2 #include "GpuScheduler.h" |
3 | |
1631 | 4 SchedExternTask(Twice); |
5 | |
1628 | 6 void |
1631 | 7 gpu_task_init(void) |
8 { | |
1727 | 9 GpuSchedRegister(TWICE_TASK, "gpu/twice.cl", "twice"); |
1628 | 10 } |
1631 | 11 |
12 void task_init(void) | |
13 { | |
1727 | 14 SchedRegisterTask(TWICE_TASK,Twice); |
1631 | 15 } |