comparison TaskManager/Test/simple_render/Span.h @ 109:5c194c71eca8

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents
children
comparison
equal deleted inserted replaced
108:6f3b3dd3c095 109:5c194c71eca8
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