gl.h 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. /*
  2. * Mesa 3-D graphics library
  3. *
  4. * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
  5. * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a
  8. * copy of this software and associated documentation files (the "Software"),
  9. * to deal in the Software without restriction, including without limitation
  10. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11. * and/or sell copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included
  15. * in all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  18. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  21. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  22. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  23. * OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef __gl_h_
  26. #define __gl_h_
  27. /**********************************************************************
  28. * Begin system-specific stuff.
  29. */
  30. #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__)
  31. #define __WIN32__
  32. #endif
  33. #if defined(__WIN32__) && !defined(__CYGWIN__)
  34. # if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */
  35. # define GLAPI __declspec(dllexport)
  36. # elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */
  37. # define GLAPI __declspec(dllimport)
  38. # else /* for use with static link lib build of Win32 edition only */
  39. # define GLAPI extern
  40. # endif
  41. # if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */
  42. # define GLAPIENTRY
  43. # else
  44. # define GLAPIENTRY __stdcall
  45. # endif
  46. #elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */
  47. # define GLAPI extern
  48. # define GLAPIENTRY __stdcall
  49. #elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
  50. # define GLAPI __attribute__((visibility("default")))
  51. # define GLAPIENTRY
  52. #endif /* WIN32 && !CYGWIN */
  53. /*
  54. * WINDOWS: Include windows.h here to define APIENTRY.
  55. * It is also useful when applications include this file by
  56. * including only glut.h, since glut.h depends on windows.h.
  57. * Applications needing to include windows.h with parms other
  58. * than "WIN32_LEAN_AND_MEAN" may include windows.h before
  59. * glut.h or gl.h.
  60. */
  61. #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)
  62. #ifndef WIN32_LEAN_AND_MEAN
  63. #define WIN32_LEAN_AND_MEAN 1
  64. #endif
  65. #include <windows.h>
  66. #endif
  67. #ifndef GLAPI
  68. #define GLAPI extern
  69. #endif
  70. #ifndef GLAPIENTRY
  71. #define GLAPIENTRY
  72. #endif
  73. #ifndef APIENTRY
  74. #define APIENTRY GLAPIENTRY
  75. #endif
  76. /* "P" suffix to be used for a pointer to a function */
  77. #ifndef APIENTRYP
  78. #define APIENTRYP APIENTRY *
  79. #endif
  80. #ifndef GLAPIENTRYP
  81. #define GLAPIENTRYP GLAPIENTRY *
  82. #endif
  83. /*
  84. * End system-specific stuff.
  85. **********************************************************************/
  86. #ifdef __cplusplus
  87. extern "C" {
  88. #endif
  89. #define GL_VERSION_1_1 1
  90. #define GL_VERSION_1_2 1
  91. #define GL_VERSION_1_3 1
  92. #define GL_ARB_imaging 1
  93. /*
  94. * Datatypes
  95. */
  96. typedef unsigned int GLenum;
  97. typedef unsigned char GLboolean;
  98. typedef unsigned int GLbitfield;
  99. typedef void GLvoid;
  100. typedef signed char GLbyte; /* 1-byte signed */
  101. typedef short GLshort; /* 2-byte signed */
  102. typedef int GLint; /* 4-byte signed */
  103. typedef unsigned char GLubyte; /* 1-byte unsigned */
  104. typedef unsigned short GLushort; /* 2-byte unsigned */
  105. typedef unsigned int GLuint; /* 4-byte unsigned */
  106. typedef int GLsizei; /* 4-byte signed */
  107. typedef float GLfloat; /* single precision float */
  108. typedef float GLclampf; /* single precision float in [0,1] */
  109. typedef double GLdouble; /* double precision float */
  110. typedef double GLclampd; /* double precision float in [0,1] */
  111. /*
  112. * Constants
  113. */
  114. /* Boolean values */
  115. #define GL_FALSE 0
  116. #define GL_TRUE 1
  117. /* Data types */
  118. #define GL_BYTE 0x1400
  119. #define GL_UNSIGNED_BYTE 0x1401
  120. #define GL_SHORT 0x1402
  121. #define GL_UNSIGNED_SHORT 0x1403
  122. #define GL_INT 0x1404
  123. #define GL_UNSIGNED_INT 0x1405
  124. #define GL_FLOAT 0x1406
  125. #define GL_2_BYTES 0x1407
  126. #define GL_3_BYTES 0x1408
  127. #define GL_4_BYTES 0x1409
  128. #define GL_DOUBLE 0x140A
  129. /* Primitives */
  130. #define GL_POINTS 0x0000
  131. #define GL_LINES 0x0001
  132. #define GL_LINE_LOOP 0x0002
  133. #define GL_LINE_STRIP 0x0003
  134. #define GL_TRIANGLES 0x0004
  135. #define GL_TRIANGLE_STRIP 0x0005
  136. #define GL_TRIANGLE_FAN 0x0006
  137. #define GL_QUADS 0x0007
  138. #define GL_QUAD_STRIP 0x0008
  139. #define GL_POLYGON 0x0009
  140. /* Vertex Arrays */
  141. #define GL_VERTEX_ARRAY 0x8074
  142. #define GL_NORMAL_ARRAY 0x8075
  143. #define GL_COLOR_ARRAY 0x8076
  144. #define GL_INDEX_ARRAY 0x8077
  145. #define GL_TEXTURE_COORD_ARRAY 0x8078
  146. #define GL_EDGE_FLAG_ARRAY 0x8079
  147. #define GL_VERTEX_ARRAY_SIZE 0x807A
  148. #define GL_VERTEX_ARRAY_TYPE 0x807B
  149. #define GL_VERTEX_ARRAY_STRIDE 0x807C
  150. #define GL_NORMAL_ARRAY_TYPE 0x807E
  151. #define GL_NORMAL_ARRAY_STRIDE 0x807F
  152. #define GL_COLOR_ARRAY_SIZE 0x8081
  153. #define GL_COLOR_ARRAY_TYPE 0x8082
  154. #define GL_COLOR_ARRAY_STRIDE 0x8083
  155. #define GL_INDEX_ARRAY_TYPE 0x8085
  156. #define GL_INDEX_ARRAY_STRIDE 0x8086
  157. #define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088
  158. #define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089
  159. #define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A
  160. #define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C
  161. #define GL_VERTEX_ARRAY_POINTER 0x808E
  162. #define GL_NORMAL_ARRAY_POINTER 0x808F
  163. #define GL_COLOR_ARRAY_POINTER 0x8090
  164. #define GL_INDEX_ARRAY_POINTER 0x8091
  165. #define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092
  166. #define GL_EDGE_FLAG_ARRAY_POINTER 0x8093
  167. #define GL_V2F 0x2A20
  168. #define GL_V3F 0x2A21
  169. #define GL_C4UB_V2F 0x2A22
  170. #define GL_C4UB_V3F 0x2A23
  171. #define GL_C3F_V3F 0x2A24
  172. #define GL_N3F_V3F 0x2A25
  173. #define GL_C4F_N3F_V3F 0x2A26
  174. #define GL_T2F_V3F 0x2A27
  175. #define GL_T4F_V4F 0x2A28
  176. #define GL_T2F_C4UB_V3F 0x2A29
  177. #define GL_T2F_C3F_V3F 0x2A2A
  178. #define GL_T2F_N3F_V3F 0x2A2B
  179. #define GL_T2F_C4F_N3F_V3F 0x2A2C
  180. #define GL_T4F_C4F_N3F_V4F 0x2A2D
  181. /* Matrix Mode */
  182. #define GL_MATRIX_MODE 0x0BA0
  183. #define GL_MODELVIEW 0x1700
  184. #define GL_PROJECTION 0x1701
  185. #define GL_TEXTURE 0x1702
  186. /* Points */
  187. #define GL_POINT_SMOOTH 0x0B10
  188. #define GL_POINT_SIZE 0x0B11
  189. #define GL_POINT_SIZE_GRANULARITY 0x0B13
  190. #define GL_POINT_SIZE_RANGE 0x0B12
  191. /* Lines */
  192. #define GL_LINE_SMOOTH 0x0B20
  193. #define GL_LINE_STIPPLE 0x0B24
  194. #define GL_LINE_STIPPLE_PATTERN 0x0B25
  195. #define GL_LINE_STIPPLE_REPEAT 0x0B26
  196. #define GL_LINE_WIDTH 0x0B21
  197. #define GL_LINE_WIDTH_GRANULARITY 0x0B23
  198. #define GL_LINE_WIDTH_RANGE 0x0B22
  199. /* Polygons */
  200. #define GL_POINT 0x1B00
  201. #define GL_LINE 0x1B01
  202. #define GL_FILL 0x1B02
  203. #define GL_CW 0x0900
  204. #define GL_CCW 0x0901
  205. #define GL_FRONT 0x0404
  206. #define GL_BACK 0x0405
  207. #define GL_POLYGON_MODE 0x0B40
  208. #define GL_POLYGON_SMOOTH 0x0B41
  209. #define GL_POLYGON_STIPPLE 0x0B42
  210. #define GL_EDGE_FLAG 0x0B43
  211. #define GL_CULL_FACE 0x0B44
  212. #define GL_CULL_FACE_MODE 0x0B45
  213. #define GL_FRONT_FACE 0x0B46
  214. #define GL_POLYGON_OFFSET_FACTOR 0x8038
  215. #define GL_POLYGON_OFFSET_UNITS 0x2A00
  216. #define GL_POLYGON_OFFSET_POINT 0x2A01
  217. #define GL_POLYGON_OFFSET_LINE 0x2A02
  218. #define GL_POLYGON_OFFSET_FILL 0x8037
  219. /* Display Lists */
  220. #define GL_COMPILE 0x1300
  221. #define GL_COMPILE_AND_EXECUTE 0x1301
  222. #define GL_LIST_BASE 0x0B32
  223. #define GL_LIST_INDEX 0x0B33
  224. #define GL_LIST_MODE 0x0B30
  225. /* Depth buffer */
  226. #define GL_NEVER 0x0200
  227. #define GL_LESS 0x0201
  228. #define GL_EQUAL 0x0202
  229. #define GL_LEQUAL 0x0203
  230. #define GL_GREATER 0x0204
  231. #define GL_NOTEQUAL 0x0205
  232. #define GL_GEQUAL 0x0206
  233. #define GL_ALWAYS 0x0207
  234. #define GL_DEPTH_TEST 0x0B71
  235. #define GL_DEPTH_BITS 0x0D56
  236. #define GL_DEPTH_CLEAR_VALUE 0x0B73
  237. #define GL_DEPTH_FUNC 0x0B74
  238. #define GL_DEPTH_RANGE 0x0B70
  239. #define GL_DEPTH_WRITEMASK 0x0B72
  240. #define GL_DEPTH_COMPONENT 0x1902
  241. /* Lighting */
  242. #define GL_LIGHTING 0x0B50
  243. #define GL_LIGHT0 0x4000
  244. #define GL_LIGHT1 0x4001
  245. #define GL_LIGHT2 0x4002
  246. #define GL_LIGHT3 0x4003
  247. #define GL_LIGHT4 0x4004
  248. #define GL_LIGHT5 0x4005
  249. #define GL_LIGHT6 0x4006
  250. #define GL_LIGHT7 0x4007
  251. #define GL_SPOT_EXPONENT 0x1205
  252. #define GL_SPOT_CUTOFF 0x1206
  253. #define GL_CONSTANT_ATTENUATION 0x1207
  254. #define GL_LINEAR_ATTENUATION 0x1208
  255. #define GL_QUADRATIC_ATTENUATION 0x1209
  256. #define GL_AMBIENT 0x1200
  257. #define GL_DIFFUSE 0x1201
  258. #define GL_SPECULAR 0x1202
  259. #define GL_SHININESS 0x1601
  260. #define GL_EMISSION 0x1600
  261. #define GL_POSITION 0x1203
  262. #define GL_SPOT_DIRECTION 0x1204
  263. #define GL_AMBIENT_AND_DIFFUSE 0x1602
  264. #define GL_COLOR_INDEXES 0x1603
  265. #define GL_LIGHT_MODEL_TWO_SIDE 0x0B52
  266. #define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51
  267. #define GL_LIGHT_MODEL_AMBIENT 0x0B53
  268. #define GL_FRONT_AND_BACK 0x0408
  269. #define GL_SHADE_MODEL 0x0B54
  270. #define GL_FLAT 0x1D00
  271. #define GL_SMOOTH 0x1D01
  272. #define GL_COLOR_MATERIAL 0x0B57
  273. #define GL_COLOR_MATERIAL_FACE 0x0B55
  274. #define GL_COLOR_MATERIAL_PARAMETER 0x0B56
  275. #define GL_NORMALIZE 0x0BA1
  276. /* User clipping planes */
  277. #define GL_CLIP_PLANE0 0x3000
  278. #define GL_CLIP_PLANE1 0x3001
  279. #define GL_CLIP_PLANE2 0x3002
  280. #define GL_CLIP_PLANE3 0x3003
  281. #define GL_CLIP_PLANE4 0x3004
  282. #define GL_CLIP_PLANE5 0x3005
  283. /* Accumulation buffer */
  284. #define GL_ACCUM_RED_BITS 0x0D58
  285. #define GL_ACCUM_GREEN_BITS 0x0D59
  286. #define GL_ACCUM_BLUE_BITS 0x0D5A
  287. #define GL_ACCUM_ALPHA_BITS 0x0D5B
  288. #define GL_ACCUM_CLEAR_VALUE 0x0B80
  289. #define GL_ACCUM 0x0100
  290. #define GL_ADD 0x0104
  291. #define GL_LOAD 0x0101
  292. #define GL_MULT 0x0103
  293. #define GL_RETURN 0x0102
  294. /* Alpha testing */
  295. #define GL_ALPHA_TEST 0x0BC0
  296. #define GL_ALPHA_TEST_REF 0x0BC2
  297. #define GL_ALPHA_TEST_FUNC 0x0BC1
  298. /* Blending */
  299. #define GL_BLEND 0x0BE2
  300. #define GL_BLEND_SRC 0x0BE1
  301. #define GL_BLEND_DST 0x0BE0
  302. #define GL_ZERO 0
  303. #define GL_ONE 1
  304. #define GL_SRC_COLOR 0x0300
  305. #define GL_ONE_MINUS_SRC_COLOR 0x0301
  306. #define GL_SRC_ALPHA 0x0302
  307. #define GL_ONE_MINUS_SRC_ALPHA 0x0303
  308. #define GL_DST_ALPHA 0x0304
  309. #define GL_ONE_MINUS_DST_ALPHA 0x0305
  310. #define GL_DST_COLOR 0x0306
  311. #define GL_ONE_MINUS_DST_COLOR 0x0307
  312. #define GL_SRC_ALPHA_SATURATE 0x0308
  313. /* Render Mode */
  314. #define GL_FEEDBACK 0x1C01
  315. #define GL_RENDER 0x1C00
  316. #define GL_SELECT 0x1C02
  317. /* Feedback */
  318. #define GL_2D 0x0600
  319. #define GL_3D 0x0601
  320. #define GL_3D_COLOR 0x0602
  321. #define GL_3D_COLOR_TEXTURE 0x0603
  322. #define GL_4D_COLOR_TEXTURE 0x0604
  323. #define GL_POINT_TOKEN 0x0701
  324. #define GL_LINE_TOKEN 0x0702
  325. #define GL_LINE_RESET_TOKEN 0x0707
  326. #define GL_POLYGON_TOKEN 0x0703
  327. #define GL_BITMAP_TOKEN 0x0704
  328. #define GL_DRAW_PIXEL_TOKEN 0x0705
  329. #define GL_COPY_PIXEL_TOKEN 0x0706
  330. #define GL_PASS_THROUGH_TOKEN 0x0700
  331. #define GL_FEEDBACK_BUFFER_POINTER 0x0DF0
  332. #define GL_FEEDBACK_BUFFER_SIZE 0x0DF1
  333. #define GL_FEEDBACK_BUFFER_TYPE 0x0DF2
  334. /* Selection */
  335. #define GL_SELECTION_BUFFER_POINTER 0x0DF3
  336. #define GL_SELECTION_BUFFER_SIZE 0x0DF4
  337. /* Fog */
  338. #define GL_FOG 0x0B60
  339. #define GL_FOG_MODE 0x0B65
  340. #define GL_FOG_DENSITY 0x0B62
  341. #define GL_FOG_COLOR 0x0B66
  342. #define GL_FOG_INDEX 0x0B61
  343. #define GL_FOG_START 0x0B63
  344. #define GL_FOG_END 0x0B64
  345. #define GL_LINEAR 0x2601
  346. #define GL_EXP 0x0800
  347. #define GL_EXP2 0x0801
  348. /* Logic Ops */
  349. #define GL_LOGIC_OP 0x0BF1
  350. #define GL_INDEX_LOGIC_OP 0x0BF1
  351. #define GL_COLOR_LOGIC_OP 0x0BF2
  352. #define GL_LOGIC_OP_MODE 0x0BF0
  353. #define GL_CLEAR 0x1500
  354. #define GL_SET 0x150F
  355. #define GL_COPY 0x1503
  356. #define GL_COPY_INVERTED 0x150C
  357. #define GL_NOOP 0x1505
  358. #define GL_INVERT 0x150A
  359. #define GL_AND 0x1501
  360. #define GL_NAND 0x150E
  361. #define GL_OR 0x1507
  362. #define GL_NOR 0x1508
  363. #define GL_XOR 0x1506
  364. #define GL_EQUIV 0x1509
  365. #define GL_AND_REVERSE 0x1502
  366. #define GL_AND_INVERTED 0x1504
  367. #define GL_OR_REVERSE 0x150B
  368. #define GL_OR_INVERTED 0x150D
  369. /* Stencil */
  370. #define GL_STENCIL_BITS 0x0D57
  371. #define GL_STENCIL_TEST 0x0B90
  372. #define GL_STENCIL_CLEAR_VALUE 0x0B91
  373. #define GL_STENCIL_FUNC 0x0B92
  374. #define GL_STENCIL_VALUE_MASK 0x0B93
  375. #define GL_STENCIL_FAIL 0x0B94
  376. #define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95
  377. #define GL_STENCIL_PASS_DEPTH_PASS 0x0B96
  378. #define GL_STENCIL_REF 0x0B97
  379. #define GL_STENCIL_WRITEMASK 0x0B98
  380. #define GL_STENCIL_INDEX 0x1901
  381. #define GL_KEEP 0x1E00
  382. #define GL_REPLACE 0x1E01
  383. #define GL_INCR 0x1E02
  384. #define GL_DECR 0x1E03
  385. /* Buffers, Pixel Drawing/Reading */
  386. #define GL_NONE 0
  387. #define GL_LEFT 0x0406
  388. #define GL_RIGHT 0x0407
  389. /*GL_FRONT 0x0404 */
  390. /*GL_BACK 0x0405 */
  391. /*GL_FRONT_AND_BACK 0x0408 */
  392. #define GL_FRONT_LEFT 0x0400
  393. #define GL_FRONT_RIGHT 0x0401
  394. #define GL_BACK_LEFT 0x0402
  395. #define GL_BACK_RIGHT 0x0403
  396. #define GL_AUX0 0x0409
  397. #define GL_AUX1 0x040A
  398. #define GL_AUX2 0x040B
  399. #define GL_AUX3 0x040C
  400. #define GL_COLOR_INDEX 0x1900
  401. #define GL_RED 0x1903
  402. #define GL_GREEN 0x1904
  403. #define GL_BLUE 0x1905
  404. #define GL_ALPHA 0x1906
  405. #define GL_LUMINANCE 0x1909
  406. #define GL_LUMINANCE_ALPHA 0x190A
  407. #define GL_ALPHA_BITS 0x0D55
  408. #define GL_RED_BITS 0x0D52
  409. #define GL_GREEN_BITS 0x0D53
  410. #define GL_BLUE_BITS 0x0D54
  411. #define GL_INDEX_BITS 0x0D51
  412. #define GL_SUBPIXEL_BITS 0x0D50
  413. #define GL_AUX_BUFFERS 0x0C00
  414. #define GL_READ_BUFFER 0x0C02
  415. #define GL_DRAW_BUFFER 0x0C01
  416. #define GL_DOUBLEBUFFER 0x0C32
  417. #define GL_STEREO 0x0C33
  418. #define GL_BITMAP 0x1A00
  419. #define GL_COLOR 0x1800
  420. #define GL_DEPTH 0x1801
  421. #define GL_STENCIL 0x1802
  422. #define GL_DITHER 0x0BD0
  423. #define GL_RGB 0x1907
  424. #define GL_RGBA 0x1908
  425. /* Implementation limits */
  426. #define GL_MAX_LIST_NESTING 0x0B31
  427. #define GL_MAX_EVAL_ORDER 0x0D30
  428. #define GL_MAX_LIGHTS 0x0D31
  429. #define GL_MAX_CLIP_PLANES 0x0D32
  430. #define GL_MAX_TEXTURE_SIZE 0x0D33
  431. #define GL_MAX_PIXEL_MAP_TABLE 0x0D34
  432. #define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35
  433. #define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36
  434. #define GL_MAX_NAME_STACK_DEPTH 0x0D37
  435. #define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38
  436. #define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39
  437. #define GL_MAX_VIEWPORT_DIMS 0x0D3A
  438. #define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B
  439. /* Gets */
  440. #define GL_ATTRIB_STACK_DEPTH 0x0BB0
  441. #define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1
  442. #define GL_COLOR_CLEAR_VALUE 0x0C22
  443. #define GL_COLOR_WRITEMASK 0x0C23
  444. #define GL_CURRENT_INDEX 0x0B01
  445. #define GL_CURRENT_COLOR 0x0B00
  446. #define GL_CURRENT_NORMAL 0x0B02
  447. #define GL_CURRENT_RASTER_COLOR 0x0B04
  448. #define GL_CURRENT_RASTER_DISTANCE 0x0B09
  449. #define GL_CURRENT_RASTER_INDEX 0x0B05
  450. #define GL_CURRENT_RASTER_POSITION 0x0B07
  451. #define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06
  452. #define GL_CURRENT_RASTER_POSITION_VALID 0x0B08
  453. #define GL_CURRENT_TEXTURE_COORDS 0x0B03
  454. #define GL_INDEX_CLEAR_VALUE 0x0C20
  455. #define GL_INDEX_MODE 0x0C30
  456. #define GL_INDEX_WRITEMASK 0x0C21
  457. #define GL_MODELVIEW_MATRIX 0x0BA6
  458. #define GL_MODELVIEW_STACK_DEPTH 0x0BA3
  459. #define GL_NAME_STACK_DEPTH 0x0D70
  460. #define GL_PROJECTION_MATRIX 0x0BA7
  461. #define GL_PROJECTION_STACK_DEPTH 0x0BA4
  462. #define GL_RENDER_MODE 0x0C40
  463. #define GL_RGBA_MODE 0x0C31
  464. #define GL_TEXTURE_MATRIX 0x0BA8
  465. #define GL_TEXTURE_STACK_DEPTH 0x0BA5
  466. #define GL_VIEWPORT 0x0BA2
  467. /* Evaluators */
  468. #define GL_AUTO_NORMAL 0x0D80
  469. #define GL_MAP1_COLOR_4 0x0D90
  470. #define GL_MAP1_INDEX 0x0D91
  471. #define GL_MAP1_NORMAL 0x0D92
  472. #define GL_MAP1_TEXTURE_COORD_1 0x0D93
  473. #define GL_MAP1_TEXTURE_COORD_2 0x0D94
  474. #define GL_MAP1_TEXTURE_COORD_3 0x0D95
  475. #define GL_MAP1_TEXTURE_COORD_4 0x0D96
  476. #define GL_MAP1_VERTEX_3 0x0D97
  477. #define GL_MAP1_VERTEX_4 0x0D98
  478. #define GL_MAP2_COLOR_4 0x0DB0
  479. #define GL_MAP2_INDEX 0x0DB1
  480. #define GL_MAP2_NORMAL 0x0DB2
  481. #define GL_MAP2_TEXTURE_COORD_1 0x0DB3
  482. #define GL_MAP2_TEXTURE_COORD_2 0x0DB4
  483. #define GL_MAP2_TEXTURE_COORD_3 0x0DB5
  484. #define GL_MAP2_TEXTURE_COORD_4 0x0DB6
  485. #define GL_MAP2_VERTEX_3 0x0DB7
  486. #define GL_MAP2_VERTEX_4 0x0DB8
  487. #define GL_MAP1_GRID_DOMAIN 0x0DD0
  488. #define GL_MAP1_GRID_SEGMENTS 0x0DD1
  489. #define GL_MAP2_GRID_DOMAIN 0x0DD2
  490. #define GL_MAP2_GRID_SEGMENTS 0x0DD3
  491. #define GL_COEFF 0x0A00
  492. #define GL_ORDER 0x0A01
  493. #define GL_DOMAIN 0x0A02
  494. /* Hints */
  495. #define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50
  496. #define GL_POINT_SMOOTH_HINT 0x0C51
  497. #define GL_LINE_SMOOTH_HINT 0x0C52
  498. #define GL_POLYGON_SMOOTH_HINT 0x0C53
  499. #define GL_FOG_HINT 0x0C54
  500. #define GL_DONT_CARE 0x1100
  501. #define GL_FASTEST 0x1101
  502. #define GL_NICEST 0x1102
  503. /* Scissor box */
  504. #define GL_SCISSOR_BOX 0x0C10
  505. #define GL_SCISSOR_TEST 0x0C11
  506. /* Pixel Mode / Transfer */
  507. #define GL_MAP_COLOR 0x0D10
  508. #define GL_MAP_STENCIL 0x0D11
  509. #define GL_INDEX_SHIFT 0x0D12
  510. #define GL_INDEX_OFFSET 0x0D13
  511. #define GL_RED_SCALE 0x0D14
  512. #define GL_RED_BIAS 0x0D15
  513. #define GL_GREEN_SCALE 0x0D18
  514. #define GL_GREEN_BIAS 0x0D19
  515. #define GL_BLUE_SCALE 0x0D1A
  516. #define GL_BLUE_BIAS 0x0D1B
  517. #define GL_ALPHA_SCALE 0x0D1C
  518. #define GL_ALPHA_BIAS 0x0D1D
  519. #define GL_DEPTH_SCALE 0x0D1E
  520. #define GL_DEPTH_BIAS 0x0D1F
  521. #define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1
  522. #define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0
  523. #define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2
  524. #define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3
  525. #define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4
  526. #define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5
  527. #define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6
  528. #define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7
  529. #define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8
  530. #define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9
  531. #define GL_PIXEL_MAP_S_TO_S 0x0C71
  532. #define GL_PIXEL_MAP_I_TO_I 0x0C70
  533. #define GL_PIXEL_MAP_I_TO_R 0x0C72
  534. #define GL_PIXEL_MAP_I_TO_G 0x0C73
  535. #define GL_PIXEL_MAP_I_TO_B 0x0C74
  536. #define GL_PIXEL_MAP_I_TO_A 0x0C75
  537. #define GL_PIXEL_MAP_R_TO_R 0x0C76
  538. #define GL_PIXEL_MAP_G_TO_G 0x0C77
  539. #define GL_PIXEL_MAP_B_TO_B 0x0C78
  540. #define GL_PIXEL_MAP_A_TO_A 0x0C79
  541. #define GL_PACK_ALIGNMENT 0x0D05
  542. #define GL_PACK_LSB_FIRST 0x0D01
  543. #define GL_PACK_ROW_LENGTH 0x0D02
  544. #define GL_PACK_SKIP_PIXELS 0x0D04
  545. #define GL_PACK_SKIP_ROWS 0x0D03
  546. #define GL_PACK_SWAP_BYTES 0x0D00
  547. #define GL_UNPACK_ALIGNMENT 0x0CF5
  548. #define GL_UNPACK_LSB_FIRST 0x0CF1
  549. #define GL_UNPACK_ROW_LENGTH 0x0CF2
  550. #define GL_UNPACK_SKIP_PIXELS 0x0CF4
  551. #define GL_UNPACK_SKIP_ROWS 0x0CF3
  552. #define GL_UNPACK_SWAP_BYTES 0x0CF0
  553. #define GL_ZOOM_X 0x0D16
  554. #define GL_ZOOM_Y 0x0D17
  555. /* Texture mapping */
  556. #define GL_TEXTURE_ENV 0x2300
  557. #define GL_TEXTURE_ENV_MODE 0x2200
  558. #define GL_TEXTURE_1D 0x0DE0
  559. #define GL_TEXTURE_2D 0x0DE1
  560. #define GL_TEXTURE_WRAP_S 0x2802
  561. #define GL_TEXTURE_WRAP_T 0x2803
  562. #define GL_TEXTURE_MAG_FILTER 0x2800
  563. #define GL_TEXTURE_MIN_FILTER 0x2801
  564. #define GL_TEXTURE_ENV_COLOR 0x2201
  565. #define GL_TEXTURE_GEN_S 0x0C60
  566. #define GL_TEXTURE_GEN_T 0x0C61
  567. #define GL_TEXTURE_GEN_R 0x0C62
  568. #define GL_TEXTURE_GEN_Q 0x0C63
  569. #define GL_TEXTURE_GEN_MODE 0x2500
  570. #define GL_TEXTURE_BORDER_COLOR 0x1004
  571. #define GL_TEXTURE_WIDTH 0x1000
  572. #define GL_TEXTURE_HEIGHT 0x1001
  573. #define GL_TEXTURE_BORDER 0x1005
  574. #define GL_TEXTURE_COMPONENTS 0x1003
  575. #define GL_TEXTURE_RED_SIZE 0x805C
  576. #define GL_TEXTURE_GREEN_SIZE 0x805D
  577. #define GL_TEXTURE_BLUE_SIZE 0x805E
  578. #define GL_TEXTURE_ALPHA_SIZE 0x805F
  579. #define GL_TEXTURE_LUMINANCE_SIZE 0x8060
  580. #define GL_TEXTURE_INTENSITY_SIZE 0x8061
  581. #define GL_NEAREST_MIPMAP_NEAREST 0x2700
  582. #define GL_NEAREST_MIPMAP_LINEAR 0x2702
  583. #define GL_LINEAR_MIPMAP_NEAREST 0x2701
  584. #define GL_LINEAR_MIPMAP_LINEAR 0x2703
  585. #define GL_OBJECT_LINEAR 0x2401
  586. #define GL_OBJECT_PLANE 0x2501
  587. #define GL_EYE_LINEAR 0x2400
  588. #define GL_EYE_PLANE 0x2502
  589. #define GL_SPHERE_MAP 0x2402
  590. #define GL_DECAL 0x2101
  591. #define GL_MODULATE 0x2100
  592. #define GL_NEAREST 0x2600
  593. #define GL_REPEAT 0x2901
  594. #define GL_CLAMP 0x2900
  595. #define GL_S 0x2000
  596. #define GL_T 0x2001
  597. #define GL_R 0x2002
  598. #define GL_Q 0x2003
  599. /* Utility */
  600. #define GL_VENDOR 0x1F00
  601. #define GL_RENDERER 0x1F01
  602. #define GL_VERSION 0x1F02
  603. #define GL_EXTENSIONS 0x1F03
  604. /* Errors */
  605. #define GL_NO_ERROR 0
  606. #define GL_INVALID_ENUM 0x0500
  607. #define GL_INVALID_VALUE 0x0501
  608. #define GL_INVALID_OPERATION 0x0502
  609. #define GL_STACK_OVERFLOW 0x0503
  610. #define GL_STACK_UNDERFLOW 0x0504
  611. #define GL_OUT_OF_MEMORY 0x0505
  612. /* glPush/PopAttrib bits */
  613. #define GL_CURRENT_BIT 0x00000001
  614. #define GL_POINT_BIT 0x00000002
  615. #define GL_LINE_BIT 0x00000004
  616. #define GL_POLYGON_BIT 0x00000008
  617. #define GL_POLYGON_STIPPLE_BIT 0x00000010
  618. #define GL_PIXEL_MODE_BIT 0x00000020
  619. #define GL_LIGHTING_BIT 0x00000040
  620. #define GL_FOG_BIT 0x00000080
  621. #define GL_DEPTH_BUFFER_BIT 0x00000100
  622. #define GL_ACCUM_BUFFER_BIT 0x00000200
  623. #define GL_STENCIL_BUFFER_BIT 0x00000400
  624. #define GL_VIEWPORT_BIT 0x00000800
  625. #define GL_TRANSFORM_BIT 0x00001000
  626. #define GL_ENABLE_BIT 0x00002000
  627. #define GL_COLOR_BUFFER_BIT 0x00004000
  628. #define GL_HINT_BIT 0x00008000
  629. #define GL_EVAL_BIT 0x00010000
  630. #define GL_LIST_BIT 0x00020000
  631. #define GL_TEXTURE_BIT 0x00040000
  632. #define GL_SCISSOR_BIT 0x00080000
  633. #define GL_ALL_ATTRIB_BITS 0xFFFFFFFF
  634. /* OpenGL 1.1 */
  635. #define GL_PROXY_TEXTURE_1D 0x8063
  636. #define GL_PROXY_TEXTURE_2D 0x8064
  637. #define GL_TEXTURE_PRIORITY 0x8066
  638. #define GL_TEXTURE_RESIDENT 0x8067
  639. #define GL_TEXTURE_BINDING_1D 0x8068
  640. #define GL_TEXTURE_BINDING_2D 0x8069
  641. #define GL_TEXTURE_INTERNAL_FORMAT 0x1003
  642. #define GL_ALPHA4 0x803B
  643. #define GL_ALPHA8 0x803C
  644. #define GL_ALPHA12 0x803D
  645. #define GL_ALPHA16 0x803E
  646. #define GL_LUMINANCE4 0x803F
  647. #define GL_LUMINANCE8 0x8040
  648. #define GL_LUMINANCE12 0x8041
  649. #define GL_LUMINANCE16 0x8042
  650. #define GL_LUMINANCE4_ALPHA4 0x8043
  651. #define GL_LUMINANCE6_ALPHA2 0x8044
  652. #define GL_LUMINANCE8_ALPHA8 0x8045
  653. #define GL_LUMINANCE12_ALPHA4 0x8046
  654. #define GL_LUMINANCE12_ALPHA12 0x8047
  655. #define GL_LUMINANCE16_ALPHA16 0x8048
  656. #define GL_INTENSITY 0x8049
  657. #define GL_INTENSITY4 0x804A
  658. #define GL_INTENSITY8 0x804B
  659. #define GL_INTENSITY12 0x804C
  660. #define GL_INTENSITY16 0x804D
  661. #define GL_R3_G3_B2 0x2A10
  662. #define GL_RGB4 0x804F
  663. #define GL_RGB5 0x8050
  664. #define GL_RGB8 0x8051
  665. #define GL_RGB10 0x8052
  666. #define GL_RGB12 0x8053
  667. #define GL_RGB16 0x8054
  668. #define GL_RGBA2 0x8055
  669. #define GL_RGBA4 0x8056
  670. #define GL_RGB5_A1 0x8057
  671. #define GL_RGBA8 0x8058
  672. #define GL_RGB10_A2 0x8059
  673. #define GL_RGBA12 0x805A
  674. #define GL_RGBA16 0x805B
  675. #define GL_CLIENT_PIXEL_STORE_BIT 0x00000001
  676. #define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002
  677. #define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFFF
  678. #define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF
  679. /*
  680. * Miscellaneous
  681. */
  682. GLAPI void GLAPIENTRY glClearIndex( GLfloat c );
  683. GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha );
  684. GLAPI void GLAPIENTRY glClear( GLbitfield mask );
  685. GLAPI void GLAPIENTRY glIndexMask( GLuint mask );
  686. GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha );
  687. GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref );
  688. GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor );
  689. GLAPI void GLAPIENTRY glLogicOp( GLenum opcode );
  690. GLAPI void GLAPIENTRY glCullFace( GLenum mode );
  691. GLAPI void GLAPIENTRY glFrontFace( GLenum mode );
  692. GLAPI void GLAPIENTRY glPointSize( GLfloat size );
  693. GLAPI void GLAPIENTRY glLineWidth( GLfloat width );
  694. GLAPI void GLAPIENTRY glLineStipple( GLint factor, GLushort pattern );
  695. GLAPI void GLAPIENTRY glPolygonMode( GLenum face, GLenum mode );
  696. GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units );
  697. GLAPI void GLAPIENTRY glPolygonStipple( const GLubyte *mask );
  698. GLAPI void GLAPIENTRY glGetPolygonStipple( GLubyte *mask );
  699. GLAPI void GLAPIENTRY glEdgeFlag( GLboolean flag );
  700. GLAPI void GLAPIENTRY glEdgeFlagv( const GLboolean *flag );
  701. GLAPI void GLAPIENTRY glScissor( GLint x, GLint y, GLsizei width, GLsizei height);
  702. GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation );
  703. GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation );
  704. GLAPI void GLAPIENTRY glDrawBuffer( GLenum mode );
  705. GLAPI void GLAPIENTRY glReadBuffer( GLenum mode );
  706. GLAPI void GLAPIENTRY glEnable( GLenum cap );
  707. GLAPI void GLAPIENTRY glDisable( GLenum cap );
  708. GLAPI GLboolean GLAPIENTRY glIsEnabled( GLenum cap );
  709. GLAPI void GLAPIENTRY glEnableClientState( GLenum cap ); /* 1.1 */
  710. GLAPI void GLAPIENTRY glDisableClientState( GLenum cap ); /* 1.1 */
  711. GLAPI void GLAPIENTRY glGetBooleanv( GLenum pname, GLboolean *params );
  712. GLAPI void GLAPIENTRY glGetDoublev( GLenum pname, GLdouble *params );
  713. GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params );
  714. GLAPI void GLAPIENTRY glGetIntegerv( GLenum pname, GLint *params );
  715. GLAPI void GLAPIENTRY glPushAttrib( GLbitfield mask );
  716. GLAPI void GLAPIENTRY glPopAttrib( void );
  717. GLAPI void GLAPIENTRY glPushClientAttrib( GLbitfield mask ); /* 1.1 */
  718. GLAPI void GLAPIENTRY glPopClientAttrib( void ); /* 1.1 */
  719. GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode );
  720. GLAPI GLenum GLAPIENTRY glGetError( void );
  721. GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name );
  722. GLAPI void GLAPIENTRY glFinish( void );
  723. GLAPI void GLAPIENTRY glFlush( void );
  724. GLAPI void GLAPIENTRY glHint( GLenum target, GLenum mode );
  725. /*
  726. * Depth Buffer
  727. */
  728. GLAPI void GLAPIENTRY glClearDepth( GLclampd depth );
  729. GLAPI void GLAPIENTRY glDepthFunc( GLenum func );
  730. GLAPI void GLAPIENTRY glDepthMask( GLboolean flag );
  731. GLAPI void GLAPIENTRY glDepthRange( GLclampd near_val, GLclampd far_val );
  732. /*
  733. * Accumulation Buffer
  734. */
  735. GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
  736. GLAPI void GLAPIENTRY glAccum( GLenum op, GLfloat value );
  737. /*
  738. * Transformation
  739. */
  740. GLAPI void GLAPIENTRY glMatrixMode( GLenum mode );
  741. GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right,
  742. GLdouble bottom, GLdouble top,
  743. GLdouble near_val, GLdouble far_val );
  744. GLAPI void GLAPIENTRY glFrustum( GLdouble left, GLdouble right,
  745. GLdouble bottom, GLdouble top,
  746. GLdouble near_val, GLdouble far_val );
  747. GLAPI void GLAPIENTRY glViewport( GLint x, GLint y,
  748. GLsizei width, GLsizei height );
  749. GLAPI void GLAPIENTRY glPushMatrix( void );
  750. GLAPI void GLAPIENTRY glPopMatrix( void );
  751. GLAPI void GLAPIENTRY glLoadIdentity( void );
  752. GLAPI void GLAPIENTRY glLoadMatrixd( const GLdouble *m );
  753. GLAPI void GLAPIENTRY glLoadMatrixf( const GLfloat *m );
  754. GLAPI void GLAPIENTRY glMultMatrixd( const GLdouble *m );
  755. GLAPI void GLAPIENTRY glMultMatrixf( const GLfloat *m );
  756. GLAPI void GLAPIENTRY glRotated( GLdouble angle,
  757. GLdouble x, GLdouble y, GLdouble z );
  758. GLAPI void GLAPIENTRY glRotatef( GLfloat angle,
  759. GLfloat x, GLfloat y, GLfloat z );
  760. GLAPI void GLAPIENTRY glScaled( GLdouble x, GLdouble y, GLdouble z );
  761. GLAPI void GLAPIENTRY glScalef( GLfloat x, GLfloat y, GLfloat z );
  762. GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z );
  763. GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z );
  764. /*
  765. * Display Lists
  766. */
  767. GLAPI GLboolean GLAPIENTRY glIsList( GLuint list );
  768. GLAPI void GLAPIENTRY glDeleteLists( GLuint list, GLsizei range );
  769. GLAPI GLuint GLAPIENTRY glGenLists( GLsizei range );
  770. GLAPI void GLAPIENTRY glNewList( GLuint list, GLenum mode );
  771. GLAPI void GLAPIENTRY glEndList( void );
  772. GLAPI void GLAPIENTRY glCallList( GLuint list );
  773. GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type,
  774. const GLvoid *lists );
  775. GLAPI void GLAPIENTRY glListBase( GLuint base );
  776. /*
  777. * Drawing Functions
  778. */
  779. GLAPI void GLAPIENTRY glBegin( GLenum mode );
  780. GLAPI void GLAPIENTRY glEnd( void );
  781. GLAPI void GLAPIENTRY glVertex2d( GLdouble x, GLdouble y );
  782. GLAPI void GLAPIENTRY glVertex2f( GLfloat x, GLfloat y );
  783. GLAPI void GLAPIENTRY glVertex2i( GLint x, GLint y );
  784. GLAPI void GLAPIENTRY glVertex2s( GLshort x, GLshort y );
  785. GLAPI void GLAPIENTRY glVertex3d( GLdouble x, GLdouble y, GLdouble z );
  786. GLAPI void GLAPIENTRY glVertex3f( GLfloat x, GLfloat y, GLfloat z );
  787. GLAPI void GLAPIENTRY glVertex3i( GLint x, GLint y, GLint z );
  788. GLAPI void GLAPIENTRY glVertex3s( GLshort x, GLshort y, GLshort z );
  789. GLAPI void GLAPIENTRY glVertex4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w );
  790. GLAPI void GLAPIENTRY glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w );
  791. GLAPI void GLAPIENTRY glVertex4i( GLint x, GLint y, GLint z, GLint w );
  792. GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w );
  793. GLAPI void GLAPIENTRY glVertex2dv( const GLdouble *v );
  794. GLAPI void GLAPIENTRY glVertex2fv( const GLfloat *v );
  795. GLAPI void GLAPIENTRY glVertex2iv( const GLint *v );
  796. GLAPI void GLAPIENTRY glVertex2sv( const GLshort *v );
  797. GLAPI void GLAPIENTRY glVertex3dv( const GLdouble *v );
  798. GLAPI void GLAPIENTRY glVertex3fv( const GLfloat *v );
  799. GLAPI void GLAPIENTRY glVertex3iv( const GLint *v );
  800. GLAPI void GLAPIENTRY glVertex3sv( const GLshort *v );
  801. GLAPI void GLAPIENTRY glVertex4dv( const GLdouble *v );
  802. GLAPI void GLAPIENTRY glVertex4fv( const GLfloat *v );
  803. GLAPI void GLAPIENTRY glVertex4iv( const GLint *v );
  804. GLAPI void GLAPIENTRY glVertex4sv( const GLshort *v );
  805. GLAPI void GLAPIENTRY glNormal3b( GLbyte nx, GLbyte ny, GLbyte nz );
  806. GLAPI void GLAPIENTRY glNormal3d( GLdouble nx, GLdouble ny, GLdouble nz );
  807. GLAPI void GLAPIENTRY glNormal3f( GLfloat nx, GLfloat ny, GLfloat nz );
  808. GLAPI void GLAPIENTRY glNormal3i( GLint nx, GLint ny, GLint nz );
  809. GLAPI void GLAPIENTRY glNormal3s( GLshort nx, GLshort ny, GLshort nz );
  810. GLAPI void GLAPIENTRY glNormal3bv( const GLbyte *v );
  811. GLAPI void GLAPIENTRY glNormal3dv( const GLdouble *v );
  812. GLAPI void GLAPIENTRY glNormal3fv( const GLfloat *v );
  813. GLAPI void GLAPIENTRY glNormal3iv( const GLint *v );
  814. GLAPI void GLAPIENTRY glNormal3sv( const GLshort *v );
  815. GLAPI void GLAPIENTRY glIndexd( GLdouble c );
  816. GLAPI void GLAPIENTRY glIndexf( GLfloat c );
  817. GLAPI void GLAPIENTRY glIndexi( GLint c );
  818. GLAPI void GLAPIENTRY glIndexs( GLshort c );
  819. GLAPI void GLAPIENTRY glIndexub( GLubyte c ); /* 1.1 */
  820. GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c );
  821. GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c );
  822. GLAPI void GLAPIENTRY glIndexiv( const GLint *c );
  823. GLAPI void GLAPIENTRY glIndexsv( const GLshort *c );
  824. GLAPI void GLAPIENTRY glIndexubv( const GLubyte *c ); /* 1.1 */
  825. GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue );
  826. GLAPI void GLAPIENTRY glColor3d( GLdouble red, GLdouble green, GLdouble blue );
  827. GLAPI void GLAPIENTRY glColor3f( GLfloat red, GLfloat green, GLfloat blue );
  828. GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue );
  829. GLAPI void GLAPIENTRY glColor3s( GLshort red, GLshort green, GLshort blue );
  830. GLAPI void GLAPIENTRY glColor3ub( GLubyte red, GLubyte green, GLubyte blue );
  831. GLAPI void GLAPIENTRY glColor3ui( GLuint red, GLuint green, GLuint blue );
  832. GLAPI void GLAPIENTRY glColor3us( GLushort red, GLushort green, GLushort blue );
  833. GLAPI void GLAPIENTRY glColor4b( GLbyte red, GLbyte green,
  834. GLbyte blue, GLbyte alpha );
  835. GLAPI void GLAPIENTRY glColor4d( GLdouble red, GLdouble green,
  836. GLdouble blue, GLdouble alpha );
  837. GLAPI void GLAPIENTRY glColor4f( GLfloat red, GLfloat green,
  838. GLfloat blue, GLfloat alpha );
  839. GLAPI void GLAPIENTRY glColor4i( GLint red, GLint green,
  840. GLint blue, GLint alpha );
  841. GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green,
  842. GLshort blue, GLshort alpha );
  843. GLAPI void GLAPIENTRY glColor4ub( GLubyte red, GLubyte green,
  844. GLubyte blue, GLubyte alpha );
  845. GLAPI void GLAPIENTRY glColor4ui( GLuint red, GLuint green,
  846. GLuint blue, GLuint alpha );
  847. GLAPI void GLAPIENTRY glColor4us( GLushort red, GLushort green,
  848. GLushort blue, GLushort alpha );
  849. GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v );
  850. GLAPI void GLAPIENTRY glColor3dv( const GLdouble *v );
  851. GLAPI void GLAPIENTRY glColor3fv( const GLfloat *v );
  852. GLAPI void GLAPIENTRY glColor3iv( const GLint *v );
  853. GLAPI void GLAPIENTRY glColor3sv( const GLshort *v );
  854. GLAPI void GLAPIENTRY glColor3ubv( const GLubyte *v );
  855. GLAPI void GLAPIENTRY glColor3uiv( const GLuint *v );
  856. GLAPI void GLAPIENTRY glColor3usv( const GLushort *v );
  857. GLAPI void GLAPIENTRY glColor4bv( const GLbyte *v );
  858. GLAPI void GLAPIENTRY glColor4dv( const GLdouble *v );
  859. GLAPI void GLAPIENTRY glColor4fv( const GLfloat *v );
  860. GLAPI void GLAPIENTRY glColor4iv( const GLint *v );
  861. GLAPI void GLAPIENTRY glColor4sv( const GLshort *v );
  862. GLAPI void GLAPIENTRY glColor4ubv( const GLubyte *v );
  863. GLAPI void GLAPIENTRY glColor4uiv( const GLuint *v );
  864. GLAPI void GLAPIENTRY glColor4usv( const GLushort *v );
  865. GLAPI void GLAPIENTRY glTexCoord1d( GLdouble s );
  866. GLAPI void GLAPIENTRY glTexCoord1f( GLfloat s );
  867. GLAPI void GLAPIENTRY glTexCoord1i( GLint s );
  868. GLAPI void GLAPIENTRY glTexCoord1s( GLshort s );
  869. GLAPI void GLAPIENTRY glTexCoord2d( GLdouble s, GLdouble t );
  870. GLAPI void GLAPIENTRY glTexCoord2f( GLfloat s, GLfloat t );
  871. GLAPI void GLAPIENTRY glTexCoord2i( GLint s, GLint t );
  872. GLAPI void GLAPIENTRY glTexCoord2s( GLshort s, GLshort t );
  873. GLAPI void GLAPIENTRY glTexCoord3d( GLdouble s, GLdouble t, GLdouble r );
  874. GLAPI void GLAPIENTRY glTexCoord3f( GLfloat s, GLfloat t, GLfloat r );
  875. GLAPI void GLAPIENTRY glTexCoord3i( GLint s, GLint t, GLint r );
  876. GLAPI void GLAPIENTRY glTexCoord3s( GLshort s, GLshort t, GLshort r );
  877. GLAPI void GLAPIENTRY glTexCoord4d( GLdouble s, GLdouble t, GLdouble r, GLdouble q );
  878. GLAPI void GLAPIENTRY glTexCoord4f( GLfloat s, GLfloat t, GLfloat r, GLfloat q );
  879. GLAPI void GLAPIENTRY glTexCoord4i( GLint s, GLint t, GLint r, GLint q );
  880. GLAPI void GLAPIENTRY glTexCoord4s( GLshort s, GLshort t, GLshort r, GLshort q );
  881. GLAPI void GLAPIENTRY glTexCoord1dv( const GLdouble *v );
  882. GLAPI void GLAPIENTRY glTexCoord1fv( const GLfloat *v );
  883. GLAPI void GLAPIENTRY glTexCoord1iv( const GLint *v );
  884. GLAPI void GLAPIENTRY glTexCoord1sv( const GLshort *v );
  885. GLAPI void GLAPIENTRY glTexCoord2dv( const GLdouble *v );
  886. GLAPI void GLAPIENTRY glTexCoord2fv( const GLfloat *v );
  887. GLAPI void GLAPIENTRY glTexCoord2iv( const GLint *v );
  888. GLAPI void GLAPIENTRY glTexCoord2sv( const GLshort *v );
  889. GLAPI void GLAPIENTRY glTexCoord3dv( const GLdouble *v );
  890. GLAPI void GLAPIENTRY glTexCoord3fv( const GLfloat *v );
  891. GLAPI void GLAPIENTRY glTexCoord3iv( const GLint *v );
  892. GLAPI void GLAPIENTRY glTexCoord3sv( const GLshort *v );
  893. GLAPI void GLAPIENTRY glTexCoord4dv( const GLdouble *v );
  894. GLAPI void GLAPIENTRY glTexCoord4fv( const GLfloat *v );
  895. GLAPI void GLAPIENTRY glTexCoord4iv( const GLint *v );
  896. GLAPI void GLAPIENTRY glTexCoord4sv( const GLshort *v );
  897. GLAPI void GLAPIENTRY glRasterPos2d( GLdouble x, GLdouble y );
  898. GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y );
  899. GLAPI void GLAPIENTRY glRasterPos2i( GLint x, GLint y );
  900. GLAPI void GLAPIENTRY glRasterPos2s( GLshort x, GLshort y );
  901. GLAPI void GLAPIENTRY glRasterPos3d( GLdouble x, GLdouble y, GLdouble z );
  902. GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z );
  903. GLAPI void GLAPIENTRY glRasterPos3i( GLint x, GLint y, GLint z );
  904. GLAPI void GLAPIENTRY glRasterPos3s( GLshort x, GLshort y, GLshort z );
  905. GLAPI void GLAPIENTRY glRasterPos4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w );
  906. GLAPI void GLAPIENTRY glRasterPos4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w );
  907. GLAPI void GLAPIENTRY glRasterPos4i( GLint x, GLint y, GLint z, GLint w );
  908. GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w );
  909. GLAPI void GLAPIENTRY glRasterPos2dv( const GLdouble *v );
  910. GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v );
  911. GLAPI void GLAPIENTRY glRasterPos2iv( const GLint *v );
  912. GLAPI void GLAPIENTRY glRasterPos2sv( const GLshort *v );
  913. GLAPI void GLAPIENTRY glRasterPos3dv( const GLdouble *v );
  914. GLAPI void GLAPIENTRY glRasterPos3fv( const GLfloat *v );
  915. GLAPI void GLAPIENTRY glRasterPos3iv( const GLint *v );
  916. GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v );
  917. GLAPI void GLAPIENTRY glRasterPos4dv( const GLdouble *v );
  918. GLAPI void GLAPIENTRY glRasterPos4fv( const GLfloat *v );
  919. GLAPI void GLAPIENTRY glRasterPos4iv( const GLint *v );
  920. GLAPI void GLAPIENTRY glRasterPos4sv( const GLshort *v );
  921. GLAPI void GLAPIENTRY glRectd( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 );
  922. GLAPI void GLAPIENTRY glRectf( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 );
  923. GLAPI void GLAPIENTRY glRecti( GLint x1, GLint y1, GLint x2, GLint y2 );
  924. GLAPI void GLAPIENTRY glRects( GLshort x1, GLshort y1, GLshort x2, GLshort y2 );
  925. GLAPI void GLAPIENTRY glRectdv( const GLdouble *v1, const GLdouble *v2 );
  926. GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 );
  927. GLAPI void GLAPIENTRY glRectiv( const GLint *v1, const GLint *v2 );
  928. GLAPI void GLAPIENTRY glRectsv( const GLshort *v1, const GLshort *v2 );
  929. /*
  930. * Vertex Arrays (1.1)
  931. */
  932. GLAPI void GLAPIENTRY glVertexPointer( GLint size, GLenum type,
  933. GLsizei stride, const GLvoid *ptr );
  934. GLAPI void GLAPIENTRY glNormalPointer( GLenum type, GLsizei stride,
  935. const GLvoid *ptr );
  936. GLAPI void GLAPIENTRY glColorPointer( GLint size, GLenum type,
  937. GLsizei stride, const GLvoid *ptr );
  938. GLAPI void GLAPIENTRY glIndexPointer( GLenum type, GLsizei stride,
  939. const GLvoid *ptr );
  940. GLAPI void GLAPIENTRY glTexCoordPointer( GLint size, GLenum type,
  941. GLsizei stride, const GLvoid *ptr );
  942. GLAPI void GLAPIENTRY glEdgeFlagPointer( GLsizei stride, const GLvoid *ptr );
  943. GLAPI void GLAPIENTRY glGetPointerv( GLenum pname, GLvoid **params );
  944. GLAPI void GLAPIENTRY glArrayElement( GLint i );
  945. GLAPI void GLAPIENTRY glDrawArrays( GLenum mode, GLint first, GLsizei count );
  946. GLAPI void GLAPIENTRY glDrawElements( GLenum mode, GLsizei count,
  947. GLenum type, const GLvoid *indices );
  948. GLAPI void GLAPIENTRY glInterleavedArrays( GLenum format, GLsizei stride,
  949. const GLvoid *pointer );
  950. /*
  951. * Lighting
  952. */
  953. GLAPI void GLAPIENTRY glShadeModel( GLenum mode );
  954. GLAPI void GLAPIENTRY glLightf( GLenum light, GLenum pname, GLfloat param );
  955. GLAPI void GLAPIENTRY glLighti( GLenum light, GLenum pname, GLint param );
  956. GLAPI void GLAPIENTRY glLightfv( GLenum light, GLenum pname,
  957. const GLfloat *params );
  958. GLAPI void GLAPIENTRY glLightiv( GLenum light, GLenum pname,
  959. const GLint *params );
  960. GLAPI void GLAPIENTRY glGetLightfv( GLenum light, GLenum pname,
  961. GLfloat *params );
  962. GLAPI void GLAPIENTRY glGetLightiv( GLenum light, GLenum pname,
  963. GLint *params );
  964. GLAPI void GLAPIENTRY glLightModelf( GLenum pname, GLfloat param );
  965. GLAPI void GLAPIENTRY glLightModeli( GLenum pname, GLint param );
  966. GLAPI void GLAPIENTRY glLightModelfv( GLenum pname, const GLfloat *params );
  967. GLAPI void GLAPIENTRY glLightModeliv( GLenum pname, const GLint *params );
  968. GLAPI void GLAPIENTRY glMaterialf( GLenum face, GLenum pname, GLfloat param );
  969. GLAPI void GLAPIENTRY glMateriali( GLenum face, GLenum pname, GLint param );
  970. GLAPI void GLAPIENTRY glMaterialfv( GLenum face, GLenum pname, const GLfloat *params );
  971. GLAPI void GLAPIENTRY glMaterialiv( GLenum face, GLenum pname, const GLint *params );
  972. GLAPI void GLAPIENTRY glGetMaterialfv( GLenum face, GLenum pname, GLfloat *params );
  973. GLAPI void GLAPIENTRY glGetMaterialiv( GLenum face, GLenum pname, GLint *params );
  974. GLAPI void GLAPIENTRY glColorMaterial( GLenum face, GLenum mode );
  975. /*
  976. * Raster functions
  977. */
  978. GLAPI void GLAPIENTRY glPixelZoom( GLfloat xfactor, GLfloat yfactor );
  979. GLAPI void GLAPIENTRY glPixelStoref( GLenum pname, GLfloat param );
  980. GLAPI void GLAPIENTRY glPixelStorei( GLenum pname, GLint param );
  981. GLAPI void GLAPIENTRY glPixelTransferf( GLenum pname, GLfloat param );
  982. GLAPI void GLAPIENTRY glPixelTransferi( GLenum pname, GLint param );
  983. GLAPI void GLAPIENTRY glPixelMapfv( GLenum map, GLsizei mapsize,
  984. const GLfloat *values );
  985. GLAPI void GLAPIENTRY glPixelMapuiv( GLenum map, GLsizei mapsize,
  986. const GLuint *values );
  987. GLAPI void GLAPIENTRY glPixelMapusv( GLenum map, GLsizei mapsize,
  988. const GLushort *values );
  989. GLAPI void GLAPIENTRY glGetPixelMapfv( GLenum map, GLfloat *values );
  990. GLAPI void GLAPIENTRY glGetPixelMapuiv( GLenum map, GLuint *values );
  991. GLAPI void GLAPIENTRY glGetPixelMapusv( GLenum map, GLushort *values );
  992. GLAPI void GLAPIENTRY glBitmap( GLsizei width, GLsizei height,
  993. GLfloat xorig, GLfloat yorig,
  994. GLfloat xmove, GLfloat ymove,
  995. const GLubyte *bitmap );
  996. GLAPI void GLAPIENTRY glReadPixels( GLint x, GLint y,
  997. GLsizei width, GLsizei height,
  998. GLenum format, GLenum type,
  999. GLvoid *pixels );
  1000. GLAPI void GLAPIENTRY glDrawPixels( GLsizei width, GLsizei height,
  1001. GLenum format, GLenum type,
  1002. const GLvoid *pixels );
  1003. GLAPI void GLAPIENTRY glCopyPixels( GLint x, GLint y,
  1004. GLsizei width, GLsizei height,
  1005. GLenum type );
  1006. /*
  1007. * Stenciling
  1008. */
  1009. GLAPI void GLAPIENTRY glStencilFunc( GLenum func, GLint ref, GLuint mask );
  1010. GLAPI void GLAPIENTRY glStencilMask( GLuint mask );
  1011. GLAPI void GLAPIENTRY glStencilOp( GLenum fail, GLenum zfail, GLenum zpass );
  1012. GLAPI void GLAPIENTRY glClearStencil( GLint s );
  1013. /*
  1014. * Texture mapping
  1015. */
  1016. GLAPI void GLAPIENTRY glTexGend( GLenum coord, GLenum pname, GLdouble param );
  1017. GLAPI void GLAPIENTRY glTexGenf( GLenum coord, GLenum pname, GLfloat param );
  1018. GLAPI void GLAPIENTRY glTexGeni( GLenum coord, GLenum pname, GLint param );
  1019. GLAPI void GLAPIENTRY glTexGendv( GLenum coord, GLenum pname, const GLdouble *params );
  1020. GLAPI void GLAPIENTRY glTexGenfv( GLenum coord, GLenum pname, const GLfloat *params );
  1021. GLAPI void GLAPIENTRY glTexGeniv( GLenum coord, GLenum pname, const GLint *params );
  1022. GLAPI void GLAPIENTRY glGetTexGendv( GLenum coord, GLenum pname, GLdouble *params );
  1023. GLAPI void GLAPIENTRY glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params );
  1024. GLAPI void GLAPIENTRY glGetTexGeniv( GLenum coord, GLenum pname, GLint *params );
  1025. GLAPI void GLAPIENTRY glTexEnvf( GLenum target, GLenum pname, GLfloat param );
  1026. GLAPI void GLAPIENTRY glTexEnvi( GLenum target, GLenum pname, GLint param );
  1027. GLAPI void GLAPIENTRY glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params );
  1028. GLAPI void GLAPIENTRY glTexEnviv( GLenum target, GLenum pname, const GLint *params );
  1029. GLAPI void GLAPIENTRY glGetTexEnvfv( GLenum target, GLenum pname, GLfloat *params );
  1030. GLAPI void GLAPIENTRY glGetTexEnviv( GLenum target, GLenum pname, GLint *params );
  1031. GLAPI void GLAPIENTRY glTexParameterf( GLenum target, GLenum pname, GLfloat param );
  1032. GLAPI void GLAPIENTRY glTexParameteri( GLenum target, GLenum pname, GLint param );
  1033. GLAPI void GLAPIENTRY glTexParameterfv( GLenum target, GLenum pname,
  1034. const GLfloat *params );
  1035. GLAPI void GLAPIENTRY glTexParameteriv( GLenum target, GLenum pname,
  1036. const GLint *params );
  1037. GLAPI void GLAPIENTRY glGetTexParameterfv( GLenum target,
  1038. GLenum pname, GLfloat *params);
  1039. GLAPI void GLAPIENTRY glGetTexParameteriv( GLenum target,
  1040. GLenum pname, GLint *params );
  1041. GLAPI void GLAPIENTRY glGetTexLevelParameterfv( GLenum target, GLint level,
  1042. GLenum pname, GLfloat *params );
  1043. GLAPI void GLAPIENTRY glGetTexLevelParameteriv( GLenum target, GLint level,
  1044. GLenum pname, GLint *params );
  1045. GLAPI void GLAPIENTRY glTexImage1D( GLenum target, GLint level,
  1046. GLint internalFormat,
  1047. GLsizei width, GLint border,
  1048. GLenum format, GLenum type,
  1049. const GLvoid *pixels );
  1050. GLAPI void GLAPIENTRY glTexImage2D( GLenum target, GLint level,
  1051. GLint internalFormat,
  1052. GLsizei width, GLsizei height,
  1053. GLint border, GLenum format, GLenum type,
  1054. const GLvoid *pixels );
  1055. GLAPI void GLAPIENTRY glGetTexImage( GLenum target, GLint level,
  1056. GLenum format, GLenum type,
  1057. GLvoid *pixels );
  1058. /* 1.1 functions */
  1059. GLAPI void GLAPIENTRY glGenTextures( GLsizei n, GLuint *textures );
  1060. GLAPI void GLAPIENTRY glDeleteTextures( GLsizei n, const GLuint *textures);
  1061. GLAPI void GLAPIENTRY glBindTexture( GLenum target, GLuint texture );
  1062. GLAPI void GLAPIENTRY glPrioritizeTextures( GLsizei n,
  1063. const GLuint *textures,
  1064. const GLclampf *priorities );
  1065. GLAPI GLboolean GLAPIENTRY glAreTexturesResident( GLsizei n,
  1066. const GLuint *textures,
  1067. GLboolean *residences );
  1068. GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture );
  1069. GLAPI void GLAPIENTRY glTexSubImage1D( GLenum target, GLint level,
  1070. GLint xoffset,
  1071. GLsizei width, GLenum format,
  1072. GLenum type, const GLvoid *pixels );
  1073. GLAPI void GLAPIENTRY glTexSubImage2D( GLenum target, GLint level,
  1074. GLint xoffset, GLint yoffset,
  1075. GLsizei width, GLsizei height,
  1076. GLenum format, GLenum type,
  1077. const GLvoid *pixels );
  1078. GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level,
  1079. GLenum internalformat,
  1080. GLint x, GLint y,
  1081. GLsizei width, GLint border );
  1082. GLAPI void GLAPIENTRY glCopyTexImage2D( GLenum target, GLint level,
  1083. GLenum internalformat,
  1084. GLint x, GLint y,
  1085. GLsizei width, GLsizei height,
  1086. GLint border );
  1087. GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level,
  1088. GLint xoffset, GLint x, GLint y,
  1089. GLsizei width );
  1090. GLAPI void GLAPIENTRY glCopyTexSubImage2D( GLenum target, GLint level,
  1091. GLint xoffset, GLint yoffset,
  1092. GLint x, GLint y,
  1093. GLsizei width, GLsizei height );
  1094. /*
  1095. * Evaluators
  1096. */
  1097. GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2,
  1098. GLint stride,
  1099. GLint order, const GLdouble *points );
  1100. GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2,
  1101. GLint stride,
  1102. GLint order, const GLfloat *points );
  1103. GLAPI void GLAPIENTRY glMap2d( GLenum target,
  1104. GLdouble u1, GLdouble u2, GLint ustride, GLint uorder,
  1105. GLdouble v1, GLdouble v2, GLint vstride, GLint vorder,
  1106. const GLdouble *points );
  1107. GLAPI void GLAPIENTRY glMap2f( GLenum target,
  1108. GLfloat u1, GLfloat u2, GLint ustride, GLint uorder,
  1109. GLfloat v1, GLfloat v2, GLint vstride, GLint vorder,
  1110. const GLfloat *points );
  1111. GLAPI void GLAPIENTRY glGetMapdv( GLenum target, GLenum query, GLdouble *v );
  1112. GLAPI void GLAPIENTRY glGetMapfv( GLenum target, GLenum query, GLfloat *v );
  1113. GLAPI void GLAPIENTRY glGetMapiv( GLenum target, GLenum query, GLint *v );
  1114. GLAPI void GLAPIENTRY glEvalCoord1d( GLdouble u );
  1115. GLAPI void GLAPIENTRY glEvalCoord1f( GLfloat u );
  1116. GLAPI void GLAPIENTRY glEvalCoord1dv( const GLdouble *u );
  1117. GLAPI void GLAPIENTRY glEvalCoord1fv( const GLfloat *u );
  1118. GLAPI void GLAPIENTRY glEvalCoord2d( GLdouble u, GLdouble v );
  1119. GLAPI void GLAPIENTRY glEvalCoord2f( GLfloat u, GLfloat v );
  1120. GLAPI void GLAPIENTRY glEvalCoord2dv( const GLdouble *u );
  1121. GLAPI void GLAPIENTRY glEvalCoord2fv( const GLfloat *u );
  1122. GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 );
  1123. GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 );
  1124. GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2,
  1125. GLint vn, GLdouble v1, GLdouble v2 );
  1126. GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2,
  1127. GLint vn, GLfloat v1, GLfloat v2 );
  1128. GLAPI void GLAPIENTRY glEvalPoint1( GLint i );
  1129. GLAPI void GLAPIENTRY glEvalPoint2( GLint i, GLint j );
  1130. GLAPI void GLAPIENTRY glEvalMesh1( GLenum mode, GLint i1, GLint i2 );
  1131. GLAPI void GLAPIENTRY glEvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 );
  1132. /*
  1133. * Fog
  1134. */
  1135. GLAPI void GLAPIENTRY glFogf( GLenum pname, GLfloat param );
  1136. GLAPI void GLAPIENTRY glFogi( GLenum pname, GLint param );
  1137. GLAPI void GLAPIENTRY glFogfv( GLenum pname, const GLfloat *params );
  1138. GLAPI void GLAPIENTRY glFogiv( GLenum pname, const GLint *params );
  1139. /*
  1140. * Selection and Feedback
  1141. */
  1142. GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer );
  1143. GLAPI void GLAPIENTRY glPassThrough( GLfloat token );
  1144. GLAPI void GLAPIENTRY glSelectBuffer( GLsizei size, GLuint *buffer );
  1145. GLAPI void GLAPIENTRY glInitNames( void );
  1146. GLAPI void GLAPIENTRY glLoadName( GLuint name );
  1147. GLAPI void GLAPIENTRY glPushName( GLuint name );
  1148. GLAPI void GLAPIENTRY glPopName( void );
  1149. /*
  1150. * OpenGL 1.2
  1151. */
  1152. #define GL_RESCALE_NORMAL 0x803A
  1153. #define GL_CLAMP_TO_EDGE 0x812F
  1154. #define GL_MAX_ELEMENTS_VERTICES 0x80E8
  1155. #define GL_MAX_ELEMENTS_INDICES 0x80E9
  1156. #define GL_BGR 0x80E0
  1157. #define GL_BGRA 0x80E1
  1158. #define GL_UNSIGNED_BYTE_3_3_2 0x8032
  1159. #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362
  1160. #define GL_UNSIGNED_SHORT_5_6_5 0x8363
  1161. #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364
  1162. #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033
  1163. #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365
  1164. #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034
  1165. #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366
  1166. #define GL_UNSIGNED_INT_8_8_8_8 0x8035
  1167. #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367
  1168. #define GL_UNSIGNED_INT_10_10_10_2 0x8036
  1169. #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368
  1170. #define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8
  1171. #define GL_SINGLE_COLOR 0x81F9
  1172. #define GL_SEPARATE_SPECULAR_COLOR 0x81FA
  1173. #define GL_TEXTURE_MIN_LOD 0x813A
  1174. #define GL_TEXTURE_MAX_LOD 0x813B
  1175. #define GL_TEXTURE_BASE_LEVEL 0x813C
  1176. #define GL_TEXTURE_MAX_LEVEL 0x813D
  1177. #define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12
  1178. #define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13
  1179. #define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22
  1180. #define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23
  1181. #define GL_ALIASED_POINT_SIZE_RANGE 0x846D
  1182. #define GL_ALIASED_LINE_WIDTH_RANGE 0x846E
  1183. #define GL_PACK_SKIP_IMAGES 0x806B
  1184. #define GL_PACK_IMAGE_HEIGHT 0x806C
  1185. #define GL_UNPACK_SKIP_IMAGES 0x806D
  1186. #define GL_UNPACK_IMAGE_HEIGHT 0x806E
  1187. #define GL_TEXTURE_3D 0x806F
  1188. #define GL_PROXY_TEXTURE_3D 0x8070
  1189. #define GL_TEXTURE_DEPTH 0x8071
  1190. #define GL_TEXTURE_WRAP_R 0x8072
  1191. #define GL_MAX_3D_TEXTURE_SIZE 0x8073
  1192. #define GL_TEXTURE_BINDING_3D 0x806A
  1193. GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start,
  1194. GLuint end, GLsizei count, GLenum type, const GLvoid *indices );
  1195. GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level,
  1196. GLint internalFormat,
  1197. GLsizei width, GLsizei height,
  1198. GLsizei depth, GLint border,
  1199. GLenum format, GLenum type,
  1200. const GLvoid *pixels );
  1201. GLAPI void GLAPIENTRY glTexSubImage3D( GLenum target, GLint level,
  1202. GLint xoffset, GLint yoffset,
  1203. GLint zoffset, GLsizei width,
  1204. GLsizei height, GLsizei depth,
  1205. GLenum format,
  1206. GLenum type, const GLvoid *pixels);
  1207. GLAPI void GLAPIENTRY glCopyTexSubImage3D( GLenum target, GLint level,
  1208. GLint xoffset, GLint yoffset,
  1209. GLint zoffset, GLint x,
  1210. GLint y, GLsizei width,
  1211. GLsizei height );
  1212. typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
  1213. typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
  1214. typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
  1215. typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
  1216. /*
  1217. * GL_ARB_imaging
  1218. */
  1219. #define GL_CONSTANT_COLOR 0x8001
  1220. #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002
  1221. #define GL_CONSTANT_ALPHA 0x8003
  1222. #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004
  1223. #define GL_COLOR_TABLE 0x80D0
  1224. #define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1
  1225. #define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2
  1226. #define GL_PROXY_COLOR_TABLE 0x80D3
  1227. #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4
  1228. #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5
  1229. #define GL_COLOR_TABLE_SCALE 0x80D6
  1230. #define GL_COLOR_TABLE_BIAS 0x80D7
  1231. #define GL_COLOR_TABLE_FORMAT 0x80D8
  1232. #define GL_COLOR_TABLE_WIDTH 0x80D9
  1233. #define GL_COLOR_TABLE_RED_SIZE 0x80DA
  1234. #define GL_COLOR_TABLE_GREEN_SIZE 0x80DB
  1235. #define GL_COLOR_TABLE_BLUE_SIZE 0x80DC
  1236. #define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD
  1237. #define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE
  1238. #define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF
  1239. #define GL_CONVOLUTION_1D 0x8010
  1240. #define GL_CONVOLUTION_2D 0x8011
  1241. #define GL_SEPARABLE_2D 0x8012
  1242. #define GL_CONVOLUTION_BORDER_MODE 0x8013
  1243. #define GL_CONVOLUTION_FILTER_SCALE 0x8014
  1244. #define GL_CONVOLUTION_FILTER_BIAS 0x8015
  1245. #define GL_REDUCE 0x8016
  1246. #define GL_CONVOLUTION_FORMAT 0x8017
  1247. #define GL_CONVOLUTION_WIDTH 0x8018
  1248. #define GL_CONVOLUTION_HEIGHT 0x8019
  1249. #define GL_MAX_CONVOLUTION_WIDTH 0x801A
  1250. #define GL_MAX_CONVOLUTION_HEIGHT 0x801B
  1251. #define GL_POST_CONVOLUTION_RED_SCALE 0x801C
  1252. #define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D
  1253. #define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E
  1254. #define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F
  1255. #define GL_POST_CONVOLUTION_RED_BIAS 0x8020
  1256. #define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021
  1257. #define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022
  1258. #define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023
  1259. #define GL_CONSTANT_BORDER 0x8151
  1260. #define GL_REPLICATE_BORDER 0x8153
  1261. #define GL_CONVOLUTION_BORDER_COLOR 0x8154
  1262. #define GL_COLOR_MATRIX 0x80B1
  1263. #define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2
  1264. #define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3
  1265. #define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4
  1266. #define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5
  1267. #define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6
  1268. #define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7
  1269. #define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8
  1270. #define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9
  1271. #define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA
  1272. #define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB
  1273. #define GL_HISTOGRAM 0x8024
  1274. #define GL_PROXY_HISTOGRAM 0x8025
  1275. #define GL_HISTOGRAM_WIDTH 0x8026
  1276. #define GL_HISTOGRAM_FORMAT 0x8027
  1277. #define GL_HISTOGRAM_RED_SIZE 0x8028
  1278. #define GL_HISTOGRAM_GREEN_SIZE 0x8029
  1279. #define GL_HISTOGRAM_BLUE_SIZE 0x802A
  1280. #define GL_HISTOGRAM_ALPHA_SIZE 0x802B
  1281. #define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C
  1282. #define GL_HISTOGRAM_SINK 0x802D
  1283. #define GL_MINMAX 0x802E
  1284. #define GL_MINMAX_FORMAT 0x802F
  1285. #define GL_MINMAX_SINK 0x8030
  1286. #define GL_TABLE_TOO_LARGE 0x8031
  1287. #define GL_BLEND_EQUATION 0x8009
  1288. #define GL_MIN 0x8007
  1289. #define GL_MAX 0x8008
  1290. #define GL_FUNC_ADD 0x8006
  1291. #define GL_FUNC_SUBTRACT 0x800A
  1292. #define GL_FUNC_REVERSE_SUBTRACT 0x800B
  1293. #define GL_BLEND_COLOR 0x8005
  1294. GLAPI void GLAPIENTRY glColorTable( GLenum target, GLenum internalformat,
  1295. GLsizei width, GLenum format,
  1296. GLenum type, const GLvoid *table );
  1297. GLAPI void GLAPIENTRY glColorSubTable( GLenum target,
  1298. GLsizei start, GLsizei count,
  1299. GLenum format, GLenum type,
  1300. const GLvoid *data );
  1301. GLAPI void GLAPIENTRY glColorTableParameteriv(GLenum target, GLenum pname,
  1302. const GLint *params);
  1303. GLAPI void GLAPIENTRY glColorTableParameterfv(GLenum target, GLenum pname,
  1304. const GLfloat *params);
  1305. GLAPI void GLAPIENTRY glCopyColorSubTable( GLenum target, GLsizei start,
  1306. GLint x, GLint y, GLsizei width );
  1307. GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat,
  1308. GLint x, GLint y, GLsizei width );
  1309. GLAPI void GLAPIENTRY glGetColorTable( GLenum target, GLenum format,
  1310. GLenum type, GLvoid *table );
  1311. GLAPI void GLAPIENTRY glGetColorTableParameterfv( GLenum target, GLenum pname,
  1312. GLfloat *params );
  1313. GLAPI void GLAPIENTRY glGetColorTableParameteriv( GLenum target, GLenum pname,
  1314. GLint *params );
  1315. GLAPI void GLAPIENTRY glBlendEquation( GLenum mode );
  1316. GLAPI void GLAPIENTRY glBlendColor( GLclampf red, GLclampf green,
  1317. GLclampf blue, GLclampf alpha );
  1318. GLAPI void GLAPIENTRY glHistogram( GLenum target, GLsizei width,
  1319. GLenum internalformat, GLboolean sink );
  1320. GLAPI void GLAPIENTRY glResetHistogram( GLenum target );
  1321. GLAPI void GLAPIENTRY glGetHistogram( GLenum target, GLboolean reset,
  1322. GLenum format, GLenum type,
  1323. GLvoid *values );
  1324. GLAPI void GLAPIENTRY glGetHistogramParameterfv( GLenum target, GLenum pname,
  1325. GLfloat *params );
  1326. GLAPI void GLAPIENTRY glGetHistogramParameteriv( GLenum target, GLenum pname,
  1327. GLint *params );
  1328. GLAPI void GLAPIENTRY glMinmax( GLenum target, GLenum internalformat,
  1329. GLboolean sink );
  1330. GLAPI void GLAPIENTRY glResetMinmax( GLenum target );
  1331. GLAPI void GLAPIENTRY glGetMinmax( GLenum target, GLboolean reset,
  1332. GLenum format, GLenum types,
  1333. GLvoid *values );
  1334. GLAPI void GLAPIENTRY glGetMinmaxParameterfv( GLenum target, GLenum pname,
  1335. GLfloat *params );
  1336. GLAPI void GLAPIENTRY glGetMinmaxParameteriv( GLenum target, GLenum pname,
  1337. GLint *params );
  1338. GLAPI void GLAPIENTRY glConvolutionFilter1D( GLenum target,
  1339. GLenum internalformat, GLsizei width, GLenum format, GLenum type,
  1340. const GLvoid *image );
  1341. GLAPI void GLAPIENTRY glConvolutionFilter2D( GLenum target,
  1342. GLenum internalformat, GLsizei width, GLsizei height, GLenum format,
  1343. GLenum type, const GLvoid *image );
  1344. GLAPI void GLAPIENTRY glConvolutionParameterf( GLenum target, GLenum pname,
  1345. GLfloat params );
  1346. GLAPI void GLAPIENTRY glConvolutionParameterfv( GLenum target, GLenum pname,
  1347. const GLfloat *params );
  1348. GLAPI void GLAPIENTRY glConvolutionParameteri( GLenum target, GLenum pname,
  1349. GLint params );
  1350. GLAPI void GLAPIENTRY glConvolutionParameteriv( GLenum target, GLenum pname,
  1351. const GLint *params );
  1352. GLAPI void GLAPIENTRY glCopyConvolutionFilter1D( GLenum target,
  1353. GLenum internalformat, GLint x, GLint y, GLsizei width );
  1354. GLAPI void GLAPIENTRY glCopyConvolutionFilter2D( GLenum target,
  1355. GLenum internalformat, GLint x, GLint y, GLsizei width,
  1356. GLsizei height);
  1357. GLAPI void GLAPIENTRY glGetConvolutionFilter( GLenum target, GLenum format,
  1358. GLenum type, GLvoid *image );
  1359. GLAPI void GLAPIENTRY glGetConvolutionParameterfv( GLenum target, GLenum pname,
  1360. GLfloat *params );
  1361. GLAPI void GLAPIENTRY glGetConvolutionParameteriv( GLenum target, GLenum pname,
  1362. GLint *params );
  1363. GLAPI void GLAPIENTRY glSeparableFilter2D( GLenum target,
  1364. GLenum internalformat, GLsizei width, GLsizei height, GLenum format,
  1365. GLenum type, const GLvoid *row, const GLvoid *column );
  1366. GLAPI void GLAPIENTRY glGetSeparableFilter( GLenum target, GLenum format,
  1367. GLenum type, GLvoid *row, GLvoid *column, GLvoid *span );
  1368. /*
  1369. * OpenGL 1.3
  1370. */
  1371. /* multitexture */
  1372. #define GL_TEXTURE0 0x84C0
  1373. #define GL_TEXTURE1 0x84C1
  1374. #define GL_TEXTURE2 0x84C2
  1375. #define GL_TEXTURE3 0x84C3
  1376. #define GL_TEXTURE4 0x84C4
  1377. #define GL_TEXTURE5 0x84C5
  1378. #define GL_TEXTURE6 0x84C6
  1379. #define GL_TEXTURE7 0x84C7
  1380. #define GL_TEXTURE8 0x84C8
  1381. #define GL_TEXTURE9 0x84C9
  1382. #define GL_TEXTURE10 0x84CA
  1383. #define GL_TEXTURE11 0x84CB
  1384. #define GL_TEXTURE12 0x84CC
  1385. #define GL_TEXTURE13 0x84CD
  1386. #define GL_TEXTURE14 0x84CE
  1387. #define GL_TEXTURE15 0x84CF
  1388. #define GL_TEXTURE16 0x84D0
  1389. #define GL_TEXTURE17 0x84D1
  1390. #define GL_TEXTURE18 0x84D2
  1391. #define GL_TEXTURE19 0x84D3
  1392. #define GL_TEXTURE20 0x84D4
  1393. #define GL_TEXTURE21 0x84D5
  1394. #define GL_TEXTURE22 0x84D6
  1395. #define GL_TEXTURE23 0x84D7
  1396. #define GL_TEXTURE24 0x84D8
  1397. #define GL_TEXTURE25 0x84D9
  1398. #define GL_TEXTURE26 0x84DA
  1399. #define GL_TEXTURE27 0x84DB
  1400. #define GL_TEXTURE28 0x84DC
  1401. #define GL_TEXTURE29 0x84DD
  1402. #define GL_TEXTURE30 0x84DE
  1403. #define GL_TEXTURE31 0x84DF
  1404. #define GL_ACTIVE_TEXTURE 0x84E0
  1405. #define GL_CLIENT_ACTIVE_TEXTURE 0x84E1
  1406. #define GL_MAX_TEXTURE_UNITS 0x84E2
  1407. /* texture_cube_map */
  1408. #define GL_NORMAL_MAP 0x8511
  1409. #define GL_REFLECTION_MAP 0x8512
  1410. #define GL_TEXTURE_CUBE_MAP 0x8513
  1411. #define GL_TEXTURE_BINDING_CUBE_MAP 0x8514
  1412. #define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515
  1413. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516
  1414. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517
  1415. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518
  1416. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519
  1417. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A
  1418. #define GL_PROXY_TEXTURE_CUBE_MAP 0x851B
  1419. #define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C
  1420. /* texture_compression */
  1421. #define GL_COMPRESSED_ALPHA 0x84E9
  1422. #define GL_COMPRESSED_LUMINANCE 0x84EA
  1423. #define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB
  1424. #define GL_COMPRESSED_INTENSITY 0x84EC
  1425. #define GL_COMPRESSED_RGB 0x84ED
  1426. #define GL_COMPRESSED_RGBA 0x84EE
  1427. #define GL_TEXTURE_COMPRESSION_HINT 0x84EF
  1428. #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0
  1429. #define GL_TEXTURE_COMPRESSED 0x86A1
  1430. #define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2
  1431. #define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3
  1432. /* multisample */
  1433. #define GL_MULTISAMPLE 0x809D
  1434. #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E
  1435. #define GL_SAMPLE_ALPHA_TO_ONE 0x809F
  1436. #define GL_SAMPLE_COVERAGE 0x80A0
  1437. #define GL_SAMPLE_BUFFERS 0x80A8
  1438. #define GL_SAMPLES 0x80A9
  1439. #define GL_SAMPLE_COVERAGE_VALUE 0x80AA
  1440. #define GL_SAMPLE_COVERAGE_INVERT 0x80AB
  1441. #define GL_MULTISAMPLE_BIT 0x20000000
  1442. /* transpose_matrix */
  1443. #define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3
  1444. #define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4
  1445. #define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5
  1446. #define GL_TRANSPOSE_COLOR_MATRIX 0x84E6
  1447. /* texture_env_combine */
  1448. #define GL_COMBINE 0x8570
  1449. #define GL_COMBINE_RGB 0x8571
  1450. #define GL_COMBINE_ALPHA 0x8572
  1451. #define GL_SOURCE0_RGB 0x8580
  1452. #define GL_SOURCE1_RGB 0x8581
  1453. #define GL_SOURCE2_RGB 0x8582
  1454. #define GL_SOURCE0_ALPHA 0x8588
  1455. #define GL_SOURCE1_ALPHA 0x8589
  1456. #define GL_SOURCE2_ALPHA 0x858A
  1457. #define GL_OPERAND0_RGB 0x8590
  1458. #define GL_OPERAND1_RGB 0x8591
  1459. #define GL_OPERAND2_RGB 0x8592
  1460. #define GL_OPERAND0_ALPHA 0x8598
  1461. #define GL_OPERAND1_ALPHA 0x8599
  1462. #define GL_OPERAND2_ALPHA 0x859A
  1463. #define GL_RGB_SCALE 0x8573
  1464. #define GL_ADD_SIGNED 0x8574
  1465. #define GL_INTERPOLATE 0x8575
  1466. #define GL_SUBTRACT 0x84E7
  1467. #define GL_CONSTANT 0x8576
  1468. #define GL_PRIMARY_COLOR 0x8577
  1469. #define GL_PREVIOUS 0x8578
  1470. /* texture_env_dot3 */
  1471. #define GL_DOT3_RGB 0x86AE
  1472. #define GL_DOT3_RGBA 0x86AF
  1473. /* texture_border_clamp */
  1474. #define GL_CLAMP_TO_BORDER 0x812D
  1475. GLAPI void GLAPIENTRY glActiveTexture( GLenum texture );
  1476. GLAPI void GLAPIENTRY glClientActiveTexture( GLenum texture );
  1477. GLAPI void GLAPIENTRY glCompressedTexImage1D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data );
  1478. GLAPI void GLAPIENTRY glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data );
  1479. GLAPI void GLAPIENTRY glCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data );
  1480. GLAPI void GLAPIENTRY glCompressedTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data );
  1481. GLAPI void GLAPIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data );
  1482. GLAPI void GLAPIENTRY glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data );
  1483. GLAPI void GLAPIENTRY glGetCompressedTexImage( GLenum target, GLint lod, GLvoid *img );
  1484. GLAPI void GLAPIENTRY glMultiTexCoord1d( GLenum target, GLdouble s );
  1485. GLAPI void GLAPIENTRY glMultiTexCoord1dv( GLenum target, const GLdouble *v );
  1486. GLAPI void GLAPIENTRY glMultiTexCoord1f( GLenum target, GLfloat s );
  1487. GLAPI void GLAPIENTRY glMultiTexCoord1fv( GLenum target, const GLfloat *v );
  1488. GLAPI void GLAPIENTRY glMultiTexCoord1i( GLenum target, GLint s );
  1489. GLAPI void GLAPIENTRY glMultiTexCoord1iv( GLenum target, const GLint *v );
  1490. GLAPI void GLAPIENTRY glMultiTexCoord1s( GLenum target, GLshort s );
  1491. GLAPI void GLAPIENTRY glMultiTexCoord1sv( GLenum target, const GLshort *v );
  1492. GLAPI void GLAPIENTRY glMultiTexCoord2d( GLenum target, GLdouble s, GLdouble t );
  1493. GLAPI void GLAPIENTRY glMultiTexCoord2dv( GLenum target, const GLdouble *v );
  1494. GLAPI void GLAPIENTRY glMultiTexCoord2f( GLenum target, GLfloat s, GLfloat t );
  1495. GLAPI void GLAPIENTRY glMultiTexCoord2fv( GLenum target, const GLfloat *v );
  1496. GLAPI void GLAPIENTRY glMultiTexCoord2i( GLenum target, GLint s, GLint t );
  1497. GLAPI void GLAPIENTRY glMultiTexCoord2iv( GLenum target, const GLint *v );
  1498. GLAPI void GLAPIENTRY glMultiTexCoord2s( GLenum target, GLshort s, GLshort t );
  1499. GLAPI void GLAPIENTRY glMultiTexCoord2sv( GLenum target, const GLshort *v );
  1500. GLAPI void GLAPIENTRY glMultiTexCoord3d( GLenum target, GLdouble s, GLdouble t, GLdouble r );
  1501. GLAPI void GLAPIENTRY glMultiTexCoord3dv( GLenum target, const GLdouble *v );
  1502. GLAPI void GLAPIENTRY glMultiTexCoord3f( GLenum target, GLfloat s, GLfloat t, GLfloat r );
  1503. GLAPI void GLAPIENTRY glMultiTexCoord3fv( GLenum target, const GLfloat *v );
  1504. GLAPI void GLAPIENTRY glMultiTexCoord3i( GLenum target, GLint s, GLint t, GLint r );
  1505. GLAPI void GLAPIENTRY glMultiTexCoord3iv( GLenum target, const GLint *v );
  1506. GLAPI void GLAPIENTRY glMultiTexCoord3s( GLenum target, GLshort s, GLshort t, GLshort r );
  1507. GLAPI void GLAPIENTRY glMultiTexCoord3sv( GLenum target, const GLshort *v );
  1508. GLAPI void GLAPIENTRY glMultiTexCoord4d( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q );
  1509. GLAPI void GLAPIENTRY glMultiTexCoord4dv( GLenum target, const GLdouble *v );
  1510. GLAPI void GLAPIENTRY glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q );
  1511. GLAPI void GLAPIENTRY glMultiTexCoord4fv( GLenum target, const GLfloat *v );
  1512. GLAPI void GLAPIENTRY glMultiTexCoord4i( GLenum target, GLint s, GLint t, GLint r, GLint q );
  1513. GLAPI void GLAPIENTRY glMultiTexCoord4iv( GLenum target, const GLint *v );
  1514. GLAPI void GLAPIENTRY glMultiTexCoord4s( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q );
  1515. GLAPI void GLAPIENTRY glMultiTexCoord4sv( GLenum target, const GLshort *v );
  1516. GLAPI void GLAPIENTRY glLoadTransposeMatrixd( const GLdouble m[16] );
  1517. GLAPI void GLAPIENTRY glLoadTransposeMatrixf( const GLfloat m[16] );
  1518. GLAPI void GLAPIENTRY glMultTransposeMatrixd( const GLdouble m[16] );
  1519. GLAPI void GLAPIENTRY glMultTransposeMatrixf( const GLfloat m[16] );
  1520. GLAPI void GLAPIENTRY glSampleCoverage( GLclampf value, GLboolean invert );
  1521. typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
  1522. typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert);
  1523. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
  1524. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
  1525. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
  1526. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
  1527. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
  1528. typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
  1529. typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img);
  1530. /*
  1531. * GL_ARB_multitexture (ARB extension 1 and OpenGL 1.2.1)
  1532. */
  1533. #ifndef GL_ARB_multitexture
  1534. #define GL_ARB_multitexture 1
  1535. #define GL_TEXTURE0_ARB 0x84C0
  1536. #define GL_TEXTURE1_ARB 0x84C1
  1537. #define GL_TEXTURE2_ARB 0x84C2
  1538. #define GL_TEXTURE3_ARB 0x84C3
  1539. #define GL_TEXTURE4_ARB 0x84C4
  1540. #define GL_TEXTURE5_ARB 0x84C5
  1541. #define GL_TEXTURE6_ARB 0x84C6
  1542. #define GL_TEXTURE7_ARB 0x84C7
  1543. #define GL_TEXTURE8_ARB 0x84C8
  1544. #define GL_TEXTURE9_ARB 0x84C9
  1545. #define GL_TEXTURE10_ARB 0x84CA
  1546. #define GL_TEXTURE11_ARB 0x84CB
  1547. #define GL_TEXTURE12_ARB 0x84CC
  1548. #define GL_TEXTURE13_ARB 0x84CD
  1549. #define GL_TEXTURE14_ARB 0x84CE
  1550. #define GL_TEXTURE15_ARB 0x84CF
  1551. #define GL_TEXTURE16_ARB 0x84D0
  1552. #define GL_TEXTURE17_ARB 0x84D1
  1553. #define GL_TEXTURE18_ARB 0x84D2
  1554. #define GL_TEXTURE19_ARB 0x84D3
  1555. #define GL_TEXTURE20_ARB 0x84D4
  1556. #define GL_TEXTURE21_ARB 0x84D5
  1557. #define GL_TEXTURE22_ARB 0x84D6
  1558. #define GL_TEXTURE23_ARB 0x84D7
  1559. #define GL_TEXTURE24_ARB 0x84D8
  1560. #define GL_TEXTURE25_ARB 0x84D9
  1561. #define GL_TEXTURE26_ARB 0x84DA
  1562. #define GL_TEXTURE27_ARB 0x84DB
  1563. #define GL_TEXTURE28_ARB 0x84DC
  1564. #define GL_TEXTURE29_ARB 0x84DD
  1565. #define GL_TEXTURE30_ARB 0x84DE
  1566. #define GL_TEXTURE31_ARB 0x84DF
  1567. #define GL_ACTIVE_TEXTURE_ARB 0x84E0
  1568. #define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1
  1569. #define GL_MAX_TEXTURE_UNITS_ARB 0x84E2
  1570. GLAPI void GLAPIENTRY glActiveTextureARB(GLenum texture);
  1571. GLAPI void GLAPIENTRY glClientActiveTextureARB(GLenum texture);
  1572. GLAPI void GLAPIENTRY glMultiTexCoord1dARB(GLenum target, GLdouble s);
  1573. GLAPI void GLAPIENTRY glMultiTexCoord1dvARB(GLenum target, const GLdouble *v);
  1574. GLAPI void GLAPIENTRY glMultiTexCoord1fARB(GLenum target, GLfloat s);
  1575. GLAPI void GLAPIENTRY glMultiTexCoord1fvARB(GLenum target, const GLfloat *v);
  1576. GLAPI void GLAPIENTRY glMultiTexCoord1iARB(GLenum target, GLint s);
  1577. GLAPI void GLAPIENTRY glMultiTexCoord1ivARB(GLenum target, const GLint *v);
  1578. GLAPI void GLAPIENTRY glMultiTexCoord1sARB(GLenum target, GLshort s);
  1579. GLAPI void GLAPIENTRY glMultiTexCoord1svARB(GLenum target, const GLshort *v);
  1580. GLAPI void GLAPIENTRY glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t);
  1581. GLAPI void GLAPIENTRY glMultiTexCoord2dvARB(GLenum target, const GLdouble *v);
  1582. GLAPI void GLAPIENTRY glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t);
  1583. GLAPI void GLAPIENTRY glMultiTexCoord2fvARB(GLenum target, const GLfloat *v);
  1584. GLAPI void GLAPIENTRY glMultiTexCoord2iARB(GLenum target, GLint s, GLint t);
  1585. GLAPI void GLAPIENTRY glMultiTexCoord2ivARB(GLenum target, const GLint *v);
  1586. GLAPI void GLAPIENTRY glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t);
  1587. GLAPI void GLAPIENTRY glMultiTexCoord2svARB(GLenum target, const GLshort *v);
  1588. GLAPI void GLAPIENTRY glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r);
  1589. GLAPI void GLAPIENTRY glMultiTexCoord3dvARB(GLenum target, const GLdouble *v);
  1590. GLAPI void GLAPIENTRY glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r);
  1591. GLAPI void GLAPIENTRY glMultiTexCoord3fvARB(GLenum target, const GLfloat *v);
  1592. GLAPI void GLAPIENTRY glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r);
  1593. GLAPI void GLAPIENTRY glMultiTexCoord3ivARB(GLenum target, const GLint *v);
  1594. GLAPI void GLAPIENTRY glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r);
  1595. GLAPI void GLAPIENTRY glMultiTexCoord3svARB(GLenum target, const GLshort *v);
  1596. GLAPI void GLAPIENTRY glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
  1597. GLAPI void GLAPIENTRY glMultiTexCoord4dvARB(GLenum target, const GLdouble *v);
  1598. GLAPI void GLAPIENTRY glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
  1599. GLAPI void GLAPIENTRY glMultiTexCoord4fvARB(GLenum target, const GLfloat *v);
  1600. GLAPI void GLAPIENTRY glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q);
  1601. GLAPI void GLAPIENTRY glMultiTexCoord4ivARB(GLenum target, const GLint *v);
  1602. GLAPI void GLAPIENTRY glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
  1603. GLAPI void GLAPIENTRY glMultiTexCoord4svARB(GLenum target, const GLshort *v);
  1604. typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture);
  1605. typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture);
  1606. typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s);
  1607. typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v);
  1608. typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s);
  1609. typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v);
  1610. typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s);
  1611. typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v);
  1612. typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s);
  1613. typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v);
  1614. typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t);
  1615. typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v);
  1616. typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t);
  1617. typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v);
  1618. typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t);
  1619. typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v);
  1620. typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t);
  1621. typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v);
  1622. typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r);
  1623. typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v);
  1624. typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r);
  1625. typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v);
  1626. typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r);
  1627. typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v);
  1628. typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r);
  1629. typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v);
  1630. typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
  1631. typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v);
  1632. typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
  1633. typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v);
  1634. typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q);
  1635. typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v);
  1636. typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
  1637. typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v);
  1638. #endif /* GL_ARB_multitexture */
  1639. /*
  1640. * Define this token if you want "old-style" header file behaviour (extensions
  1641. * defined in gl.h). Otherwise, extensions will be included from glext.h.
  1642. */
  1643. #if defined(GL_GLEXT_LEGACY)
  1644. /* All extensions that used to be here are now found in glext.h */
  1645. #else /* GL_GLEXT_LEGACY */
  1646. #include <GL/glext.h>
  1647. #endif /* GL_GLEXT_LEGACY */
  1648. /*
  1649. * ???. GL_MESA_packed_depth_stencil
  1650. * XXX obsolete
  1651. */
  1652. #ifndef GL_MESA_packed_depth_stencil
  1653. #define GL_MESA_packed_depth_stencil 1
  1654. #define GL_DEPTH_STENCIL_MESA 0x8750
  1655. #define GL_UNSIGNED_INT_24_8_MESA 0x8751
  1656. #define GL_UNSIGNED_INT_8_24_REV_MESA 0x8752
  1657. #define GL_UNSIGNED_SHORT_15_1_MESA 0x8753
  1658. #define GL_UNSIGNED_SHORT_1_15_REV_MESA 0x8754
  1659. #endif /* GL_MESA_packed_depth_stencil */
  1660. #ifndef GL_ATI_blend_equation_separate
  1661. #define GL_ATI_blend_equation_separate 1
  1662. #define GL_ALPHA_BLEND_EQUATION_ATI 0x883D
  1663. GLAPI void GLAPIENTRY glBlendEquationSeparateATI( GLenum modeRGB, GLenum modeA );
  1664. typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEATIPROC) (GLenum modeRGB, GLenum modeA);
  1665. #endif /* GL_ATI_blend_equation_separate */
  1666. /* GL_OES_EGL_image */
  1667. #if !defined(GL_OES_EGL_image) && !defined(GL_EXT_EGL_image_storage)
  1668. typedef void* GLeglImageOES;
  1669. #endif
  1670. #ifndef GL_OES_EGL_image
  1671. #define GL_OES_EGL_image 1
  1672. #ifdef GL_GLEXT_PROTOTYPES
  1673. GLAPI void APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);
  1674. GLAPI void APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);
  1675. #endif
  1676. typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image);
  1677. typedef void (APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
  1678. #endif
  1679. #ifdef __cplusplus
  1680. }
  1681. #endif
  1682. #endif /* __gl_h_ */