Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/spe/Set_Texture.h @ 200:efd7e4712342 draft
fix run_draw
author | gongo@localhost.localdomain |
---|---|
date | Mon, 26 Jan 2009 14:27:45 +0900 |
parents | 74d0a70f60e9 |
children | b3fb0013e6b2 |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_TASK_LOAD_TEXTURE |
2 #define INCLUDED_TASK_LOAD_TEXTURE | |
3 | |
4 #ifndef INCLUDED_SCHED_TASK | |
126
74d0a70f60e9
fix RGBA mask (bgr -> rgba)
gongo@charles.cr.ie.u-ryukyu.ac.jp
parents:
109
diff
changeset
|
5 # include "SchedTask.h" |
109 | 6 #endif |
7 | |
8 class SetTexture : public SchedTask { | |
9 public: | |
10 SchedConstructor(SetTexture); | |
11 | |
12 int run(void *rbuf, void *wbuf); | |
13 }; | |
14 | |
15 #endif | |
16 |