annotate TaskManager/Test/test_render/task/create_sgp.hpp @ 354:81b25e5d5379
add example/get_segment and change spe/DrawSpan.cpp
author |
koba |
date |
Wed, 15 Jul 2009 17:39:51 +0900 |
parents |
5c194c71eca8 |
children |
|
rev |
line source |
109
|
1 #ifndef INCLUDED_TASK_LOAD_TEXTURE
|
|
2 #define INCLUDED_TASK_LOAD_TEXTURE
|
|
3
|
|
4 #ifndef INCLUDED_SCHED_TASK
|
|
5 #include "SchedTask.h"
|
|
6 #endif
|
|
7
|
|
8 class Create_SGP : public SchedTask {
|
|
9 public:
|
|
10 SchedConstructor(Create_SGP);
|
|
11
|
|
12 int run(void *rbuf, void *wbuf);
|
|
13 };
|
|
14
|
|
15 #endif
|