Mercurial > hg > Game > Cerium
annotate old/simple_render/Span.h @ 1020:58b284d6506f draft
create_pp_task fix. not done.
author | tkaito |
---|---|
date | Sun, 07 Nov 2010 04:24:24 +0900 |
parents | 3bc98f6d31ff |
children |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_SPAN |
2 #define INCLUDED_SPAN | |
3 | |
4 class Span { | |
5 public: | |
6 long *tex_addr; | |
7 long tex_width; | |
8 long tex_height; | |
9 int x; | |
10 int y; | |
11 int length_x; | |
12 float start_z; | |
13 float end_z; | |
14 float tex_x1; | |
15 float tex_x2; | |
16 float tex_y1; | |
17 float tex_y2; | |
18 }; | |
19 | |
20 #endif |