Mercurial > hg > Game > Cerium
annotate TaskManager/Test/simple_render/spe/Load_Texture.h @ 109:028ffc9c0375 draft
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | 9f8b53beef7e |
children |
rev | line source |
---|---|
100 | 1 #ifndef INCLUDED_TASK_LOAD_TEXTURE |
2 #define INCLUDED_TASK_LOAD_TEXTURE | |
3 | |
4 | |
5 #ifndef INCLUDED_SCHED_TASK | |
6 #include "SchedTask.h" | |
7 #endif | |
8 | |
9 #define LOAD_TEXTURE 2 | |
10 | |
11 class LoadTexture: public SchedTask { | |
12 public: | |
13 LoadTexture(TaskListPtr _tlist, TaskPtr _task, | |
14 void* _rbuf, void* _wbuf, DmaManager* _con) | |
15 :SchedTask(_tlist, _task, _rbuf, _wbuf, _con) {} | |
16 int run(void *readbuf, void *writebuf); | |
17 void read(void); | |
18 void write(void); | |
19 }; | |
20 | |
21 #endif |