comparison old/simple_render/spe/Load_Texture.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/spe/Load_Texture.h@9f8b53beef7e
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
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