comparison old/simple_render/Span.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/Span.h@5c194c71eca8
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
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