Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/spe/CreateSpan.h @ 161:1f4c3f3238e6 fullHD_omedetou
texture の座標がマイナスになったあと、それを 0 にし忘れてた
author | gongo@localhost.localdomain |
---|---|
date | Mon, 08 Dec 2008 16:37:02 +0900 |
parents | fc314f28b66e |
children | 38cbb7aecc70 |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_CREATE_SPAN |
2 #define INCLUDED_CREATE_SPAN | |
3 | |
4 #ifndef INCLUDED_SCHED_TASK | |
5 # include "SchedTask.h" | |
6 #endif | |
7 | |
8 #ifndef INCLUDED_POLYGON_PACK | |
9 # include "polygon_pack.h" | |
10 #endif | |
11 | |
12 #ifndef INCLUDED_SPAN_PACK | |
13 # include "SpanPack.h" | |
14 #endif | |
15 | |
16 class CreateSpan : public SchedTask { | |
17 public: | |
18 SchedConstructor(CreateSpan); | |
19 | |
20 int run(void *rbuf, void *wbuf); | |
21 void half_triangle(SpanPackPtr *spackList, | |
22 int charge_y_top, int charge_y_end, | |
23 long *tex_addr, long tex_width, long tex_height, | |
24 VertexPack *vMin,VertexPack *vMid,VertexPack *vMid1); | |
161
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
141
diff
changeset
|
25 void setTileInfoList(SpanPtr span); |
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
141
diff
changeset
|
26 void setTileInfo(TileInfoPtr tile, int xpos, int ypos, |
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
141
diff
changeset
|
27 int tex_width, uint32* tex_addr_top); |
109 | 28 }; |
29 | |
30 #endif |