home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / System / Mesa-3.1 / src-glu / gluP.h < prev    next >
C/C++ Source or Header  |  1999-12-06  |  2KB  |  96 lines

  1. /* $Id: gluP.h,v 1.1.1.1.2.1 1999/12/06 05:24:36 joukj Exp $ */
  2.  
  3. /*
  4.  * Mesa 3-D graphics library
  5.  * Version:  3.1
  6.  * Copyright (C) 1995-1999  Brian Paul
  7.  *
  8.  * This library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU Library General Public
  10.  * License as published by the Free Software Foundation; either
  11.  * version 2 of the License, or (at your option) any later version.
  12.  *
  13.  * This library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * Library General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Library General Public
  19.  * License along with this library; if not, write to the Free
  20.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22.  
  23.  
  24. /*
  25.  * $Log: gluP.h,v $
  26.  * Revision 1.1.1.1.2.1  1999/12/06 05:24:36  joukj
  27.  *
  28.  *  Committing in .
  29.  *
  30.  *  Updating compilation on VMS
  31.  *
  32.  *  Modified Files:
  33.  *   Tag: mesa_3_2_dev
  34.  *      Mesa/src-glu/descrip.mms Mesa/src-glu/gluP.h
  35.  *  ----------------------------------------------------------------------
  36.  *
  37.  * Revision 1.1.1.1  1999/08/19 00:55:42  jtg
  38.  * Imported sources
  39.  *
  40.  * Revision 1.4  1999/01/03 03:23:15  brianp
  41.  * now using GLAPIENTRY and GLCALLBACK keywords (Ted Jump)
  42.  *
  43.  * Revision 1.3  1997/08/01 22:25:27  brianp
  44.  * check for Cygnus Win32 (Stephen Rehel)
  45.  *
  46.  * Revision 1.2  1997/05/27 02:59:46  brianp
  47.  * added defines for APIENTRY and CALLBACK if not compiling on Win32
  48.  *
  49.  * Revision 1.1  1996/09/27 01:19:39  brianp
  50.  * Initial revision
  51.  *
  52.  */
  53.  
  54.  
  55.  
  56. /*
  57.  * This file allows the GLU code to be compiled either with the Mesa
  58.  * headers or with the real OpenGL headers.
  59.  */
  60.  
  61.  
  62. #ifndef GLUP_H
  63. #define GLUP_H
  64.  
  65.  
  66. #include "GL/gl.h"
  67. #include "GL/glu.h"
  68.  
  69. #include <string.h>
  70.  
  71. #ifndef MESA
  72.    /* If we're using the real OpenGL header files... */
  73. #  define GLU_TESS_ERROR9    100159
  74. #endif
  75.  
  76.  
  77. #define GLU_NO_ERROR        GL_NO_ERROR
  78.  
  79.  
  80. /* for Sun: */
  81. #ifdef SUNOS4
  82. #define MEMCPY( DST, SRC, BYTES) \
  83.     memcpy( (char *) (DST), (char *) (SRC), (int) (BYTES) )
  84. #else
  85. #define MEMCPY( DST, SRC, BYTES) \
  86.     memcpy( (void *) (DST), (void *) (SRC), (size_t) (BYTES) )
  87. #endif
  88.  
  89.  
  90. #ifndef NULL
  91. #  define NULL 0
  92. #endif
  93.  
  94.  
  95. #endif
  96.