home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Amiga / Programmation / c / QuakeC / qtools0.2-src.lha / src / libqdisplay / draw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-18  |  543 b   |  22 lines

  1. #ifndef DRAWc_H
  2. #define DRAWc_H
  3.  
  4. typedef union {
  5.   unsigned char *indexed;                    /*  8bit indexed */
  6.   unsigned short int *hicolor;                    /* 16bit 5/6/5 rgb */
  7.   struct rgb *truecolor;                    /* 24bit 8/8/8 rgb */
  8. } displaypointer;
  9.  
  10. extern displaypointer texture;
  11. extern int textureMask1, textureMask2;
  12. extern int textureRow;
  13. extern short int textureShift1, textureShift2;
  14. extern short int textureMip;
  15. extern short int textureType;
  16. extern unsigned char textureColor;
  17.  
  18. void draw_face(__memBase, int face);
  19. void setup_default_point_list(void);
  20.  
  21. #endif
  22.