00001 #ifndef INCLUDED_SPAN 00002 #define INCLUDED_SPAN 00003 00004 class Span { 00005 public: 00006 long *tex_addr; 00007 long tex_width; 00008 long tex_height; 00009 int x; 00010 int y; 00011 int length_x; 00012 float start_z; 00013 float end_z; 00014 float tex_x1; 00015 float tex_x2; 00016 float tex_y1; 00017 float tex_y2; 00018 }; 00019 00020 #endif