Mercurial > hg > Members > kono > Cerium
annotate old/simple_render/test/LoadTexture/spe/Load_Texture.h @ 985:e40dd2384357
fix light data update
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 02:49:38 +0900 |
parents | 735f76483bb2 |
children |
rev | line source |
---|---|
90 | 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 |