view TaskManager/Test/simple_render/Span.h @ 115:d9ea79aac04f draft

fix Makefile
author gongo@charles.cr.ie.u-ryukyu.ac.jp
date Thu, 13 Nov 2008 10:46:36 +0900
parents 028ffc9c0375
children
line wrap: on
line source

#ifndef INCLUDED_SPAN
#define INCLUDED_SPAN

class Span {
public:
    long *tex_addr;
    long tex_width;
    long tex_height;
    int x;
    int y;
    int length_x;
    float start_z;
    float end_z;
    float tex_x1;
    float tex_x2;
    float tex_y1;
    float tex_y2;
};

#endif