updated mesa to 7.4. It was difficult to merge the glu part (svn conflicts on keywords deletion it seems), so it was copied.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30043 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2009-04-08 20:18:04 +00:00
parent 54dceb1316
commit aa6bedf1fb
480 changed files with 23338 additions and 16345 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 6.5.1 * Version: 7.4
* *
* Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
* *
File diff suppressed because it is too large Load Diff
+4
View File
@@ -38,8 +38,12 @@
#include <GL/gl.h> #include <GL/gl.h>
#ifndef GLAPIENTRY #ifndef GLAPIENTRY
#if defined(_MSC_VER) || defined(__MINGW32__)
#define GLAPIENTRY __stdcall
#else
#define GLAPIENTRY #define GLAPIENTRY
#endif #endif
#endif
#ifndef GLAPIENTRYP #ifndef GLAPIENTRYP
#define GLAPIENTRYP GLAPIENTRY * #define GLAPIENTRYP GLAPIENTRY *
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/bezierEval.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef _BEZIEREVAL_H #ifndef _BEZIEREVAL_H
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/bezierPatch.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "gluos.h" #include "gluos.h"
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/bezierPatch.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef _BEZIERPATCH_H #ifndef _BEZIERPATCH_H
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "gluos.h" #include "gluos.h"
@@ -105,23 +103,22 @@ bezierPatchMesh *bezierPatchMeshMake(int maptype, float umin, float umax, int us
int dimension; int dimension;
int the_ustride; int the_ustride;
int the_vstride; int the_vstride;
bezierPatchMesh *ret = (bezierPatchMesh*) malloc(sizeof(bezierPatchMesh));
assert(ret);
ret->bpatch = NULL;
ret->bpatch_normal = NULL;
ret->bpatch_color = NULL;
ret->bpatch_texcoord = NULL;
if(maptype == GL_MAP2_VERTEX_3) dimension = 3; if(maptype == GL_MAP2_VERTEX_3) dimension = 3;
else if (maptype==GL_MAP2_VERTEX_4) dimension = 4; else if (maptype==GL_MAP2_VERTEX_4) dimension = 4;
else { else {
fprintf(stderr, "error in inMap2f, maptype=%i is wrong, maptype,map is invalid\n", maptype); fprintf(stderr, "error in inMap2f, maptype=%i is wrong, maptype,map is invalid\n", maptype);
return NULL; return NULL;
} }
bezierPatchMesh *ret = (bezierPatchMesh*) malloc(sizeof(bezierPatchMesh));
assert(ret);
ret->bpatch_normal = NULL;
ret->bpatch_color = NULL;
ret->bpatch_texcoord = NULL;
ret->bpatch = bezierPatchMake(umin, vmin, umax, vmax, uorder, vorder, dimension); ret->bpatch = bezierPatchMake(umin, vmin, umax, vmax, uorder, vorder, dimension);
/*copy the control points there*/ /*copy the control points there*/
the_ustride = vorder * dimension; the_ustride = vorder * dimension;
the_vstride = dimension; the_vstride = dimension;
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/bezierPatchMesh.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef _BEZIERPATCHMESH_H #ifndef _BEZIERPATCHMESH_H
@@ -35,8 +35,6 @@
/* /*
* glcurveval.c++ * glcurveval.c++
* *
* $Date: 2006/03/29 18:46:46 $ $Revision: 1.7 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/glcurveval.cc,v 1.7 2006/03/29 18:46:46 brianp Exp $
*/ */
/* Polynomial Evaluator Interface */ /* Polynomial Evaluator Interface */
@@ -31,8 +31,6 @@
/* /*
* glimports.h * glimports.h
* *
* $Date: 2001/03/19 17:52:02 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/glimports.h,v 1.3 2001/03/19 17:52:02 pesco Exp $
*/ */
#ifndef __gluimports_h_ #ifndef __gluimports_h_
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2001/07/16 15:46:42 $ $Revision: 1.2 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/glinterface.cc,v 1.2 2001/07/16 15:46:42 brianp Exp $
*/ */
#include "gluos.h" #include "gluos.h"
@@ -31,8 +31,6 @@
/* /*
* glrenderer.h * glrenderer.h
* *
* $Date: 2004/02/26 14:58:11 $ $Revision: 1.4 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/glrenderer.h,v 1.4 2004/02/26 14:58:11 brianp Exp $
*/ */
#ifndef __gluglrenderer_h_ #ifndef __gluglrenderer_h_
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2004/05/12 15:29:36 $ $Revision: 1.2 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/incurveeval.cc,v 1.2 2004/05/12 15:29:36 brianp Exp $
*/ */
#include <stdlib.h> #include <stdlib.h>
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2004/05/12 15:29:36 $ $Revision: 1.3 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/insurfeval.cc,v 1.3 2004/05/12 15:29:36 brianp Exp $
*/ */
#include "gluos.h" #include "gluos.h"
@@ -31,8 +31,6 @@
/* /*
* mystdio.h * mystdio.h
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.4 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/mystdio.h,v 1.4 2006/03/14 15:08:52 brianp Exp $
*/ */
#ifndef __glumystdio_h_ #ifndef __glumystdio_h_
@@ -31,8 +31,6 @@
/* /*
* mystdlib.h * mystdlib.h
* *
* $Date: 2001/03/19 17:52:02 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/interface/mystdlib.h,v 1.3 2001/03/19 17:52:02 pesco Exp $
*/ */
#ifndef __glumystdlib_h_ #ifndef __glumystdlib_h_
@@ -31,8 +31,6 @@
/* /*
* arc.h * arc.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/arc.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __gluarc_h_ #ifndef __gluarc_h_
@@ -35,8 +35,6 @@
/* /*
* arcsorter.c++ * arcsorter.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/arcsorter.cc,v 1.2 2006/03/14 15:08:52 brianp Exp $
*/ */
#ifndef __gluarcsorter_c_ #ifndef __gluarcsorter_c_
@@ -31,8 +31,6 @@
/* /*
* arcsorter.h * arcsorter.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/arcsorter.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __gluarcsorter_h_ #ifndef __gluarcsorter_h_
@@ -31,8 +31,6 @@
/* /*
* arctess.h * arctess.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/arctess.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __gluarctess_h_ #ifndef __gluarctess_h_
@@ -35,8 +35,6 @@
/* /*
* backend.c++ * backend.c++
* *
* $Date: 2004/05/12 15:29:36 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/backend.cc,v 1.2 2004/05/12 15:29:36 brianp Exp $
*/ */
/* Bezier surface backend /* Bezier surface backend
@@ -31,8 +31,6 @@
/* /*
* backend.h * backend.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/backend.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __glubackend_h_ #ifndef __glubackend_h_
@@ -31,8 +31,6 @@
/* /*
* basiccurveeval.h * basiccurveeval.h
* *
* $Date: 2006/03/29 18:54:00 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/basiccrveval.h,v 1.2 2006/03/29 18:54:00 brianp Exp $
*/ */
#ifndef __glubasiccrveval_h_ #ifndef __glubasiccrveval_h_
@@ -31,8 +31,6 @@
/* /*
* basicsurfeval.h * basicsurfeval.h
* *
* $Date: 2006/03/29 18:54:00 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/basicsurfeval.h,v 1.2 2006/03/29 18:54:00 brianp Exp $
*/ */
#ifndef __glubasicsurfeval_h_ #ifndef __glubasicsurfeval_h_
@@ -31,8 +31,6 @@
/* /*
* bezierarc.h * bezierarc.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/bezierarc.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __glubezierarc_h #ifndef __glubezierarc_h
@@ -35,8 +35,6 @@
/* /*
* bin.c++ * bin.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/bin.cc,v 1.3 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* bin.h * bin.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/bin.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __glubin_h_ #ifndef __glubin_h_
@@ -35,8 +35,6 @@
/* /*
* bufpool.c++ * bufpool.c++
* *
* $Date: 2004/05/12 15:29:36 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/bufpool.cc,v 1.2 2004/05/12 15:29:36 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* bufpool.h * bufpool.h
* *
* $Date: 2006/03/29 18:46:46 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/bufpool.h,v 1.3 2006/03/29 18:46:46 brianp Exp $
*/ */
#ifndef __glubufpool_h_ #ifndef __glubufpool_h_
@@ -35,8 +35,6 @@
/* /*
* cachingeval.c++ * cachingeval.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/cachingeval.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "cachingeval.h" #include "cachingeval.h"
@@ -31,8 +31,6 @@
/* /*
* cachingeval.h * cachingeval.h
* *
* $Date: 2006/03/29 18:54:00 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/cachingeval.h,v 1.2 2006/03/29 18:54:00 brianp Exp $
*/ */
#ifndef __glucachingval_h_ #ifndef __glucachingval_h_
@@ -35,8 +35,6 @@
/* /*
* ccw.c++ * ccw.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/ccw.cc,v 1.3 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* coveandtiler.h * coveandtiler.h
* *
* $Date: 2001/07/16 15:46:42 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/coveandtiler.h,v 1.2 2001/07/16 15:46:42 brianp Exp $
*/ */
#ifndef __glucoveandtiler_h #ifndef __glucoveandtiler_h
@@ -35,8 +35,6 @@
/* /*
* curve.c++ * curve.c++
* *
* $Date: 2004/05/12 15:29:36 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/curve.cc,v 1.3 2004/05/12 15:29:36 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* curve.h * curve.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/curve.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __glucurve_h_ #ifndef __glucurve_h_
@@ -35,8 +35,6 @@
/* /*
* curvelist.c++ * curvelist.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/curvelist.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* curvelist.h * curvelist.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/curvelist.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __glucurvelist_h_ #ifndef __glucurvelist_h_
@@ -35,8 +35,6 @@
/* /*
* curvesub.c++ * curvesub.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/curvesub.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2005/10/28 13:09:23 $ $Revision: 1.2 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/dataTransform.cc,v 1.2 2005/10/28 13:09:23 brianp Exp $
*/ */
#include <stdlib.h> #include <stdlib.h>
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/dataTransform.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef _DATA_TRANSFORM_H #ifndef _DATA_TRANSFORM_H
@@ -31,8 +31,6 @@
/* /*
* defines.h * defines.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/defines.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __gludefines_h_ #ifndef __gludefines_h_
@@ -35,8 +35,6 @@
/* /*
* displaylist.c++ * displaylist.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/displaylist.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* displaylist.h * displaylist.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/displaylist.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __gludisplaylist_h_ #ifndef __gludisplaylist_h_
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/displaymode.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __gludisplaymode_h_ #ifndef __gludisplaymode_h_
@@ -35,8 +35,6 @@
/* /*
* flist.c++ * flist.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/flist.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* flist.h * flist.h
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/flist.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#ifndef __gluflist_h_ #ifndef __gluflist_h_
@@ -35,8 +35,6 @@
/* /*
* flistsorter.c++ * flistsorter.c++
* *
* $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/flistsorter.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* flistsorter.h * flistsorter.h
* *
* $Date: 2006/03/29 18:54:00 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/flistsorter.h,v 1.2 2006/03/29 18:54:00 brianp Exp $
*/ */
#ifndef __gluflistsorter_h_ #ifndef __gluflistsorter_h_
@@ -31,8 +31,6 @@
/* /*
* gridline.h * gridline.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/gridline.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glugridline_h_ #ifndef __glugridline_h_
@@ -31,8 +31,6 @@
/* /*
* gridtrimvertex.h * gridtrimvertex.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/gridtrimvertex.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glugridtrimvertex_h_ #ifndef __glugridtrimvertex_h_
@@ -31,8 +31,6 @@
/* /*
* gridvertex.h * gridvertex.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/gridvertex.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glugridvertex_h_ #ifndef __glugridvertex_h_
@@ -35,8 +35,6 @@
/* /*
* hull.c++ * hull.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/hull.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* hull.h * hull.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/hull.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __gluhull_h_ #ifndef __gluhull_h_
@@ -35,8 +35,6 @@
/* /*
* intersect.c++ * intersect.c++
* *
* $Date: 2005/10/28 13:09:23 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/intersect.cc,v 1.3 2005/10/28 13:09:23 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* jarcloc.h * jarcloc.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/jarcloc.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glujarcloc_h_ #ifndef __glujarcloc_h_
@@ -31,8 +31,6 @@
/* /*
* knotvector.h * knotvector.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/knotvector.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __gluknotvector_h_ #ifndef __gluknotvector_h_
@@ -35,8 +35,6 @@
/* /*
* mapdesc.c++ * mapdesc.c++
* *
* $Date: 2001/11/29 16:16:55 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mapdesc.cc,v 1.2 2001/11/29 16:16:55 kschultz Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@@ -31,8 +31,6 @@
/* /*
* mapdesc.h * mapdesc.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mapdesc.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glumapdesc_h_ #ifndef __glumapdesc_h_
@@ -35,8 +35,6 @@
/* /*
* mapdescv.c++ * mapdescv.c++
* *
* $Date: 2004/05/12 15:29:36 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mapdescv.cc,v 1.3 2004/05/12 15:29:36 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -35,8 +35,6 @@
/* /*
* maplist.c++ * maplist.c++
* *
* $Date: 2005/10/28 13:09:23 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/maplist.cc,v 1.2 2005/10/28 13:09:23 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* maplist.h * maplist.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/maplist.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glumaplist_h_ #ifndef __glumaplist_h_
@@ -35,8 +35,6 @@
/* /*
* mesher.c++ * mesher.c++
* *
* $Date: 2001/11/29 16:16:55 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mesher.cc,v 1.3 2001/11/29 16:16:55 kschultz Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* mesher.h * mesher.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mesher.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __glumesher_h_ #ifndef __glumesher_h_
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2005/10/28 13:09:23 $ $Revision: 1.3 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc,v 1.3 2005/10/28 13:09:23 brianp Exp $
*/ */
#include "monoTriangulation.h" #include "monoTriangulation.h"
@@ -35,8 +35,6 @@
/* /*
* monotonizer.c++ * monotonizer.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/monotonizer.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,7 +31,6 @@
/* /*
* monotonizer.h * monotonizer.h
* *
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/monotonizer.h,v 1.2 2006/04/03 22:23:52 ajax Exp $
*/ */
#ifndef __glumonotonizer_h_ #ifndef __glumonotonizer_h_
@@ -31,8 +31,6 @@
/* /*
* myassert.h * myassert.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/myassert.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glumyassert_h_ #ifndef __glumyassert_h_
@@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being ** published by SGI, but has not been independently verified as being
** compliant with the OpenGL(R) version 1.2.1 Specification. ** compliant with the OpenGL(R) version 1.2.1 Specification.
** **
** $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mycode.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "mymath.h" #include "mymath.h"
@@ -31,8 +31,6 @@
/* /*
* mystring.h * mystring.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/mystring.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glumystring_h_ #ifndef __glumystring_h_
@@ -31,8 +31,6 @@
/* /*
* nurbsconsts.h * nurbsconsts.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/nurbsconsts.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glunurbsconsts_h_ #ifndef __glunurbsconsts_h_
@@ -35,8 +35,6 @@
/* /*
* nurbstess.c++ * nurbstess.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/nurbstess.cc,v 1.2 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -35,8 +35,6 @@
/* /*
* patch.c++ * patch.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.4 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/patch.cc,v 1.4 2006/03/14 15:08:52 brianp Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@@ -31,8 +31,6 @@
/* /*
* patch.h * patch.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/patch.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glupatch_h_ #ifndef __glupatch_h_
@@ -35,8 +35,6 @@
/* /*
* patchlist.c++ * patchlist.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/patchlist.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@@ -31,8 +31,6 @@
/* /*
* patchlist.h * patchlist.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/patchlist.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glupatchlist_h_ #ifndef __glupatchlist_h_
@@ -31,8 +31,6 @@
/* /*
* pwlarc.h * pwlarc.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/pwlarc.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glupwlarc_h_ #ifndef __glupwlarc_h_
@@ -35,8 +35,6 @@
/* /*
* quilt.c++ * quilt.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/quilt.cc,v 1.3 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* quilt.h * quilt.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/quilt.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __gluquilt_h_ #ifndef __gluquilt_h_
@@ -35,8 +35,6 @@
/* /*
* reader.c++ * reader.c++
* *
* $Date: 2002/11/01 23:35:07 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/reader.cc,v 1.2 2002/11/01 23:35:07 brianp Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@@ -31,8 +31,6 @@
/* /*
* reader.h * reader.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/reader.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __glureader_h_ #ifndef __glureader_h_
@@ -35,8 +35,6 @@
/* /*
* renderhints.c++ * renderhints.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/renderhints.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* renderhints.h * renderhints.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/renderhints.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glurenderhints_h_ #ifndef __glurenderhints_h_
@@ -31,8 +31,6 @@
/* /*
* simplemath.h * simplemath.h
* *
* $Date: 2002/11/01 23:35:07 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/simplemath.h,v 1.2 2002/11/01 23:35:07 brianp Exp $
*/ */
#ifndef __glusimplemath_h_ #ifndef __glusimplemath_h_
@@ -35,8 +35,6 @@
/* /*
* slicer.c++ * slicer.c++
* *
* $Date: 2005/10/28 13:09:23 $ $Revision: 1.5 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/slicer.cc,v 1.5 2005/10/28 13:09:23 brianp Exp $
*/ */
#include <stdlib.h> #include <stdlib.h>
@@ -31,8 +31,6 @@
/* /*
* slicer.h * slicer.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/slicer.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __gluslicer_h_ #ifndef __gluslicer_h_
@@ -35,8 +35,6 @@
/* /*
* sorter.c++ * sorter.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.3 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/sorter.cc,v 1.3 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -28,7 +28,6 @@
* Silicon Graphics, Inc. * Silicon Graphics, Inc.
*/ */
/* /*
** $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/sorter.h,v 1.2 2006/03/29 18:54:00 brianp Exp $
*/ */
#ifndef __glusorter_h_ #ifndef __glusorter_h_
@@ -35,8 +35,6 @@
/* /*
* splitarcs.c++ * splitarcs.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/splitarcs.cc,v 1.2 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* subdivider.h * subdivider.h
* *
* $Date: 2001/08/07 17:34:11 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/subdivider.h,v 1.2 2001/08/07 17:34:11 brianp Exp $
*/ */
#ifndef __glusubdivider_h_ #ifndef __glusubdivider_h_
@@ -35,8 +35,6 @@
/* /*
* tobezier.c++ * tobezier.c++
* *
* $Date: 2006/03/14 15:08:52 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/tobezier.cc,v 1.2 2006/03/14 15:08:52 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -35,8 +35,6 @@
/* /*
* trimline.c++ * trimline.c++
* *
* $Date: 2005/10/28 13:09:23 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimline.cc,v 1.2 2005/10/28 13:09:23 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* trimline.h * trimline.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimline.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glutrimline_h_ #ifndef __glutrimline_h_
@@ -35,8 +35,6 @@
/* /*
* trimregion.c++ * trimregion.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimregion.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* trimregion.h * trimregion.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimregion.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glutrimregion_h_ #ifndef __glutrimregion_h_
@@ -31,8 +31,6 @@
/* /*
* trimvertex.h * trimvertex.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimvertex.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glutrimvertex_h_ #ifndef __glutrimvertex_h_
@@ -35,8 +35,6 @@
/* /*
* trimvertexpool.c++ * trimvertexpool.c++
* *
* $Date: 2003/05/08 15:47:00 $ $Revision: 1.2 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimvertpool.cc,v 1.2 2003/05/08 15:47:00 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* trimvertexpool.h * trimvertexpool.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/trimvertpool.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glutrimvertpool_h_ #ifndef __glutrimvertpool_h_
@@ -31,8 +31,6 @@
/* /*
* types.h * types.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/types.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __glutypes_h_ #ifndef __glutypes_h_
@@ -35,8 +35,6 @@
/* /*
* uarray.c++ * uarray.c++
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/uarray.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#include "glimports.h" #include "glimports.h"
@@ -31,8 +31,6 @@
/* /*
* uarray.h * uarray.h
* *
* $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
* $Header: /cvs/mesa/Mesa/src/glu/sgi/libnurbs/internals/uarray.h,v 1.1 2001/03/17 00:25:41 brianp Exp $
*/ */
#ifndef __gluuarray_h_ #ifndef __gluuarray_h_

Some files were not shown because too many files have changed in this diff Show More