annotate Renderer/test_render/task/CreatePolygonFromSceneGraph.h @ 327:c8edba9cabb7
draft
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
author |
aaa |
date |
Fri, 12 Jun 2009 02:07:06 +0900 |
parents |
15bfacccde99 |
children |
|
rev |
line source |
283
|
1 #ifndef INCLUDED_CREATE_POLYGON
|
|
2 #define INCLUDED_CREATE_POLYGON
|
|
3
|
|
4 #ifndef INCLUDED_SCHED_TASK
|
|
5 # include "SchedTask.h"
|
|
6 #endif
|
|
7
|
|
8 class CreatePolygonFromSceneGraph : public SchedTask {
|
|
9 public:
|
|
10 SchedConstructor(CreatePolygonFromSceneGraph);
|
|
11
|
|
12 int run(void *rbuf, void *wbuf);
|
|
13 };
|
|
14
|
|
15 #endif
|