Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. /* $Id: glu.h,v 1.19 1999/11/24 13:06:48 brianp Exp $ */
  2. /*
  3. * Mesa 3-D graphics library
  4. * Version: 3.3
  5. *
  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. #ifndef __glu_h__
  23. #define __glu_h__
  24. #if defined(USE_MGL_NAMESPACE)
  25. #include "glu_mangle.h"
  26. #endif
  27. #include "GL/gl.h"
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /* to facilitate clean DLL building ... */
  32. #if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__))
  33. # if defined(_MSC_VER) && defined(BUILD_GLU32) /* tag specify we're building mesa as a DLL */
  34. # define GLUAPI __declspec(dllexport)
  35. # elif defined(_MSC_VER) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
  36. # define GLUAPI __declspec(dllimport)
  37. # else /* for use with static link lib build of Win32 edition only */
  38. # define GLUAPI extern
  39. # endif /* _STATIC_MESA support */
  40. #else
  41. # define GLUAPI extern
  42. #endif /* WIN32 / CYGWIN32 bracket */
  43. #ifdef macintosh
  44. #pragma enumsalwaysint on
  45. #if PRAGMA_IMPORT_SUPPORTED
  46. #pragma import on
  47. #endif
  48. #endif
  49. #ifndef GLUAPI
  50. #define GLUAPI
  51. #endif
  52. #ifndef GLAPIENTRY
  53. #define GLAPIENTRY
  54. #endif
  55. #ifndef GLCALLBACK
  56. #define GLCALLBACK
  57. #endif
  58. #define GLU_VERSION_1_1 1
  59. #define GLU_VERSION_1_2 1
  60. #define GLU_TRUE 1
  61. #define GLU_FALSE 0
  62. /* Normal vectors */
  63. #define GLU_SMOOTH 100000
  64. #define GLU_FLAT 100001
  65. #define GLU_NONE 100002
  66. /* Quadric draw styles */
  67. #define GLU_POINT 100010
  68. #define GLU_LINE 100011
  69. #define GLU_FILL 100012
  70. #define GLU_SILHOUETTE 100013
  71. /* Quadric orientation */
  72. #define GLU_OUTSIDE 100020
  73. #define GLU_INSIDE 100021
  74. /* Tessellator */
  75. #define GLU_TESS_BEGIN 100100
  76. #define GLU_TESS_VERTEX 100101
  77. #define GLU_TESS_END 100102
  78. #define GLU_TESS_ERROR 100103
  79. #define GLU_TESS_EDGE_FLAG 100104
  80. #define GLU_TESS_COMBINE 100105
  81. #define GLU_TESS_BEGIN_DATA 100106
  82. #define GLU_TESS_VERTEX_DATA 100107
  83. #define GLU_TESS_END_DATA 100108
  84. #define GLU_TESS_ERROR_DATA 100109
  85. #define GLU_TESS_EDGE_FLAG_DATA 100110
  86. #define GLU_TESS_COMBINE_DATA 100111
  87. /* Winding rules */
  88. #define GLU_TESS_WINDING_ODD 100130
  89. #define GLU_TESS_WINDING_NONZERO 100131
  90. #define GLU_TESS_WINDING_POSITIVE 100132
  91. #define GLU_TESS_WINDING_NEGATIVE 100133
  92. #define GLU_TESS_WINDING_ABS_GEQ_TWO 100134
  93. /* Tessellation properties */
  94. #define GLU_TESS_WINDING_RULE 100140
  95. #define GLU_TESS_BOUNDARY_ONLY 100141
  96. #define GLU_TESS_TOLERANCE 100142
  97. /* Tessellation errors */
  98. #define GLU_TESS_ERROR1 100151 /* Missing gluBeginPolygon */
  99. #define GLU_TESS_ERROR2 100152 /* Missing gluBeginContour */
  100. #define GLU_TESS_ERROR3 100153 /* Missing gluEndPolygon */
  101. #define GLU_TESS_ERROR4 100154 /* Missing gluEndContour */
  102. #define GLU_TESS_ERROR5 100155 /* */
  103. #define GLU_TESS_ERROR6 100156 /* */
  104. #define GLU_TESS_ERROR7 100157 /* */
  105. #define GLU_TESS_ERROR8 100158 /* */
  106. /* NURBS */
  107. #define GLU_AUTO_LOAD_MATRIX 100200
  108. #define GLU_CULLING 100201
  109. #define GLU_PARAMETRIC_TOLERANCE 100202
  110. #define GLU_SAMPLING_TOLERANCE 100203
  111. #define GLU_DISPLAY_MODE 100204
  112. #define GLU_SAMPLING_METHOD 100205
  113. #define GLU_U_STEP 100206
  114. #define GLU_V_STEP 100207
  115. #define GLU_PATH_LENGTH 100215
  116. #define GLU_PARAMETRIC_ERROR 100216
  117. #define GLU_DOMAIN_DISTANCE 100217
  118. #define GLU_MAP1_TRIM_2 100210
  119. #define GLU_MAP1_TRIM_3 100211
  120. #define GLU_OUTLINE_POLYGON 100240
  121. #define GLU_OUTLINE_PATCH 100241
  122. #define GLU_NURBS_ERROR1 100251 /* spline order un-supported */
  123. #define GLU_NURBS_ERROR2 100252 /* too few knots */
  124. #define GLU_NURBS_ERROR3 100253 /* valid knot range is empty */
  125. #define GLU_NURBS_ERROR4 100254 /* decreasing knot sequence */
  126. #define GLU_NURBS_ERROR5 100255 /* knot multiplicity > spline order */
  127. #define GLU_NURBS_ERROR6 100256 /* endcurve() must follow bgncurve() */
  128. #define GLU_NURBS_ERROR7 100257 /* bgncurve() must precede endcurve() */
  129. #define GLU_NURBS_ERROR8 100258 /* ctrlarray or knot vector is NULL */
  130. #define GLU_NURBS_ERROR9 100259 /* can't draw pwlcurves */
  131. #define GLU_NURBS_ERROR10 100260 /* missing gluNurbsCurve() */
  132. #define GLU_NURBS_ERROR11 100261 /* missing gluNurbsSurface() */
  133. #define GLU_NURBS_ERROR12 100262 /* endtrim() must precede endsurface() */
  134. #define GLU_NURBS_ERROR13 100263 /* bgnsurface() must precede endsurface() */
  135. #define GLU_NURBS_ERROR14 100264 /* curve of improper type passed as trim curve */
  136. #define GLU_NURBS_ERROR15 100265 /* bgnsurface() must precede bgntrim() */
  137. #define GLU_NURBS_ERROR16 100266 /* endtrim() must follow bgntrim() */
  138. #define GLU_NURBS_ERROR17 100267 /* bgntrim() must precede endtrim()*/
  139. #define GLU_NURBS_ERROR18 100268 /* invalid or missing trim curve*/
  140. #define GLU_NURBS_ERROR19 100269 /* bgntrim() must precede pwlcurve() */
  141. #define GLU_NURBS_ERROR20 100270 /* pwlcurve referenced twice*/
  142. #define GLU_NURBS_ERROR21 100271 /* pwlcurve and nurbscurve mixed */
  143. #define GLU_NURBS_ERROR22 100272 /* improper usage of trim data type */
  144. #define GLU_NURBS_ERROR23 100273 /* nurbscurve referenced twice */
  145. #define GLU_NURBS_ERROR24 100274 /* nurbscurve and pwlcurve mixed */
  146. #define GLU_NURBS_ERROR25 100275 /* nurbssurface referenced twice */
  147. #define GLU_NURBS_ERROR26 100276 /* invalid property */
  148. #define GLU_NURBS_ERROR27 100277 /* endsurface() must follow bgnsurface() */
  149. #define GLU_NURBS_ERROR28 100278 /* intersecting or misoriented trim curves */
  150. #define GLU_NURBS_ERROR29 100279 /* intersecting trim curves */
  151. #define GLU_NURBS_ERROR30 100280 /* UNUSED */
  152. #define GLU_NURBS_ERROR31 100281 /* unconnected trim curves */
  153. #define GLU_NURBS_ERROR32 100282 /* unknown knot error */
  154. #define GLU_NURBS_ERROR33 100283 /* negative vertex count encountered */
  155. #define GLU_NURBS_ERROR34 100284 /* negative byte-stride */
  156. #define GLU_NURBS_ERROR35 100285 /* unknown type descriptor */
  157. #define GLU_NURBS_ERROR36 100286 /* null control point reference */
  158. #define GLU_NURBS_ERROR37 100287 /* duplicate point on pwlcurve */
  159. /* GLU 1.3 and later */
  160. #define GLU_NURBS_MODE ?
  161. /* Errors */
  162. #define GLU_INVALID_ENUM 100900
  163. #define GLU_INVALID_VALUE 100901
  164. #define GLU_OUT_OF_MEMORY 100902
  165. #define GLU_INCOMPATIBLE_GL_VERSION 100903
  166. /* GLU 1.1 and later */
  167. #define GLU_VERSION 100800
  168. #define GLU_EXTENSIONS 100801
  169. /*** GLU 1.0 tessellation - obsolete! ***/
  170. /* Contour types */
  171. #define GLU_CW 100120
  172. #define GLU_CCW 100121
  173. #define GLU_INTERIOR 100122
  174. #define GLU_EXTERIOR 100123
  175. #define GLU_UNKNOWN 100124
  176. /* Tessellator */
  177. #define GLU_BEGIN GLU_TESS_BEGIN
  178. #define GLU_VERTEX GLU_TESS_VERTEX
  179. #define GLU_END GLU_TESS_END
  180. #define GLU_ERROR GLU_TESS_ERROR
  181. #define GLU_EDGE_FLAG GLU_TESS_EDGE_FLAG
  182. /*
  183. * These are the GLU 1.1 typedefs. GLU 1.3 has different ones!
  184. */
  185. #if defined(__BEOS__)
  186. /* The BeOS does something funky and makes these typedefs in one
  187. * of its system headers.
  188. */
  189. #else
  190. typedef struct GLUquadric GLUquadricObj;
  191. typedef struct GLUnurbs GLUnurbsObj;
  192. /* FIXME: We need to implement the other 1.3 typedefs - GH */
  193. typedef struct GLUtesselator GLUtesselator;
  194. typedef GLUtesselator GLUtriangulatorObj;
  195. #endif
  196. #if defined(__BEOS__) || defined(__QUICKDRAW__)
  197. #pragma export on
  198. #endif
  199. /*
  200. *
  201. * Miscellaneous functions
  202. *
  203. */
  204. GLUAPI void GLAPIENTRY gluLookAt( GLdouble eyex, GLdouble eyey, GLdouble eyez,
  205. GLdouble centerx, GLdouble centery,
  206. GLdouble centerz,
  207. GLdouble upx, GLdouble upy, GLdouble upz );
  208. GLUAPI void GLAPIENTRY gluOrtho2D( GLdouble left, GLdouble right,
  209. GLdouble bottom, GLdouble top );
  210. GLUAPI void GLAPIENTRY gluPerspective( GLdouble fovy, GLdouble aspect,
  211. GLdouble zNear, GLdouble zFar );
  212. GLUAPI void GLAPIENTRY gluPickMatrix( GLdouble x, GLdouble y,
  213. GLdouble width, GLdouble height,
  214. const GLint viewport[4] );
  215. GLUAPI GLint GLAPIENTRY gluProject( GLdouble objx, GLdouble objy, GLdouble objz,
  216. const GLdouble modelMatrix[16],
  217. const GLdouble projMatrix[16],
  218. const GLint viewport[4],
  219. GLdouble *winx, GLdouble *winy,
  220. GLdouble *winz );
  221. GLUAPI GLint GLAPIENTRY gluUnProject( GLdouble winx, GLdouble winy,
  222. GLdouble winz,
  223. const GLdouble modelMatrix[16],
  224. const GLdouble projMatrix[16],
  225. const GLint viewport[4],
  226. GLdouble *objx, GLdouble *objy,
  227. GLdouble *objz );
  228. GLUAPI const GLubyte* GLAPIENTRY gluErrorString( GLenum errorCode );
  229. /*
  230. *
  231. * Mipmapping and image scaling
  232. *
  233. */
  234. GLUAPI GLint GLAPIENTRY gluScaleImage( GLenum format,
  235. GLint widthin, GLint heightin,
  236. GLenum typein, const void *datain,
  237. GLint widthout, GLint heightout,
  238. GLenum typeout, void *dataout );
  239. GLUAPI GLint GLAPIENTRY gluBuild1DMipmaps( GLenum target, GLint components,
  240. GLint width, GLenum format,
  241. GLenum type, const void *data );
  242. GLUAPI GLint GLAPIENTRY gluBuild2DMipmaps( GLenum target, GLint components,
  243. GLint width, GLint height,
  244. GLenum format,
  245. GLenum type, const void *data );
  246. /*
  247. *
  248. * Quadrics
  249. *
  250. */
  251. GLUAPI GLUquadricObj* GLAPIENTRY gluNewQuadric( void );
  252. GLUAPI void GLAPIENTRY gluDeleteQuadric( GLUquadricObj *state );
  253. GLUAPI void GLAPIENTRY gluQuadricDrawStyle( GLUquadricObj *quadObject,
  254. GLenum drawStyle );
  255. GLUAPI void GLAPIENTRY gluQuadricOrientation( GLUquadricObj *quadObject,
  256. GLenum orientation );
  257. GLUAPI void GLAPIENTRY gluQuadricNormals( GLUquadricObj *quadObject,
  258. GLenum normals );
  259. GLUAPI void GLAPIENTRY gluQuadricTexture( GLUquadricObj *quadObject,
  260. GLboolean textureCoords );
  261. GLUAPI void GLAPIENTRY gluQuadricCallback( GLUquadricObj *qobj,
  262. GLenum which,
  263. void (GLCALLBACK *fn)() );
  264. GLUAPI void GLAPIENTRY gluCylinder( GLUquadricObj *qobj,
  265. GLdouble baseRadius,
  266. GLdouble topRadius,
  267. GLdouble height,
  268. GLint slices, GLint stacks );
  269. GLUAPI void GLAPIENTRY gluSphere( GLUquadricObj *qobj,
  270. GLdouble radius, GLint slices,
  271. GLint stacks );
  272. GLUAPI void GLAPIENTRY gluDisk( GLUquadricObj *qobj,
  273. GLdouble innerRadius, GLdouble outerRadius,
  274. GLint slices, GLint loops );
  275. GLUAPI void GLAPIENTRY gluPartialDisk( GLUquadricObj *qobj, GLdouble innerRadius,
  276. GLdouble outerRadius, GLint slices,
  277. GLint loops, GLdouble startAngle,
  278. GLdouble sweepAngle );
  279. /*
  280. *
  281. * Nurbs
  282. *
  283. */
  284. GLUAPI GLUnurbsObj* GLAPIENTRY gluNewNurbsRenderer( void );
  285. GLUAPI void GLAPIENTRY gluDeleteNurbsRenderer( GLUnurbsObj *nobj );
  286. GLUAPI void GLAPIENTRY gluLoadSamplingMatrices( GLUnurbsObj *nobj,
  287. const GLfloat modelMatrix[16],
  288. const GLfloat projMatrix[16],
  289. const GLint viewport[4] );
  290. GLUAPI void GLAPIENTRY gluNurbsProperty( GLUnurbsObj *nobj, GLenum property,
  291. GLfloat value );
  292. GLUAPI void GLAPIENTRY gluGetNurbsProperty( GLUnurbsObj *nobj, GLenum property,
  293. GLfloat *value );
  294. GLUAPI void GLAPIENTRY gluBeginCurve( GLUnurbsObj *nobj );
  295. GLUAPI void GLAPIENTRY gluEndCurve( GLUnurbsObj * nobj );
  296. GLUAPI void GLAPIENTRY gluNurbsCurve( GLUnurbsObj *nobj, GLint nknots,
  297. GLfloat *knot, GLint stride,
  298. GLfloat *ctlarray, GLint order,
  299. GLenum type );
  300. GLUAPI void GLAPIENTRY gluBeginSurface( GLUnurbsObj *nobj );
  301. GLUAPI void GLAPIENTRY gluEndSurface( GLUnurbsObj * nobj );
  302. GLUAPI void GLAPIENTRY gluNurbsSurface( GLUnurbsObj *nobj,
  303. GLint sknot_count, GLfloat *sknot,
  304. GLint tknot_count, GLfloat *tknot,
  305. GLint s_stride, GLint t_stride,
  306. GLfloat *ctlarray,
  307. GLint sorder, GLint torder,
  308. GLenum type );
  309. GLUAPI void GLAPIENTRY gluBeginTrim( GLUnurbsObj *nobj );
  310. GLUAPI void GLAPIENTRY gluEndTrim( GLUnurbsObj *nobj );
  311. GLUAPI void GLAPIENTRY gluPwlCurve( GLUnurbsObj *nobj, GLint count,
  312. GLfloat *array, GLint stride,
  313. GLenum type );
  314. GLUAPI void GLAPIENTRY gluNurbsCallback( GLUnurbsObj *nobj, GLenum which,
  315. void (GLCALLBACK *fn)() );
  316. /*
  317. *
  318. * Polygon tessellation
  319. *
  320. */
  321. GLUAPI GLUtesselator* GLAPIENTRY gluNewTess( void );
  322. GLUAPI void GLAPIENTRY gluDeleteTess( GLUtesselator *tobj );
  323. GLUAPI void GLAPIENTRY gluTessBeginPolygon( GLUtesselator *tobj,
  324. void *polygon_data );
  325. GLUAPI void GLAPIENTRY gluTessBeginContour( GLUtesselator *tobj );
  326. GLUAPI void GLAPIENTRY gluTessVertex( GLUtesselator *tobj, GLdouble coords[3],
  327. void *vertex_data );
  328. GLUAPI void GLAPIENTRY gluTessEndContour( GLUtesselator *tobj );
  329. GLUAPI void GLAPIENTRY gluTessEndPolygon( GLUtesselator *tobj );
  330. GLUAPI void GLAPIENTRY gluTessProperty( GLUtesselator *tobj, GLenum which,
  331. GLdouble value );
  332. GLUAPI void GLAPIENTRY gluTessNormal( GLUtesselator *tobj, GLdouble x,
  333. GLdouble y, GLdouble z );
  334. GLUAPI void GLAPIENTRY gluTessCallback( GLUtesselator *tobj, GLenum which,
  335. void (GLCALLBACK *fn)() );
  336. GLUAPI void GLAPIENTRY gluGetTessProperty( GLUtesselator *tobj, GLenum which,
  337. GLdouble *value );
  338. /*
  339. *
  340. * Obsolete 1.0 tessellation functions
  341. *
  342. */
  343. GLUAPI void GLAPIENTRY gluBeginPolygon( GLUtesselator *tobj );
  344. GLUAPI void GLAPIENTRY gluNextContour( GLUtesselator *tobj, GLenum type );
  345. GLUAPI void GLAPIENTRY gluEndPolygon( GLUtesselator *tobj );
  346. /*
  347. *
  348. * New functions in GLU 1.1
  349. *
  350. */
  351. GLUAPI const GLubyte* GLAPIENTRY gluGetString( GLenum name );
  352. /*
  353. *
  354. * GLU 1.3 functions
  355. *
  356. */
  357. GLUAPI GLboolean GLAPIENTRY
  358. gluCheckExtension(const char *extName, const GLubyte *extString);
  359. GLUAPI GLint GLAPIENTRY
  360. gluBuild3DMipmaps( GLenum target, GLint internalFormat, GLsizei width,
  361. GLsizei height, GLsizei depth, GLenum format,
  362. GLenum type, const void *data );
  363. GLUAPI GLint GLAPIENTRY
  364. gluBuild1DMipmapLevels( GLenum target, GLint internalFormat, GLsizei width,
  365. GLenum format, GLenum type, GLint level, GLint base,
  366. GLint max, const void *data );
  367. GLUAPI GLint GLAPIENTRY
  368. gluBuild2DMipmapLevels( GLenum target, GLint internalFormat, GLsizei width,
  369. GLsizei height, GLenum format, GLenum type,
  370. GLint level, GLint base, GLint max,
  371. const void *data );
  372. GLUAPI GLint GLAPIENTRY
  373. gluBuild3DMipmapLevels( GLenum target, GLint internalFormat, GLsizei width,
  374. GLsizei height, GLsizei depth, GLenum format,
  375. GLenum type, GLint level, GLint base, GLint max,
  376. const void *data );
  377. GLUAPI GLint GLAPIENTRY
  378. gluUnProject4( GLdouble winx, GLdouble winy, GLdouble winz, GLdouble clipw,
  379. const GLdouble modelMatrix[16], const GLdouble projMatrix[16],
  380. const GLint viewport[4], GLclampd zNear, GLclampd zFar,
  381. GLdouble *objx, GLdouble *objy, GLdouble *objz,
  382. GLdouble *objw );
  383. #if defined(__BEOS__) || defined(__QUICKDRAW__)
  384. #pragma export off
  385. #endif
  386. #ifdef macintosh
  387. #pragma enumsalwaysint reset
  388. #if PRAGMA_IMPORT_SUPPORTED
  389. #pragma import off
  390. #endif
  391. #endif
  392. #ifdef __cplusplus
  393. }
  394. #endif
  395. #endif /* __glu_h__ */