view old/simple_pack/span_pack.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_pack/span_pack.h@5c194c71eca8
children
line wrap: on
line source

#ifndef INCLUDED_SPAN_PACK
#define INCLUDED_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[70];
  //SPAN *span;
} SPANPACK, *SPANPACK_PTR;

/*
typedef struct SpanPackList {
    int size;
    SPANPACK dline[60];
    //SPANPACK dline[135];
    //SPANPACK *dline;
} SPANPACKLIST;
*/

#endif