blob: bfb9e90f66b7d809c917ffed38188c4d0a115421 [file] [log] [blame]
Brian Paulfbd8f211999-11-11 01:22:25 +00001/* $Id: glu.h,v 1.15 1999/11/11 01:27:17 brianp Exp $ */
jtgafb833d1999-08-19 00:55:39 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paulfbd8f211999-11-11 01:22:25 +00005 * Version: 3.3
6 *
jtgafb833d1999-08-19 00:55:39 +00007 * Copyright (C) 1995-1999 Brian Paul
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
18 *
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the Free
21 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24
jtgafb833d1999-08-19 00:55:39 +000025#ifndef GLU_H
26#define GLU_H
27
28
29#if defined(USE_MGL_NAMESPACE)
30#include "glu_mangle.h"
31#endif
32
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38
39#include "GL/gl.h"
40
41 /* to facilitate clean DLL building ... */
42#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__))
43# if defined(_MSC_VER) && defined(BUILD_GLU32) /* tag specify we're building mesa as a DLL */
44# define GLUAPI __declspec(dllexport)
45# elif defined(_MSC_VER) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
46# define GLUAPI __declspec(dllimport)
47# else /* for use with static link lib build of Win32 edition only */
48# define GLUAPI extern
49# endif /* _STATIC_MESA support */
50#else
51# define GLUAPI extern
52#endif /* WIN32 / CYGWIN32 bracket */
53
54#ifdef macintosh
55 #pragma enumsalwaysint on
56 #if PRAGMA_IMPORT_SUPPORTED
57 #pragma import on
58 #endif
59#endif
60
Brian Paula6f09fa1999-10-22 10:47:01 +000061#ifndef GLUAPI
62#define GLUAPI
63#endif
64
65#ifndef GLAPIENTRY
66#define GLAPIENTRY
67#endif
68
69#ifndef GLCALLBACK
70#define GLCALLBACK
71#endif
72
jtgafb833d1999-08-19 00:55:39 +000073
Brian Paulfbd8f211999-11-11 01:22:25 +000074#define GLU_VERSION_1_1 1
75#define GLU_VERSION_1_2 1
jtgafb833d1999-08-19 00:55:39 +000076
77
Brian Paulfbd8f211999-11-11 01:22:25 +000078#define GLU_TRUE 1
79#define GLU_FALSE 0
jtgafb833d1999-08-19 00:55:39 +000080
81
Brian Paulfbd8f211999-11-11 01:22:25 +000082/* Normal vectors */
83#define GLU_SMOOTH 100000
84#define GLU_FLAT 100001
85#define GLU_NONE 100002
jtgafb833d1999-08-19 00:55:39 +000086
Brian Paulfbd8f211999-11-11 01:22:25 +000087/* Quadric draw styles */
88#define GLU_POINT 100010
89#define GLU_LINE 100011
90#define GLU_FILL 100012
91#define GLU_SILHOUETTE 100013
jtgafb833d1999-08-19 00:55:39 +000092
Brian Paulfbd8f211999-11-11 01:22:25 +000093/* Quadric orientation */
94#define GLU_OUTSIDE 100020
95#define GLU_INSIDE 100021
jtgafb833d1999-08-19 00:55:39 +000096
Brian Paulfbd8f211999-11-11 01:22:25 +000097/* Tessellator */
98#define GLU_TESS_BEGIN 100100
99#define GLU_TESS_VERTEX 100101
100#define GLU_TESS_END 100102
101#define GLU_TESS_ERROR 100103
102#define GLU_TESS_EDGE_FLAG 100104
103#define GLU_TESS_COMBINE 100105
jtgafb833d1999-08-19 00:55:39 +0000104
Brian Paulfbd8f211999-11-11 01:22:25 +0000105#define GLU_TESS_BEGIN_DATA 100106
106#define GLU_TESS_VERTEX_DATA 100107
107#define GLU_TESS_END_DATA 100108
108#define GLU_TESS_ERROR_DATA 100109
109#define GLU_TESS_EDGE_FLAG_DATA 100110
110#define GLU_TESS_COMBINE_DATA 100111
jtgafb833d1999-08-19 00:55:39 +0000111
Brian Paulfbd8f211999-11-11 01:22:25 +0000112/* Winding rules */
113#define GLU_TESS_WINDING_ODD 100130
114#define GLU_TESS_WINDING_NONZERO 100131
115#define GLU_TESS_WINDING_POSITIVE 100132
116#define GLU_TESS_WINDING_NEGATIVE 100133
117#define GLU_TESS_WINDING_ABS_GEQ_TWO 100134
Gareth Hughes2856b531999-09-10 02:03:31 +0000118
Brian Paulfbd8f211999-11-11 01:22:25 +0000119/* Tessellation properties */
120#define GLU_TESS_WINDING_RULE 100140
121#define GLU_TESS_BOUNDARY_ONLY 100141
122#define GLU_TESS_TOLERANCE 100142
Gareth Hughes2856b531999-09-10 02:03:31 +0000123
Brian Paulfbd8f211999-11-11 01:22:25 +0000124/* Tessellation errors */
125#define GLU_TESS_ERROR1 100151 /* Missing gluBeginPolygon */
126#define GLU_TESS_ERROR2 100152 /* Missing gluBeginContour */
127#define GLU_TESS_ERROR3 100153 /* Missing gluEndPolygon */
128#define GLU_TESS_ERROR4 100154 /* Missing gluEndContour */
129#define GLU_TESS_ERROR5 100155 /* */
130#define GLU_TESS_ERROR6 100156 /* */
131#define GLU_TESS_ERROR7 100157 /* */
132#define GLU_TESS_ERROR8 100158 /* */
jtgafb833d1999-08-19 00:55:39 +0000133
Brian Paulfbd8f211999-11-11 01:22:25 +0000134/* NURBS */
135#define GLU_AUTO_LOAD_MATRIX 100200
136#define GLU_CULLING 100201
137#define GLU_PARAMETRIC_TOLERANC 100202
138#define GLU_SAMPLING_TOLERANCE 100203
139#define GLU_DISPLAY_MODE 100204
140#define GLU_SAMPLING_METHOD 100205
141#define GLU_U_STEP 100206
142#define GLU_V_STEP 100207
jtgafb833d1999-08-19 00:55:39 +0000143
Brian Paulfbd8f211999-11-11 01:22:25 +0000144#define GLU_PATH_LENGTH 100215
145#define GLU_PARAMETRIC_ERROR 100216
146#define GLU_DOMAIN_DISTANCE 100217
jtgafb833d1999-08-19 00:55:39 +0000147
Brian Paulfbd8f211999-11-11 01:22:25 +0000148#define GLU_MAP1_TRIM_2 100210
149#define GLU_MAP1_TRIM_3 100211
jtgafb833d1999-08-19 00:55:39 +0000150
Brian Paulfbd8f211999-11-11 01:22:25 +0000151#define GLU_OUTLINE_POLYGON 100240
152#define GLU_OUTLINE_PATCH 100241
jtgafb833d1999-08-19 00:55:39 +0000153
Brian Paulfbd8f211999-11-11 01:22:25 +0000154#define GLU_NURBS_ERROR1 100251 /* spline order un-supported */
155#define GLU_NURBS_ERROR2 100252 /* too few knots */
156#define GLU_NURBS_ERROR3 100253 /* valid knot range is empty */
157#define GLU_NURBS_ERROR4 100254 /* decreasing knot sequence */
158#define GLU_NURBS_ERROR5 100255 /* knot multiplicity > spline order */
159#define GLU_NURBS_ERROR6 100256 /* endcurve() must follow bgncurve() */
160#define GLU_NURBS_ERROR7 100257 /* bgncurve() must precede endcurve() */
161#define GLU_NURBS_ERROR8 100258 /* ctrlarray or knot vector is NULL */
162#define GLU_NURBS_ERROR9 100259 /* can't draw pwlcurves */
163#define GLU_NURBS_ERROR10 100260 /* missing gluNurbsCurve() */
164#define GLU_NURBS_ERROR11 100261 /* missing gluNurbsSurface() */
165#define GLU_NURBS_ERROR12 100262 /* endtrim() must precede endsurface() */
166#define GLU_NURBS_ERROR13 100263 /* bgnsurface() must precede endsurface() */
167#define GLU_NURBS_ERROR14 100264 /* curve of improper type passed as trim curve */
168#define GLU_NURBS_ERROR15 100265 /* bgnsurface() must precede bgntrim() */
169#define GLU_NURBS_ERROR16 100266 /* endtrim() must follow bgntrim() */
170#define GLU_NURBS_ERROR17 100267 /* bgntrim() must precede endtrim()*/
171#define GLU_NURBS_ERROR18 100268 /* invalid or missing trim curve*/
172#define GLU_NURBS_ERROR19 100269 /* bgntrim() must precede pwlcurve() */
173#define GLU_NURBS_ERROR20 100270 /* pwlcurve referenced twice*/
174#define GLU_NURBS_ERROR21 100271 /* pwlcurve and nurbscurve mixed */
175#define GLU_NURBS_ERROR22 100272 /* improper usage of trim data type */
176#define GLU_NURBS_ERROR23 100273 /* nurbscurve referenced twice */
177#define GLU_NURBS_ERROR24 100274 /* nurbscurve and pwlcurve mixed */
178#define GLU_NURBS_ERROR25 100275 /* nurbssurface referenced twice */
179#define GLU_NURBS_ERROR26 100276 /* invalid property */
180#define GLU_NURBS_ERROR27 100277 /* endsurface() must follow bgnsurface() */
181#define GLU_NURBS_ERROR28 100278 /* intersecting or misoriented trim curves */
182#define GLU_NURBS_ERROR29 100279 /* intersecting trim curves */
183#define GLU_NURBS_ERROR30 100280 /* UNUSED */
184#define GLU_NURBS_ERROR31 100281 /* unconnected trim curves */
185#define GLU_NURBS_ERROR32 100282 /* unknown knot error */
186#define GLU_NURBS_ERROR33 100283 /* negative vertex count encountered */
187#define GLU_NURBS_ERROR34 100284 /* negative byte-stride */
188#define GLU_NURBS_ERROR35 100285 /* unknown type descriptor */
189#define GLU_NURBS_ERROR36 100286 /* null control point reference */
190#define GLU_NURBS_ERROR37 100287 /* duplicate point on pwlcurve */
jtgafb833d1999-08-19 00:55:39 +0000191
Brian Paulfbd8f211999-11-11 01:22:25 +0000192/* Errors */
193#define GLU_INVALID_ENUM 100900
194#define GLU_INVALID_VALUE 100901
195#define GLU_OUT_OF_MEMORY 100902
196#define GLU_INCOMPATIBLE_GL_VERSION 100903
jtgafb833d1999-08-19 00:55:39 +0000197
Brian Paulfbd8f211999-11-11 01:22:25 +0000198/* New in GLU 1.1 */
199#define GLU_VERSION 100800
200#define GLU_EXTENSIONS 100801
Gareth Hughes2856b531999-09-10 02:03:31 +0000201
Brian Paulfbd8f211999-11-11 01:22:25 +0000202/*** GLU 1.0 tessellation - obsolete! ***/
Gareth Hughes2856b531999-09-10 02:03:31 +0000203
Brian Paulfbd8f211999-11-11 01:22:25 +0000204/* Contour types */
205#define GLU_CW 100120
206#define GLU_CCW 100121
207#define GLU_INTERIOR 100122
208#define GLU_EXTERIOR 100123
209#define GLU_UNKNOWN 100124
Gareth Hughes2856b531999-09-10 02:03:31 +0000210
Brian Paulfbd8f211999-11-11 01:22:25 +0000211/* Tessellator */
212#define GLU_BEGIN GLU_TESS_BEGIN
213#define GLU_VERTEX GLU_TESS_VERTEX
214#define GLU_END GLU_TESS_END
215#define GLU_ERROR GLU_TESS_ERROR
216#define GLU_EDGE_FLAG GLU_TESS_EDGE_FLAG
jtgafb833d1999-08-19 00:55:39 +0000217
218
219/*
Gareth Hughes2856b531999-09-10 02:03:31 +0000220 * These are the GLU 1.1 typedefs. GLU 1.3 has different ones!
jtgafb833d1999-08-19 00:55:39 +0000221 */
222#if defined(__BEOS__)
Gareth Hughes2856b531999-09-10 02:03:31 +0000223 /* The BeOS does something funky and makes these typedefs in one
224 * of its system headers.
225 */
jtgafb833d1999-08-19 00:55:39 +0000226#else
Gareth Hughes2856b531999-09-10 02:03:31 +0000227 typedef struct GLUquadric GLUquadricObj;
228 typedef struct GLUnurbs GLUnurbsObj;
229
230 /* FIXME: We need to implement the other 1.3 typedefs - GH */
231 typedef struct GLUtesselator GLUtesselator;
Gareth Hughes49e0bc41999-09-14 03:23:08 +0000232 typedef GLUtesselator GLUtriangulatorObj;
jtgafb833d1999-08-19 00:55:39 +0000233#endif
234
235
236
237#if defined(__BEOS__) || defined(__QUICKDRAW__)
238#pragma export on
239#endif
240
241
242/*
243 *
244 * Miscellaneous functions
245 *
246 */
247
248GLUAPI void GLAPIENTRY gluLookAt( GLdouble eyex, GLdouble eyey, GLdouble eyez,
Brian Paulfbd8f211999-11-11 01:22:25 +0000249 GLdouble centerx, GLdouble centery,
250 GLdouble centerz,
251 GLdouble upx, GLdouble upy, GLdouble upz );
jtgafb833d1999-08-19 00:55:39 +0000252
253
254GLUAPI void GLAPIENTRY gluOrtho2D( GLdouble left, GLdouble right,
Brian Paulfbd8f211999-11-11 01:22:25 +0000255 GLdouble bottom, GLdouble top );
jtgafb833d1999-08-19 00:55:39 +0000256
257
258GLUAPI void GLAPIENTRY gluPerspective( GLdouble fovy, GLdouble aspect,
Brian Paulfbd8f211999-11-11 01:22:25 +0000259 GLdouble zNear, GLdouble zFar );
jtgafb833d1999-08-19 00:55:39 +0000260
261
262GLUAPI void GLAPIENTRY gluPickMatrix( GLdouble x, GLdouble y,
Brian Paulfbd8f211999-11-11 01:22:25 +0000263 GLdouble width, GLdouble height,
264 const GLint viewport[4] );
jtgafb833d1999-08-19 00:55:39 +0000265
266GLUAPI GLint GLAPIENTRY gluProject( GLdouble objx, GLdouble objy, GLdouble objz,
jtgafb833d1999-08-19 00:55:39 +0000267 const GLdouble modelMatrix[16],
268 const GLdouble projMatrix[16],
269 const GLint viewport[4],
Brian Paulfbd8f211999-11-11 01:22:25 +0000270 GLdouble *winx, GLdouble *winy,
271 GLdouble *winz );
272
273GLUAPI GLint GLAPIENTRY gluUnProject( GLdouble winx, GLdouble winy,
274 GLdouble winz,
275 const GLdouble modelMatrix[16],
276 const GLdouble projMatrix[16],
277 const GLint viewport[4],
278 GLdouble *objx, GLdouble *objy,
279 GLdouble *objz );
jtgafb833d1999-08-19 00:55:39 +0000280
281GLUAPI const GLubyte* GLAPIENTRY gluErrorString( GLenum errorCode );
282
283
284
285/*
286 *
287 * Mipmapping and image scaling
288 *
289 */
290
291GLUAPI GLint GLAPIENTRY gluScaleImage( GLenum format,
Brian Paulfbd8f211999-11-11 01:22:25 +0000292 GLint widthin, GLint heightin,
293 GLenum typein, const void *datain,
294 GLint widthout, GLint heightout,
295 GLenum typeout, void *dataout );
jtgafb833d1999-08-19 00:55:39 +0000296
297GLUAPI GLint GLAPIENTRY gluBuild1DMipmaps( GLenum target, GLint components,
Brian Paulfbd8f211999-11-11 01:22:25 +0000298 GLint width, GLenum format,
299 GLenum type, const void *data );
jtgafb833d1999-08-19 00:55:39 +0000300
301GLUAPI GLint GLAPIENTRY gluBuild2DMipmaps( GLenum target, GLint components,
Brian Paulfbd8f211999-11-11 01:22:25 +0000302 GLint width, GLint height,
303 GLenum format,
304 GLenum type, const void *data );
jtgafb833d1999-08-19 00:55:39 +0000305
306
307
308/*
309 *
310 * Quadrics
311 *
312 */
313
314GLUAPI GLUquadricObj* GLAPIENTRY gluNewQuadric( void );
315
316GLUAPI void GLAPIENTRY gluDeleteQuadric( GLUquadricObj *state );
317
318GLUAPI void GLAPIENTRY gluQuadricDrawStyle( GLUquadricObj *quadObject,
Brian Paulfbd8f211999-11-11 01:22:25 +0000319 GLenum drawStyle );
jtgafb833d1999-08-19 00:55:39 +0000320
321GLUAPI void GLAPIENTRY gluQuadricOrientation( GLUquadricObj *quadObject,
Brian Paulfbd8f211999-11-11 01:22:25 +0000322 GLenum orientation );
jtgafb833d1999-08-19 00:55:39 +0000323
324GLUAPI void GLAPIENTRY gluQuadricNormals( GLUquadricObj *quadObject,
Brian Paulfbd8f211999-11-11 01:22:25 +0000325 GLenum normals );
jtgafb833d1999-08-19 00:55:39 +0000326
327GLUAPI void GLAPIENTRY gluQuadricTexture( GLUquadricObj *quadObject,
Brian Paulfbd8f211999-11-11 01:22:25 +0000328 GLboolean textureCoords );
jtgafb833d1999-08-19 00:55:39 +0000329
330GLUAPI void GLAPIENTRY gluQuadricCallback( GLUquadricObj *qobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000331 GLenum which,
332 void (GLCALLBACK *fn)() );
jtgafb833d1999-08-19 00:55:39 +0000333
334GLUAPI void GLAPIENTRY gluCylinder( GLUquadricObj *qobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000335 GLdouble baseRadius,
336 GLdouble topRadius,
337 GLdouble height,
338 GLint slices, GLint stacks );
jtgafb833d1999-08-19 00:55:39 +0000339
340GLUAPI void GLAPIENTRY gluSphere( GLUquadricObj *qobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000341 GLdouble radius, GLint slices,
342 GLint stacks );
jtgafb833d1999-08-19 00:55:39 +0000343
344GLUAPI void GLAPIENTRY gluDisk( GLUquadricObj *qobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000345 GLdouble innerRadius, GLdouble outerRadius,
346 GLint slices, GLint loops );
jtgafb833d1999-08-19 00:55:39 +0000347
348GLUAPI void GLAPIENTRY gluPartialDisk( GLUquadricObj *qobj, GLdouble innerRadius,
Brian Paulfbd8f211999-11-11 01:22:25 +0000349 GLdouble outerRadius, GLint slices,
350 GLint loops, GLdouble startAngle,
351 GLdouble sweepAngle );
jtgafb833d1999-08-19 00:55:39 +0000352
353
354
355/*
356 *
357 * Nurbs
358 *
359 */
360
361GLUAPI GLUnurbsObj* GLAPIENTRY gluNewNurbsRenderer( void );
362
363GLUAPI void GLAPIENTRY gluDeleteNurbsRenderer( GLUnurbsObj *nobj );
364
365GLUAPI void GLAPIENTRY gluLoadSamplingMatrices( GLUnurbsObj *nobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000366 const GLfloat modelMatrix[16],
367 const GLfloat projMatrix[16],
368 const GLint viewport[4] );
jtgafb833d1999-08-19 00:55:39 +0000369
370GLUAPI void GLAPIENTRY gluNurbsProperty( GLUnurbsObj *nobj, GLenum property,
Brian Paulfbd8f211999-11-11 01:22:25 +0000371 GLfloat value );
jtgafb833d1999-08-19 00:55:39 +0000372
373GLUAPI void GLAPIENTRY gluGetNurbsProperty( GLUnurbsObj *nobj, GLenum property,
Brian Paulfbd8f211999-11-11 01:22:25 +0000374 GLfloat *value );
jtgafb833d1999-08-19 00:55:39 +0000375
376GLUAPI void GLAPIENTRY gluBeginCurve( GLUnurbsObj *nobj );
377
378GLUAPI void GLAPIENTRY gluEndCurve( GLUnurbsObj * nobj );
379
380GLUAPI void GLAPIENTRY gluNurbsCurve( GLUnurbsObj *nobj, GLint nknots,
Brian Paulfbd8f211999-11-11 01:22:25 +0000381 GLfloat *knot, GLint stride,
382 GLfloat *ctlarray, GLint order,
383 GLenum type );
jtgafb833d1999-08-19 00:55:39 +0000384
385GLUAPI void GLAPIENTRY gluBeginSurface( GLUnurbsObj *nobj );
386
387GLUAPI void GLAPIENTRY gluEndSurface( GLUnurbsObj * nobj );
388
389GLUAPI void GLAPIENTRY gluNurbsSurface( GLUnurbsObj *nobj,
Brian Paulfbd8f211999-11-11 01:22:25 +0000390 GLint sknot_count, GLfloat *sknot,
391 GLint tknot_count, GLfloat *tknot,
392 GLint s_stride, GLint t_stride,
393 GLfloat *ctlarray,
394 GLint sorder, GLint torder,
395 GLenum type );
jtgafb833d1999-08-19 00:55:39 +0000396
397GLUAPI void GLAPIENTRY gluBeginTrim( GLUnurbsObj *nobj );
398
399GLUAPI void GLAPIENTRY gluEndTrim( GLUnurbsObj *nobj );
400
401GLUAPI void GLAPIENTRY gluPwlCurve( GLUnurbsObj *nobj, GLint count,
Brian Paulfbd8f211999-11-11 01:22:25 +0000402 GLfloat *array, GLint stride,
403 GLenum type );
jtgafb833d1999-08-19 00:55:39 +0000404
405GLUAPI void GLAPIENTRY gluNurbsCallback( GLUnurbsObj *nobj, GLenum which,
Brian Paulfbd8f211999-11-11 01:22:25 +0000406 void (GLCALLBACK *fn)() );
jtgafb833d1999-08-19 00:55:39 +0000407
408
409
410/*
411 *
Gareth Hughes2856b531999-09-10 02:03:31 +0000412 * Polygon tessellation
jtgafb833d1999-08-19 00:55:39 +0000413 *
414 */
415
Gareth Hughes2856b531999-09-10 02:03:31 +0000416GLUAPI GLUtesselator* GLAPIENTRY gluNewTess( void );
jtgafb833d1999-08-19 00:55:39 +0000417
Gareth Hughes2856b531999-09-10 02:03:31 +0000418GLUAPI void GLAPIENTRY gluDeleteTess( GLUtesselator *tobj );
jtgafb833d1999-08-19 00:55:39 +0000419
Gareth Hughes2856b531999-09-10 02:03:31 +0000420GLUAPI void GLAPIENTRY gluTessBeginPolygon( GLUtesselator *tobj,
421 void *polygon_data );
jtgafb833d1999-08-19 00:55:39 +0000422
Gareth Hughes2856b531999-09-10 02:03:31 +0000423GLUAPI void GLAPIENTRY gluTessBeginContour( GLUtesselator *tobj );
jtgafb833d1999-08-19 00:55:39 +0000424
Gareth Hughes2856b531999-09-10 02:03:31 +0000425GLUAPI void GLAPIENTRY gluTessVertex( GLUtesselator *tobj, GLdouble coords[3],
426 void *vertex_data );
jtgafb833d1999-08-19 00:55:39 +0000427
Gareth Hughes2856b531999-09-10 02:03:31 +0000428GLUAPI void GLAPIENTRY gluTessEndContour( GLUtesselator *tobj );
jtgafb833d1999-08-19 00:55:39 +0000429
Gareth Hughes2856b531999-09-10 02:03:31 +0000430GLUAPI void GLAPIENTRY gluTessEndPolygon( GLUtesselator *tobj );
431
432GLUAPI void GLAPIENTRY gluTessProperty( GLUtesselator *tobj, GLenum which,
433 GLdouble value );
434
435GLUAPI void GLAPIENTRY gluTessNormal( GLUtesselator *tobj, GLdouble x,
436 GLdouble y, GLdouble z );
437
438GLUAPI void GLAPIENTRY gluTessCallback( GLUtesselator *tobj, GLenum which,
439 void (GLCALLBACK *fn)() );
440
441GLUAPI void GLAPIENTRY gluGetTessProperty( GLUtesselator *tobj, GLenum which,
442 GLdouble *value );
443
444/*
445 *
446 * Obsolete 1.0 tessellation functions
447 *
448 */
449
450GLUAPI void GLAPIENTRY gluBeginPolygon( GLUtesselator *tobj );
451
452GLUAPI void GLAPIENTRY gluNextContour( GLUtesselator *tobj, GLenum type );
453
454GLUAPI void GLAPIENTRY gluEndPolygon( GLUtesselator *tobj );
jtgafb833d1999-08-19 00:55:39 +0000455
456
457
458/*
459 *
460 * New functions in GLU 1.1
461 *
462 */
463
464GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name );
465
466
Brian Paulf893f031999-09-11 11:34:21 +0000467
jtgafb833d1999-08-19 00:55:39 +0000468#if defined(__BEOS__) || defined(__QUICKDRAW__)
469#pragma export off
470#endif
471
472
473#ifdef macintosh
474 #pragma enumsalwaysint reset
475 #if PRAGMA_IMPORT_SUPPORTED
476 #pragma import off
477 #endif
478#endif
479
480
481#ifdef __cplusplus
482}
483#endif
484
485
486#endif