Mercurial > hg > Game > Cerium
annotate Renderer/Engine/task/Switch.cc @ 898:302ebfc75a79 draft
merge
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 16 Jul 2010 19:00:49 +0900 |
parents | 3bc98f6d31ff |
children |
rev | line source |
---|---|
539 | 1 #include <stdlib.h> |
2 #include <string.h> | |
3 #include "Switch.h" | |
4 #include "viewer_types.h" | |
5 #include "SceneGraphRoot.h" | |
6 | |
7 SchedDefineTask(Switch); | |
8 | |
9 static int | |
10 run(SchedTask *s,void *rbuf, void *wbuf) | |
11 { | |
12 // 配列にする | |
13 // SceneGraphRootPtr tmp = sgroot; | |
14 // sgroot = sgroot_2; | |
15 // sgroot_2 = tmp; | |
16 | |
17 return 0; | |
18 } |