Mercurial > hg > Game > Cerium
diff TaskManager/Test/simple_pack/span_pack.h @ 68:35a6cf176c38
*** empty log message ***
author | chiaki |
---|---|
date | Sun, 17 Feb 2008 21:45:07 +0900 (2008-02-17) |
parents | |
children | c9b973f0673e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TaskManager/Test/simple_pack/span_pack.h Sun Feb 17 21:45:07 2008 +0900 @@ -0,0 +1,27 @@ +#ifndef INCLUDE_SPAN_PACK +#define INCLUDE_SPAN_PACK + +typedef struct Span { + long *tex_addr, tex_width, tex_height; + int x, y, length_x; + float start_z, end_z; + float tex_x1, tex_x2, tex_y1, tex_y2; +} SPAN, *SPNA_PTR; + +typedef struct SpanPack { + struct SPAN_INFO { + int size; + int light_pos[3]; + int light_rgb[3]; + } info; + SPAN span[250]; + //SPAN *span; +} SPANPACK, *SPANPACK_PTR; + +typedef struct SpanPackList { + int size; + SPANPACK dline[6]; + //SPANPACK *dline; +} SPANPACKLIST; + +#endif