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 16KB

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