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.

glu.h 17KB

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