Mercurial > hg > Members > kono > Cerium
annotate old/simple_render/Span.h @ 639:70c5c2d2eb24
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Nov 2009 18:45:24 +0900 |
parents | 735f76483bb2 |
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 |