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

View File

@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
* Version: 6.5.1
* Version: 7.4
*
* Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
*

File diff suppressed because it is too large Load Diff

View File

@ -38,8 +38,12 @@
#include <GL/gl.h>
#ifndef GLAPIENTRY
#if defined(_MSC_VER) || defined(__MINGW32__)
#define GLAPIENTRY __stdcall
#else
#define GLAPIENTRY
#endif
#endif
#ifndef GLAPIENTRYP
#define GLAPIENTRYP GLAPIENTRY *

View File

@ -28,7 +28,6 @@
* 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

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"

View File

@ -28,7 +28,6 @@
* 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

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"
@ -105,23 +103,22 @@ bezierPatchMesh *bezierPatchMeshMake(int maptype, float umin, float umax, int us
int dimension;
int the_ustride;
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;
else if (maptype==GL_MAP2_VERTEX_4) dimension = 4;
else {
fprintf(stderr, "error in inMap2f, maptype=%i is wrong, maptype,map is invalid\n", maptype);
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);
/*copy the control points there*/
the_ustride = vorder * dimension;
the_vstride = dimension;

View File

@ -28,7 +28,6 @@
* 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

View File

@ -35,8 +35,6 @@
/*
* 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 */

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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>

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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>

View File

@ -28,7 +28,6 @@
* 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

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -28,7 +28,6 @@
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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>

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,7 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,10 +31,8 @@
** published by SGI, but has not been independently verified as being
** 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -35,8 +35,6 @@
/*
* 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>

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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>

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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>

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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>

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -28,7 +28,6 @@
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -31,8 +31,6 @@
/*
* 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_

View File

@ -35,8 +35,6 @@
/*
* 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"

View File

@ -31,8 +31,6 @@
/*
* 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_

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