home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mesa5.zip / mesa5src.zip / basis.h < prev    next >
C/C++ Source or Header  |  2002-11-29  |  418b  |  27 lines

  1. // BASIS.H
  2.  
  3. // 0 - work with traditional IBM OpenGL
  4. // 1 - work with WarpMesa 
  5. #define USE_MESA 1
  6. #define WARPMESA_USEPMGPI 1
  7. #define WARPMESA_USEDIVE  0
  8.  
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <stdlib.h>
  12.  
  13.  
  14. #ifdef USE_MESA
  15.   #if USE_MESA
  16.      #include "GL\gl.h"
  17.      #include "GL\glut.h"
  18.      #include "GL_TEST.H"
  19.   #endif
  20.  
  21. #else
  22.   #include <GL\gl.h>
  23.   #include <GL\glut.h>
  24. #endif
  25.  
  26.  
  27.