Mercurial > hg > Game > Cerium
view TaskManager/Test/test_render/spe/CreateSpan.h @ 172:973be8571888 draft
CreateSpan に getScale を追加
author | gongo@localhost.localdomain |
---|---|
date | Thu, 11 Dec 2008 12:04:14 +0900 |
parents | dc7d10ae7460 |
children | 2c7d9057dd5d |
line wrap: on
line source
#ifndef INCLUDED_CREATE_SPAN #define INCLUDED_CREATE_SPAN #ifndef INCLUDED_SCHED_TASK # include "SchedTask.h" #endif #ifndef INCLUDED_POLYGON_PACK # include "polygon_pack.h" #endif #ifndef INCLUDED_SPAN_PACK # include "SpanPack.h" #endif class CreateSpan : public SchedTask { public: SchedConstructor(CreateSpan); int run(void *rbuf, void *wbuf); void half_triangle(SpanPackPtr *spackList, int charge_y_top, int charge_y_end, uint32 *tex_addr, int tex_width, int tex_height, VertexPack *vMin,VertexPack *vMid,VertexPack *vMid1, int y_length); void setTileInfoList(SpanPtr span); void setTileInfo(TileInfoPtr tile, int xpos, int ypos, int tex_width, uint32* tex_addr_top); }; #endif