SDL_opengl.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:143k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_opengl.h,v 1.2 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* This is a simple file to encapsulate the OpenGL API headers */
  23. #ifdef WIN32
  24. #define WIN32_LEAN_AND_MEAN
  25. #include <windows.h>
  26. #endif
  27. #if defined(__APPLE__) && defined(__MACH__)
  28. #include <OpenGL/gl.h> /* Header File For The OpenGL Library */
  29. #include <OpenGL/glu.h> /* Header File For The GLU Library */
  30. #else
  31. #ifndef NO_SDL_GLEXT
  32. #define __glext_h_  /* Don't let gl.h include glext.h */
  33. #endif
  34. #include <GL/gl.h> /* Header File For The OpenGL Library */
  35. #include <GL/glu.h> /* Header File For The GLU Library */
  36. #ifndef NO_SDL_GLEXT
  37. #undef __glext_h_
  38. #endif
  39. #endif
  40. /* This file taken from "GLext.h" from the Jeff Molofee OpenGL tutorials.
  41.    It is included here because glext.h is not available on some systems.
  42.    If you don't want this version included, simply define "NO_SDL_GLEXT"
  43.  */
  44. #ifndef NO_SDL_GLEXT
  45. #if !defined(__glext_h_) && !defined(GL_GLEXT_LEGACY)
  46. #define __glext_h_
  47. #ifdef __cplusplus
  48. extern "C" {
  49. #endif
  50. /*
  51. ** License Applicability. Except to the extent portions of this file are
  52. ** made subject to an alternative license as permitted in the SGI Free
  53. ** Software License B, Version 1.1 (the "License"), the contents of this
  54. ** file are subject only to the provisions of the License. You may not use
  55. ** this file except in compliance with the License. You may obtain a copy
  56. ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
  57. ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
  58. ** 
  59. ** http://oss.sgi.com/projects/FreeB
  60. ** 
  61. ** Note that, as provided in the License, the Software is distributed on an
  62. ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
  63. ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
  64. ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
  65. ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
  66. ** 
  67. ** Original Code. The Original Code is: OpenGL Sample Implementation,
  68. ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
  69. ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
  70. ** Copyright in any portions created by third parties is as indicated
  71. ** elsewhere herein. All Rights Reserved.
  72. ** 
  73. ** Additional Notice Provisions: This software was created using the
  74. ** OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
  75. ** not been independently verified as being compliant with the OpenGL(R)
  76. ** version 1.2.1 Specification.
  77. */
  78. #ifndef APIENTRY
  79. #define APIENTRY
  80. #endif
  81. /*************************************************************/
  82. /* Header file version number, required by OpenGL ABI for Linux */
  83. #define GL_GLEXT_VERSION 6
  84. #ifndef GL_VERSION_1_2
  85. #define GL_CONSTANT_COLOR                 0x8001
  86. #define GL_ONE_MINUS_CONSTANT_COLOR       0x8002
  87. #define GL_CONSTANT_ALPHA                 0x8003
  88. #define GL_ONE_MINUS_CONSTANT_ALPHA       0x8004
  89. #define GL_BLEND_COLOR                    0x8005
  90. #define GL_FUNC_ADD                       0x8006
  91. #define GL_MIN                            0x8007
  92. #define GL_MAX                            0x8008
  93. #define GL_BLEND_EQUATION                 0x8009
  94. #define GL_FUNC_SUBTRACT                  0x800A
  95. #define GL_FUNC_REVERSE_SUBTRACT          0x800B
  96. #define GL_CONVOLUTION_1D                 0x8010
  97. #define GL_CONVOLUTION_2D                 0x8011
  98. #define GL_SEPARABLE_2D                   0x8012
  99. #define GL_CONVOLUTION_BORDER_MODE        0x8013
  100. #define GL_CONVOLUTION_FILTER_SCALE       0x8014
  101. #define GL_CONVOLUTION_FILTER_BIAS        0x8015
  102. #define GL_REDUCE                         0x8016
  103. #define GL_CONVOLUTION_FORMAT             0x8017
  104. #define GL_CONVOLUTION_WIDTH              0x8018
  105. #define GL_CONVOLUTION_HEIGHT             0x8019
  106. #define GL_MAX_CONVOLUTION_WIDTH          0x801A
  107. #define GL_MAX_CONVOLUTION_HEIGHT         0x801B
  108. #define GL_POST_CONVOLUTION_RED_SCALE     0x801C
  109. #define GL_POST_CONVOLUTION_GREEN_SCALE   0x801D
  110. #define GL_POST_CONVOLUTION_BLUE_SCALE    0x801E
  111. #define GL_POST_CONVOLUTION_ALPHA_SCALE   0x801F
  112. #define GL_POST_CONVOLUTION_RED_BIAS      0x8020
  113. #define GL_POST_CONVOLUTION_GREEN_BIAS    0x8021
  114. #define GL_POST_CONVOLUTION_BLUE_BIAS     0x8022
  115. #define GL_POST_CONVOLUTION_ALPHA_BIAS    0x8023
  116. #define GL_HISTOGRAM                      0x8024
  117. #define GL_PROXY_HISTOGRAM                0x8025
  118. #define GL_HISTOGRAM_WIDTH                0x8026
  119. #define GL_HISTOGRAM_FORMAT               0x8027
  120. #define GL_HISTOGRAM_RED_SIZE             0x8028
  121. #define GL_HISTOGRAM_GREEN_SIZE           0x8029
  122. #define GL_HISTOGRAM_BLUE_SIZE            0x802A
  123. #define GL_HISTOGRAM_ALPHA_SIZE           0x802B
  124. #define GL_HISTOGRAM_LUMINANCE_SIZE       0x802C
  125. #define GL_HISTOGRAM_SINK                 0x802D
  126. #define GL_MINMAX                         0x802E
  127. #define GL_MINMAX_FORMAT                  0x802F
  128. #define GL_MINMAX_SINK                    0x8030
  129. #define GL_TABLE_TOO_LARGE                0x8031
  130. #define GL_UNSIGNED_BYTE_3_3_2            0x8032
  131. #define GL_UNSIGNED_SHORT_4_4_4_4         0x8033
  132. #define GL_UNSIGNED_SHORT_5_5_5_1         0x8034
  133. #define GL_UNSIGNED_INT_8_8_8_8           0x8035
  134. #define GL_UNSIGNED_INT_10_10_10_2        0x8036
  135. #define GL_RESCALE_NORMAL                 0x803A
  136. #define GL_UNSIGNED_BYTE_2_3_3_REV        0x8362
  137. #define GL_UNSIGNED_SHORT_5_6_5           0x8363
  138. #define GL_UNSIGNED_SHORT_5_6_5_REV       0x8364
  139. #define GL_UNSIGNED_SHORT_4_4_4_4_REV     0x8365
  140. #define GL_UNSIGNED_SHORT_1_5_5_5_REV     0x8366
  141. #define GL_UNSIGNED_INT_8_8_8_8_REV       0x8367
  142. #define GL_UNSIGNED_INT_2_10_10_10_REV    0x8368
  143. #define GL_COLOR_MATRIX                   0x80B1
  144. #define GL_COLOR_MATRIX_STACK_DEPTH       0x80B2
  145. #define GL_MAX_COLOR_MATRIX_STACK_DEPTH   0x80B3
  146. #define GL_POST_COLOR_MATRIX_RED_SCALE    0x80B4
  147. #define GL_POST_COLOR_MATRIX_GREEN_SCALE  0x80B5
  148. #define GL_POST_COLOR_MATRIX_BLUE_SCALE   0x80B6
  149. #define GL_POST_COLOR_MATRIX_ALPHA_SCALE  0x80B7
  150. #define GL_POST_COLOR_MATRIX_RED_BIAS     0x80B8
  151. #define GL_POST_COLOR_MATRIX_GREEN_BIAS   0x80B9
  152. #define GL_POST_COLOR_MATRIX_BLUE_BIAS    0x80BA
  153. #define GL_COLOR_TABLE                    0x80D0
  154. #define GL_POST_CONVOLUTION_COLOR_TABLE   0x80D1
  155. #define GL_POST_COLOR_MATRIX_COLOR_TABLE  0x80D2
  156. #define GL_PROXY_COLOR_TABLE              0x80D3
  157. #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4
  158. #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5
  159. #define GL_COLOR_TABLE_SCALE              0x80D6
  160. #define GL_COLOR_TABLE_BIAS               0x80D7
  161. #define GL_COLOR_TABLE_FORMAT             0x80D8
  162. #define GL_COLOR_TABLE_WIDTH              0x80D9
  163. #define GL_COLOR_TABLE_RED_SIZE           0x80DA
  164. #define GL_COLOR_TABLE_GREEN_SIZE         0x80DB
  165. #define GL_COLOR_TABLE_BLUE_SIZE          0x80DC
  166. #define GL_COLOR_TABLE_ALPHA_SIZE         0x80DD
  167. #define GL_COLOR_TABLE_LUMINANCE_SIZE     0x80DE
  168. #define GL_COLOR_TABLE_INTENSITY_SIZE     0x80DF
  169. #define GL_CLAMP_TO_EDGE                  0x812F
  170. #define GL_TEXTURE_MIN_LOD                0x813A
  171. #define GL_TEXTURE_MAX_LOD                0x813B
  172. #define GL_TEXTURE_BASE_LEVEL             0x813C
  173. #define GL_TEXTURE_MAX_LEVEL              0x813D
  174. #endif
  175. #ifndef GL_ARB_multitexture
  176. #define GL_TEXTURE0_ARB                   0x84C0
  177. #define GL_TEXTURE1_ARB                   0x84C1
  178. #define GL_TEXTURE2_ARB                   0x84C2
  179. #define GL_TEXTURE3_ARB                   0x84C3
  180. #define GL_TEXTURE4_ARB                   0x84C4
  181. #define GL_TEXTURE5_ARB                   0x84C5
  182. #define GL_TEXTURE6_ARB                   0x84C6
  183. #define GL_TEXTURE7_ARB                   0x84C7
  184. #define GL_TEXTURE8_ARB                   0x84C8
  185. #define GL_TEXTURE9_ARB                   0x84C9
  186. #define GL_TEXTURE10_ARB                  0x84CA
  187. #define GL_TEXTURE11_ARB                  0x84CB
  188. #define GL_TEXTURE12_ARB                  0x84CC
  189. #define GL_TEXTURE13_ARB                  0x84CD
  190. #define GL_TEXTURE14_ARB                  0x84CE
  191. #define GL_TEXTURE15_ARB                  0x84CF
  192. #define GL_TEXTURE16_ARB                  0x84D0
  193. #define GL_TEXTURE17_ARB                  0x84D1
  194. #define GL_TEXTURE18_ARB                  0x84D2
  195. #define GL_TEXTURE19_ARB                  0x84D3
  196. #define GL_TEXTURE20_ARB                  0x84D4
  197. #define GL_TEXTURE21_ARB                  0x84D5
  198. #define GL_TEXTURE22_ARB                  0x84D6
  199. #define GL_TEXTURE23_ARB                  0x84D7
  200. #define GL_TEXTURE24_ARB                  0x84D8
  201. #define GL_TEXTURE25_ARB                  0x84D9
  202. #define GL_TEXTURE26_ARB                  0x84DA
  203. #define GL_TEXTURE27_ARB                  0x84DB
  204. #define GL_TEXTURE28_ARB                  0x84DC
  205. #define GL_TEXTURE29_ARB                  0x84DD
  206. #define GL_TEXTURE30_ARB                  0x84DE
  207. #define GL_TEXTURE31_ARB                  0x84DF
  208. #define GL_ACTIVE_TEXTURE_ARB             0x84E0
  209. #define GL_CLIENT_ACTIVE_TEXTURE_ARB      0x84E1
  210. #define GL_MAX_TEXTURE_UNITS_ARB          0x84E2
  211. #endif
  212. #ifndef GL_ARB_transpose_matrix
  213. #define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3
  214. #define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4
  215. #define GL_TRANSPOSE_TEXTURE_MATRIX_ARB   0x84E5
  216. #define GL_TRANSPOSE_COLOR_MATRIX_ARB     0x84E6
  217. #endif
  218. #ifndef GL_ARB_multisample
  219. #define GL_MULTISAMPLE_ARB                0x809D
  220. #define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB   0x809E
  221. #define GL_SAMPLE_ALPHA_TO_ONE_ARB        0x809F
  222. #define GL_SAMPLE_COVERAGE_ARB            0x80A0
  223. #define GL_SAMPLE_BUFFERS_ARB             0x80A8
  224. #define GL_SAMPLES_ARB                    0x80A9
  225. #define GL_SAMPLE_COVERAGE_VALUE_ARB      0x80AA
  226. #define GL_SAMPLE_COVERAGE_INVERT_ARB     0x80AB
  227. #define GL_MULTISAMPLE_BIT_ARB            0x20000000
  228. #endif
  229. #ifndef GL_ARB_texture_cube_map
  230. #define GL_NORMAL_MAP_ARB                 0x8511
  231. #define GL_REFLECTION_MAP_ARB             0x8512
  232. #define GL_TEXTURE_CUBE_MAP_ARB           0x8513
  233. #define GL_TEXTURE_BINDING_CUBE_MAP_ARB   0x8514
  234. #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515
  235. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516
  236. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517
  237. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518
  238. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519
  239. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A
  240. #define GL_PROXY_TEXTURE_CUBE_MAP_ARB     0x851B
  241. #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB  0x851C
  242. #endif
  243. #ifndef GL_ARB_texture_compression
  244. #define GL_COMPRESSED_ALPHA_ARB           0x84E9
  245. #define GL_COMPRESSED_LUMINANCE_ARB       0x84EA
  246. #define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB
  247. #define GL_COMPRESSED_INTENSITY_ARB       0x84EC
  248. #define GL_COMPRESSED_RGB_ARB             0x84ED
  249. #define GL_COMPRESSED_RGBA_ARB            0x84EE
  250. #define GL_TEXTURE_COMPRESSION_HINT_ARB   0x84EF
  251. #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB         0x86A0
  252. #define GL_TEXTURE_COMPRESSED_ARB         0x86A1
  253. #define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2
  254. #define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3
  255. #endif
  256. #ifndef GL_EXT_abgr
  257. #define GL_ABGR_EXT                       0x8000
  258. #endif
  259. #ifndef GL_EXT_blend_color
  260. #define GL_CONSTANT_COLOR_EXT             0x8001
  261. #define GL_ONE_MINUS_CONSTANT_COLOR_EXT   0x8002
  262. #define GL_CONSTANT_ALPHA_EXT             0x8003
  263. #define GL_ONE_MINUS_CONSTANT_ALPHA_EXT   0x8004
  264. #define GL_BLEND_COLOR_EXT                0x8005
  265. #endif
  266. #ifndef GL_EXT_polygon_offset
  267. #define GL_POLYGON_OFFSET_EXT             0x8037
  268. #define GL_POLYGON_OFFSET_FACTOR_EXT      0x8038
  269. #define GL_POLYGON_OFFSET_BIAS_EXT        0x8039
  270. #endif
  271. #ifndef GL_EXT_texture
  272. #define GL_ALPHA4_EXT                     0x803B
  273. #define GL_ALPHA8_EXT                     0x803C
  274. #define GL_ALPHA12_EXT                    0x803D
  275. #define GL_ALPHA16_EXT                    0x803E
  276. #define GL_LUMINANCE4_EXT                 0x803F
  277. #define GL_LUMINANCE8_EXT                 0x8040
  278. #define GL_LUMINANCE12_EXT                0x8041
  279. #define GL_LUMINANCE16_EXT                0x8042
  280. #define GL_LUMINANCE4_ALPHA4_EXT          0x8043
  281. #define GL_LUMINANCE6_ALPHA2_EXT          0x8044
  282. #define GL_LUMINANCE8_ALPHA8_EXT          0x8045
  283. #define GL_LUMINANCE12_ALPHA4_EXT         0x8046
  284. #define GL_LUMINANCE12_ALPHA12_EXT        0x8047
  285. #define GL_LUMINANCE16_ALPHA16_EXT        0x8048
  286. #define GL_INTENSITY_EXT                  0x8049
  287. #define GL_INTENSITY4_EXT                 0x804A
  288. #define GL_INTENSITY8_EXT                 0x804B
  289. #define GL_INTENSITY12_EXT                0x804C
  290. #define GL_INTENSITY16_EXT                0x804D
  291. #define GL_RGB2_EXT                       0x804E
  292. #define GL_RGB4_EXT                       0x804F
  293. #define GL_RGB5_EXT                       0x8050
  294. #define GL_RGB8_EXT                       0x8051
  295. #define GL_RGB10_EXT                      0x8052
  296. #define GL_RGB12_EXT                      0x8053
  297. #define GL_RGB16_EXT                      0x8054
  298. #define GL_RGBA2_EXT                      0x8055
  299. #define GL_RGBA4_EXT                      0x8056
  300. #define GL_RGB5_A1_EXT                    0x8057
  301. #define GL_RGBA8_EXT                      0x8058
  302. #define GL_RGB10_A2_EXT                   0x8059
  303. #define GL_RGBA12_EXT                     0x805A
  304. #define GL_RGBA16_EXT                     0x805B
  305. #define GL_TEXTURE_RED_SIZE_EXT           0x805C
  306. #define GL_TEXTURE_GREEN_SIZE_EXT         0x805D
  307. #define GL_TEXTURE_BLUE_SIZE_EXT          0x805E
  308. #define GL_TEXTURE_ALPHA_SIZE_EXT         0x805F
  309. #define GL_TEXTURE_LUMINANCE_SIZE_EXT     0x8060
  310. #define GL_TEXTURE_INTENSITY_SIZE_EXT     0x8061
  311. #define GL_REPLACE_EXT                    0x8062
  312. #define GL_PROXY_TEXTURE_1D_EXT           0x8063
  313. #define GL_PROXY_TEXTURE_2D_EXT           0x8064
  314. #define GL_TEXTURE_TOO_LARGE_EXT          0x8065
  315. #endif
  316. #ifndef GL_EXT_texture3D
  317. #define GL_PACK_SKIP_IMAGES               0x806B
  318. #define GL_PACK_SKIP_IMAGES_EXT           0x806B
  319. #define GL_PACK_IMAGE_HEIGHT              0x806C
  320. #define GL_PACK_IMAGE_HEIGHT_EXT          0x806C
  321. #define GL_UNPACK_SKIP_IMAGES             0x806D
  322. #define GL_UNPACK_SKIP_IMAGES_EXT         0x806D
  323. #define GL_UNPACK_IMAGE_HEIGHT            0x806E
  324. #define GL_UNPACK_IMAGE_HEIGHT_EXT        0x806E
  325. #define GL_TEXTURE_3D                     0x806F
  326. #define GL_TEXTURE_3D_EXT                 0x806F
  327. #define GL_PROXY_TEXTURE_3D               0x8070
  328. #define GL_PROXY_TEXTURE_3D_EXT           0x8070
  329. #define GL_TEXTURE_DEPTH                  0x8071
  330. #define GL_TEXTURE_DEPTH_EXT              0x8071
  331. #define GL_TEXTURE_WRAP_R                 0x8072
  332. #define GL_TEXTURE_WRAP_R_EXT             0x8072
  333. #define GL_MAX_3D_TEXTURE_SIZE            0x8073
  334. #define GL_MAX_3D_TEXTURE_SIZE_EXT        0x8073
  335. #endif
  336. #ifndef GL_SGIS_texture_filter4
  337. #define GL_FILTER4_SGIS                   0x8146
  338. #define GL_TEXTURE_FILTER4_SIZE_SGIS      0x8147
  339. #endif
  340. #ifndef GL_EXT_subtexture
  341. #endif
  342. #ifndef GL_EXT_copy_texture
  343. #endif
  344. #ifndef GL_EXT_histogram
  345. #define GL_HISTOGRAM_EXT                  0x8024
  346. #define GL_PROXY_HISTOGRAM_EXT            0x8025
  347. #define GL_HISTOGRAM_WIDTH_EXT            0x8026
  348. #define GL_HISTOGRAM_FORMAT_EXT           0x8027
  349. #define GL_HISTOGRAM_RED_SIZE_EXT         0x8028
  350. #define GL_HISTOGRAM_GREEN_SIZE_EXT       0x8029
  351. #define GL_HISTOGRAM_BLUE_SIZE_EXT        0x802A
  352. #define GL_HISTOGRAM_ALPHA_SIZE_EXT       0x802B
  353. #define GL_HISTOGRAM_LUMINANCE_SIZE_EXT   0x802C
  354. #define GL_HISTOGRAM_SINK_EXT             0x802D
  355. #define GL_MINMAX_EXT                     0x802E
  356. #define GL_MINMAX_FORMAT_EXT              0x802F
  357. #define GL_MINMAX_SINK_EXT                0x8030
  358. #define GL_TABLE_TOO_LARGE_EXT            0x8031
  359. #endif
  360. #ifndef GL_EXT_convolution
  361. #define GL_CONVOLUTION_1D_EXT             0x8010
  362. #define GL_CONVOLUTION_2D_EXT             0x8011
  363. #define GL_SEPARABLE_2D_EXT               0x8012
  364. #define GL_CONVOLUTION_BORDER_MODE_EXT    0x8013
  365. #define GL_CONVOLUTION_FILTER_SCALE_EXT   0x8014
  366. #define GL_CONVOLUTION_FILTER_BIAS_EXT    0x8015
  367. #define GL_REDUCE_EXT                     0x8016
  368. #define GL_CONVOLUTION_FORMAT_EXT         0x8017
  369. #define GL_CONVOLUTION_WIDTH_EXT          0x8018
  370. #define GL_CONVOLUTION_HEIGHT_EXT         0x8019
  371. #define GL_MAX_CONVOLUTION_WIDTH_EXT      0x801A
  372. #define GL_MAX_CONVOLUTION_HEIGHT_EXT     0x801B
  373. #define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C
  374. #define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D
  375. #define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E
  376. #define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F
  377. #define GL_POST_CONVOLUTION_RED_BIAS_EXT  0x8020
  378. #define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021
  379. #define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022
  380. #define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023
  381. #endif
  382. #ifndef GL_SGI_color_matrix
  383. #define GL_COLOR_MATRIX_SGI               0x80B1
  384. #define GL_COLOR_MATRIX_STACK_DEPTH_SGI   0x80B2
  385. #define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3
  386. #define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4
  387. #define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5
  388. #define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6
  389. #define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7
  390. #define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8
  391. #define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9
  392. #define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA
  393. #define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB
  394. #endif
  395. #ifndef GL_SGI_color_table
  396. #define GL_COLOR_TABLE_SGI                0x80D0
  397. #define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1
  398. #define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2
  399. #define GL_PROXY_COLOR_TABLE_SGI          0x80D3
  400. #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4
  401. #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5
  402. #define GL_COLOR_TABLE_SCALE_SGI          0x80D6
  403. #define GL_COLOR_TABLE_BIAS_SGI           0x80D7
  404. #define GL_COLOR_TABLE_FORMAT_SGI         0x80D8
  405. #define GL_COLOR_TABLE_WIDTH_SGI          0x80D9
  406. #define GL_COLOR_TABLE_RED_SIZE_SGI       0x80DA
  407. #define GL_COLOR_TABLE_GREEN_SIZE_SGI     0x80DB
  408. #define GL_COLOR_TABLE_BLUE_SIZE_SGI      0x80DC
  409. #define GL_COLOR_TABLE_ALPHA_SIZE_SGI     0x80DD
  410. #define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE
  411. #define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF
  412. #endif
  413. #ifndef GL_SGIS_pixel_texture
  414. #define GL_PIXEL_TEXTURE_SGIS             0x8353
  415. #define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354
  416. #define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355
  417. #define GL_PIXEL_GROUP_COLOR_SGIS         0x8356
  418. #endif
  419. #ifndef GL_SGIX_pixel_texture
  420. #define GL_PIXEL_TEX_GEN_SGIX             0x8139
  421. #define GL_PIXEL_TEX_GEN_MODE_SGIX        0x832B
  422. #endif
  423. #ifndef GL_SGIS_texture4D
  424. #define GL_PACK_SKIP_VOLUMES_SGIS         0x8130
  425. #define GL_PACK_IMAGE_DEPTH_SGIS          0x8131
  426. #define GL_UNPACK_SKIP_VOLUMES_SGIS       0x8132
  427. #define GL_UNPACK_IMAGE_DEPTH_SGIS        0x8133
  428. #define GL_TEXTURE_4D_SGIS                0x8134
  429. #define GL_PROXY_TEXTURE_4D_SGIS          0x8135
  430. #define GL_TEXTURE_4DSIZE_SGIS            0x8136
  431. #define GL_TEXTURE_WRAP_Q_SGIS            0x8137
  432. #define GL_MAX_4D_TEXTURE_SIZE_SGIS       0x8138
  433. #define GL_TEXTURE_4D_BINDING_SGIS        0x814F
  434. #endif
  435. #ifndef GL_SGI_texture_color_table
  436. #define GL_TEXTURE_COLOR_TABLE_SGI        0x80BC
  437. #define GL_PROXY_TEXTURE_COLOR_TABLE_SGI  0x80BD
  438. #endif
  439. #ifndef GL_EXT_cmyka
  440. #define GL_CMYK_EXT                       0x800C
  441. #define GL_CMYKA_EXT                      0x800D
  442. #define GL_PACK_CMYK_HINT_EXT             0x800E
  443. #define GL_UNPACK_CMYK_HINT_EXT           0x800F
  444. #endif
  445. #ifndef GL_EXT_texture_object
  446. #define GL_TEXTURE_PRIORITY_EXT           0x8066
  447. #define GL_TEXTURE_RESIDENT_EXT           0x8067
  448. #define GL_TEXTURE_1D_BINDING_EXT         0x8068
  449. #define GL_TEXTURE_2D_BINDING_EXT         0x8069
  450. #define GL_TEXTURE_3D_BINDING_EXT         0x806A
  451. #endif
  452. #ifndef GL_SGIS_detail_texture
  453. #define GL_DETAIL_TEXTURE_2D_SGIS         0x8095
  454. #define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096
  455. #define GL_LINEAR_DETAIL_SGIS             0x8097
  456. #define GL_LINEAR_DETAIL_ALPHA_SGIS       0x8098
  457. #define GL_LINEAR_DETAIL_COLOR_SGIS       0x8099
  458. #define GL_DETAIL_TEXTURE_LEVEL_SGIS      0x809A
  459. #define GL_DETAIL_TEXTURE_MODE_SGIS       0x809B
  460. #define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C
  461. #endif
  462. #ifndef GL_SGIS_sharpen_texture
  463. #define GL_LINEAR_SHARPEN_SGIS            0x80AD
  464. #define GL_LINEAR_SHARPEN_ALPHA_SGIS      0x80AE
  465. #define GL_LINEAR_SHARPEN_COLOR_SGIS      0x80AF
  466. #define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0
  467. #endif
  468. #ifndef GL_EXT_packed_pixels
  469. #define GL_UNSIGNED_BYTE_3_3_2_EXT        0x8032
  470. #define GL_UNSIGNED_SHORT_4_4_4_4_EXT     0x8033
  471. #define GL_UNSIGNED_SHORT_5_5_5_1_EXT     0x8034
  472. #define GL_UNSIGNED_INT_8_8_8_8_EXT       0x8035
  473. #define GL_UNSIGNED_INT_10_10_10_2_EXT    0x8036
  474. #endif
  475. #ifndef GL_SGIS_texture_lod
  476. #define GL_TEXTURE_MIN_LOD_SGIS           0x813A
  477. #define GL_TEXTURE_MAX_LOD_SGIS           0x813B
  478. #define GL_TEXTURE_BASE_LEVEL_SGIS        0x813C
  479. #define GL_TEXTURE_MAX_LEVEL_SGIS         0x813D
  480. #endif
  481. #ifndef GL_SGIS_multisample
  482. #define GL_MULTISAMPLE_SGIS               0x809D
  483. #define GL_SAMPLE_ALPHA_TO_MASK_SGIS      0x809E
  484. #define GL_SAMPLE_ALPHA_TO_ONE_SGIS       0x809F
  485. #define GL_SAMPLE_MASK_SGIS               0x80A0
  486. #define GL_1PASS_SGIS                     0x80A1
  487. #define GL_2PASS_0_SGIS                   0x80A2
  488. #define GL_2PASS_1_SGIS                   0x80A3
  489. #define GL_4PASS_0_SGIS                   0x80A4
  490. #define GL_4PASS_1_SGIS                   0x80A5
  491. #define GL_4PASS_2_SGIS                   0x80A6
  492. #define GL_4PASS_3_SGIS                   0x80A7
  493. #define GL_SAMPLE_BUFFERS_SGIS            0x80A8
  494. #define GL_SAMPLES_SGIS                   0x80A9
  495. #define GL_SAMPLE_MASK_VALUE_SGIS         0x80AA
  496. #define GL_SAMPLE_MASK_INVERT_SGIS        0x80AB
  497. #define GL_SAMPLE_PATTERN_SGIS            0x80AC
  498. #endif
  499. #ifndef GL_EXT_rescale_normal
  500. #define GL_RESCALE_NORMAL_EXT             0x803A
  501. #endif
  502. #ifndef GL_EXT_vertex_array
  503. #define GL_VERTEX_ARRAY_EXT               0x8074
  504. #define GL_NORMAL_ARRAY_EXT               0x8075
  505. #define GL_COLOR_ARRAY_EXT                0x8076
  506. #define GL_INDEX_ARRAY_EXT                0x8077
  507. #define GL_TEXTURE_COORD_ARRAY_EXT        0x8078
  508. #define GL_EDGE_FLAG_ARRAY_EXT            0x8079
  509. #define GL_VERTEX_ARRAY_SIZE_EXT          0x807A
  510. #define GL_VERTEX_ARRAY_TYPE_EXT          0x807B
  511. #define GL_VERTEX_ARRAY_STRIDE_EXT        0x807C
  512. #define GL_VERTEX_ARRAY_COUNT_EXT         0x807D
  513. #define GL_NORMAL_ARRAY_TYPE_EXT          0x807E
  514. #define GL_NORMAL_ARRAY_STRIDE_EXT        0x807F
  515. #define GL_NORMAL_ARRAY_COUNT_EXT         0x8080
  516. #define GL_COLOR_ARRAY_SIZE_EXT           0x8081
  517. #define GL_COLOR_ARRAY_TYPE_EXT           0x8082
  518. #define GL_COLOR_ARRAY_STRIDE_EXT         0x8083
  519. #define GL_COLOR_ARRAY_COUNT_EXT          0x8084
  520. #define GL_INDEX_ARRAY_TYPE_EXT           0x8085
  521. #define GL_INDEX_ARRAY_STRIDE_EXT         0x8086
  522. #define GL_INDEX_ARRAY_COUNT_EXT          0x8087
  523. #define GL_TEXTURE_COORD_ARRAY_SIZE_EXT   0x8088
  524. #define GL_TEXTURE_COORD_ARRAY_TYPE_EXT   0x8089
  525. #define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A
  526. #define GL_TEXTURE_COORD_ARRAY_COUNT_EXT  0x808B
  527. #define GL_EDGE_FLAG_ARRAY_STRIDE_EXT     0x808C
  528. #define GL_EDGE_FLAG_ARRAY_COUNT_EXT      0x808D
  529. #define GL_VERTEX_ARRAY_POINTER_EXT       0x808E
  530. #define GL_NORMAL_ARRAY_POINTER_EXT       0x808F
  531. #define GL_COLOR_ARRAY_POINTER_EXT        0x8090
  532. #define GL_INDEX_ARRAY_POINTER_EXT        0x8091
  533. #define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092
  534. #define GL_EDGE_FLAG_ARRAY_POINTER_EXT    0x8093
  535. #endif
  536. #ifndef GL_EXT_misc_attribute
  537. #endif
  538. #ifndef GL_SGIS_generate_mipmap
  539. #define GL_GENERATE_MIPMAP_SGIS           0x8191
  540. #define GL_GENERATE_MIPMAP_HINT_SGIS      0x8192
  541. #endif
  542. #ifndef GL_SGIX_clipmap
  543. #define GL_LINEAR_CLIPMAP_LINEAR_SGIX     0x8170
  544. #define GL_TEXTURE_CLIPMAP_CENTER_SGIX    0x8171
  545. #define GL_TEXTURE_CLIPMAP_FRAME_SGIX     0x8172
  546. #define GL_TEXTURE_CLIPMAP_OFFSET_SGIX    0x8173
  547. #define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174
  548. #define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175
  549. #define GL_TEXTURE_CLIPMAP_DEPTH_SGIX     0x8176
  550. #define GL_MAX_CLIPMAP_DEPTH_SGIX         0x8177
  551. #define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178
  552. #define GL_NEAREST_CLIPMAP_NEAREST_SGIX   0x844D
  553. #define GL_NEAREST_CLIPMAP_LINEAR_SGIX    0x844E
  554. #define GL_LINEAR_CLIPMAP_NEAREST_SGIX    0x844F
  555. #endif
  556. #ifndef GL_SGIX_shadow
  557. #define GL_TEXTURE_COMPARE_SGIX           0x819A
  558. #define GL_TEXTURE_COMPARE_OPERATOR_SGIX  0x819B
  559. #define GL_TEXTURE_LEQUAL_R_SGIX          0x819C
  560. #define GL_TEXTURE_GEQUAL_R_SGIX          0x819D
  561. #endif
  562. #ifndef GL_SGIS_texture_edge_clamp
  563. #define GL_CLAMP_TO_EDGE_SGIS             0x812F
  564. #endif
  565. #ifndef GL_SGIS_texture_border_clamp
  566. #define GL_CLAMP_TO_BORDER_SGIS           0x812D
  567. #endif
  568. #ifndef GL_EXT_blend_minmax
  569. #define GL_FUNC_ADD_EXT                   0x8006
  570. #define GL_MIN_EXT                        0x8007
  571. #define GL_MAX_EXT                        0x8008
  572. #define GL_BLEND_EQUATION_EXT             0x8009
  573. #endif
  574. #ifndef GL_EXT_blend_subtract
  575. #define GL_FUNC_SUBTRACT_EXT              0x800A
  576. #define GL_FUNC_REVERSE_SUBTRACT_EXT      0x800B
  577. #endif
  578. #ifndef GL_EXT_blend_logic_op
  579. #endif
  580. #ifndef GL_SGIX_interlace
  581. #define GL_INTERLACE_SGIX                 0x8094
  582. #endif
  583. #ifndef GL_SGIX_pixel_tiles
  584. #define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E
  585. #define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F
  586. #define GL_PIXEL_TILE_WIDTH_SGIX          0x8140
  587. #define GL_PIXEL_TILE_HEIGHT_SGIX         0x8141
  588. #define GL_PIXEL_TILE_GRID_WIDTH_SGIX     0x8142
  589. #define GL_PIXEL_TILE_GRID_HEIGHT_SGIX    0x8143
  590. #define GL_PIXEL_TILE_GRID_DEPTH_SGIX     0x8144
  591. #define GL_PIXEL_TILE_CACHE_SIZE_SGIX     0x8145
  592. #endif
  593. #ifndef GL_SGIS_texture_select
  594. #define GL_DUAL_ALPHA4_SGIS               0x8110
  595. #define GL_DUAL_ALPHA8_SGIS               0x8111
  596. #define GL_DUAL_ALPHA12_SGIS              0x8112
  597. #define GL_DUAL_ALPHA16_SGIS              0x8113
  598. #define GL_DUAL_LUMINANCE4_SGIS           0x8114
  599. #define GL_DUAL_LUMINANCE8_SGIS           0x8115
  600. #define GL_DUAL_LUMINANCE12_SGIS          0x8116
  601. #define GL_DUAL_LUMINANCE16_SGIS          0x8117
  602. #define GL_DUAL_INTENSITY4_SGIS           0x8118
  603. #define GL_DUAL_INTENSITY8_SGIS           0x8119
  604. #define GL_DUAL_INTENSITY12_SGIS          0x811A
  605. #define GL_DUAL_INTENSITY16_SGIS          0x811B
  606. #define GL_DUAL_LUMINANCE_ALPHA4_SGIS     0x811C
  607. #define GL_DUAL_LUMINANCE_ALPHA8_SGIS     0x811D
  608. #define GL_QUAD_ALPHA4_SGIS               0x811E
  609. #define GL_QUAD_ALPHA8_SGIS               0x811F
  610. #define GL_QUAD_LUMINANCE4_SGIS           0x8120
  611. #define GL_QUAD_LUMINANCE8_SGIS           0x8121
  612. #define GL_QUAD_INTENSITY4_SGIS           0x8122
  613. #define GL_QUAD_INTENSITY8_SGIS           0x8123
  614. #define GL_DUAL_TEXTURE_SELECT_SGIS       0x8124
  615. #define GL_QUAD_TEXTURE_SELECT_SGIS       0x8125
  616. #endif
  617. #ifndef GL_SGIX_sprite
  618. #define GL_SPRITE_SGIX                    0x8148
  619. #define GL_SPRITE_MODE_SGIX               0x8149
  620. #define GL_SPRITE_AXIS_SGIX               0x814A
  621. #define GL_SPRITE_TRANSLATION_SGIX        0x814B
  622. #define GL_SPRITE_AXIAL_SGIX              0x814C
  623. #define GL_SPRITE_OBJECT_ALIGNED_SGIX     0x814D
  624. #define GL_SPRITE_EYE_ALIGNED_SGIX        0x814E
  625. #endif
  626. #ifndef GL_SGIX_texture_multi_buffer
  627. #define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E
  628. #endif
  629. #ifndef GL_SGIS_point_parameters
  630. #define GL_POINT_SIZE_MIN_EXT             0x8126
  631. #define GL_POINT_SIZE_MIN_SGIS            0x8126
  632. #define GL_POINT_SIZE_MAX_EXT             0x8127
  633. #define GL_POINT_SIZE_MAX_SGIS            0x8127
  634. #define GL_POINT_FADE_THRESHOLD_SIZE_EXT  0x8128
  635. #define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128
  636. #define GL_DISTANCE_ATTENUATION_EXT       0x8129
  637. #define GL_DISTANCE_ATTENUATION_SGIS      0x8129
  638. #endif
  639. #ifndef GL_SGIX_instruments
  640. #define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180
  641. #define GL_INSTRUMENT_MEASUREMENTS_SGIX   0x8181
  642. #endif
  643. #ifndef GL_SGIX_texture_scale_bias
  644. #define GL_POST_TEXTURE_FILTER_BIAS_SGIX  0x8179
  645. #define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A
  646. #define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B
  647. #define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C
  648. #endif
  649. #ifndef GL_SGIX_framezoom
  650. #define GL_FRAMEZOOM_SGIX                 0x818B
  651. #define GL_FRAMEZOOM_FACTOR_SGIX          0x818C
  652. #define GL_MAX_FRAMEZOOM_FACTOR_SGIX      0x818D
  653. #endif
  654. #ifndef GL_SGIX_tag_sample_buffer
  655. #endif
  656. #ifndef GL_SGIX_reference_plane
  657. #define GL_REFERENCE_PLANE_SGIX           0x817D
  658. #define GL_REFERENCE_PLANE_EQUATION_SGIX  0x817E
  659. #endif
  660. #ifndef GL_SGIX_flush_raster
  661. #endif
  662. #ifndef GL_SGIX_depth_texture
  663. #define GL_DEPTH_COMPONENT16_SGIX         0x81A5
  664. #define GL_DEPTH_COMPONENT24_SGIX         0x81A6
  665. #define GL_DEPTH_COMPONENT32_SGIX         0x81A7
  666. #endif
  667. #ifndef GL_SGIS_fog_function
  668. #define GL_FOG_FUNC_SGIS                  0x812A
  669. #define GL_FOG_FUNC_POINTS_SGIS           0x812B
  670. #define GL_MAX_FOG_FUNC_POINTS_SGIS       0x812C
  671. #endif
  672. #ifndef GL_SGIX_fog_offset
  673. #define GL_FOG_OFFSET_SGIX                0x8198
  674. #define GL_FOG_OFFSET_VALUE_SGIX          0x8199
  675. #endif
  676. #ifndef GL_HP_image_transform
  677. #define GL_IMAGE_SCALE_X_HP               0x8155
  678. #define GL_IMAGE_SCALE_Y_HP               0x8156
  679. #define GL_IMAGE_TRANSLATE_X_HP           0x8157
  680. #define GL_IMAGE_TRANSLATE_Y_HP           0x8158
  681. #define GL_IMAGE_ROTATE_ANGLE_HP          0x8159
  682. #define GL_IMAGE_ROTATE_ORIGIN_X_HP       0x815A
  683. #define GL_IMAGE_ROTATE_ORIGIN_Y_HP       0x815B
  684. #define GL_IMAGE_MAG_FILTER_HP            0x815C
  685. #define GL_IMAGE_MIN_FILTER_HP            0x815D
  686. #define GL_IMAGE_CUBIC_WEIGHT_HP          0x815E
  687. #define GL_CUBIC_HP                       0x815F
  688. #define GL_AVERAGE_HP                     0x8160
  689. #define GL_IMAGE_TRANSFORM_2D_HP          0x8161
  690. #define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162
  691. #define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163
  692. #endif
  693. #ifndef GL_HP_convolution_border_modes
  694. #define GL_IGNORE_BORDER_HP               0x8150
  695. #define GL_CONSTANT_BORDER_HP             0x8151
  696. #define GL_REPLICATE_BORDER_HP            0x8153
  697. #define GL_CONVOLUTION_BORDER_COLOR_HP    0x8154
  698. #endif
  699. #ifndef GL_INGR_palette_buffer
  700. #endif
  701. #ifndef GL_SGIX_texture_add_env
  702. #define GL_TEXTURE_ENV_BIAS_SGIX          0x80BE
  703. #endif
  704. #ifndef GL_EXT_color_subtable
  705. #endif
  706. #ifndef GL_PGI_vertex_hints
  707. #define GL_VERTEX_DATA_HINT_PGI           0x1A22A
  708. #define GL_VERTEX_CONSISTENT_HINT_PGI     0x1A22B
  709. #define GL_MATERIAL_SIDE_HINT_PGI         0x1A22C
  710. #define GL_MAX_VERTEX_HINT_PGI            0x1A22D
  711. #define GL_COLOR3_BIT_PGI                 0x00010000
  712. #define GL_COLOR4_BIT_PGI                 0x00020000
  713. #define GL_EDGEFLAG_BIT_PGI               0x00040000
  714. #define GL_INDEX_BIT_PGI                  0x00080000
  715. #define GL_MAT_AMBIENT_BIT_PGI            0x00100000
  716. #define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000
  717. #define GL_MAT_DIFFUSE_BIT_PGI            0x00400000
  718. #define GL_MAT_EMISSION_BIT_PGI           0x00800000
  719. #define GL_MAT_COLOR_INDEXES_BIT_PGI      0x01000000
  720. #define GL_MAT_SHININESS_BIT_PGI          0x02000000
  721. #define GL_MAT_SPECULAR_BIT_PGI           0x04000000
  722. #define GL_NORMAL_BIT_PGI                 0x08000000
  723. #define GL_TEXCOORD1_BIT_PGI              0x10000000
  724. #define GL_TEXCOORD2_BIT_PGI              0x20000000
  725. #define GL_TEXCOORD3_BIT_PGI              0x40000000
  726. #define GL_TEXCOORD4_BIT_PGI              0x80000000
  727. #define GL_VERTEX23_BIT_PGI               0x00000004
  728. #define GL_VERTEX4_BIT_PGI                0x00000008
  729. #endif
  730. #ifndef GL_PGI_misc_hints
  731. #define GL_PREFER_DOUBLEBUFFER_HINT_PGI   0x1A1F8
  732. #define GL_CONSERVE_MEMORY_HINT_PGI       0x1A1FD
  733. #define GL_RECLAIM_MEMORY_HINT_PGI        0x1A1FE
  734. #define GL_NATIVE_GRAPHICS_HANDLE_PGI     0x1A202
  735. #define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203
  736. #define GL_NATIVE_GRAPHICS_END_HINT_PGI   0x1A204
  737. #define GL_ALWAYS_FAST_HINT_PGI           0x1A20C
  738. #define GL_ALWAYS_SOFT_HINT_PGI           0x1A20D
  739. #define GL_ALLOW_DRAW_OBJ_HINT_PGI        0x1A20E
  740. #define GL_ALLOW_DRAW_WIN_HINT_PGI        0x1A20F
  741. #define GL_ALLOW_DRAW_FRG_HINT_PGI        0x1A210
  742. #define GL_ALLOW_DRAW_MEM_HINT_PGI        0x1A211
  743. #define GL_STRICT_DEPTHFUNC_HINT_PGI      0x1A216
  744. #define GL_STRICT_LIGHTING_HINT_PGI       0x1A217
  745. #define GL_STRICT_SCISSOR_HINT_PGI        0x1A218
  746. #define GL_FULL_STIPPLE_HINT_PGI          0x1A219
  747. #define GL_CLIP_NEAR_HINT_PGI             0x1A220
  748. #define GL_CLIP_FAR_HINT_PGI              0x1A221
  749. #define GL_WIDE_LINE_HINT_PGI             0x1A222
  750. #define GL_BACK_NORMALS_HINT_PGI          0x1A223
  751. #endif
  752. #ifndef GL_EXT_paletted_texture
  753. #define GL_COLOR_INDEX1_EXT               0x80E2
  754. #define GL_COLOR_INDEX2_EXT               0x80E3
  755. #define GL_COLOR_INDEX4_EXT               0x80E4
  756. #define GL_COLOR_INDEX8_EXT               0x80E5
  757. #define GL_COLOR_INDEX12_EXT              0x80E6
  758. #define GL_COLOR_INDEX16_EXT              0x80E7
  759. #define GL_TEXTURE_INDEX_SIZE_EXT         0x80ED
  760. #endif
  761. #ifndef GL_EXT_clip_volume_hint
  762. #define GL_CLIP_VOLUME_CLIPPING_HINT_EXT  0x80F0
  763. #endif
  764. #ifndef GL_SGIX_list_priority
  765. #define GL_LIST_PRIORITY_SGIX             0x8182
  766. #endif
  767. #ifndef GL_SGIX_ir_instrument1
  768. #define GL_IR_INSTRUMENT1_SGIX            0x817F
  769. #endif
  770. #ifndef GL_SGIX_calligraphic_fragment
  771. #define GL_CALLIGRAPHIC_FRAGMENT_SGIX     0x8183
  772. #endif
  773. #ifndef GL_SGIX_texture_lod_bias
  774. #define GL_TEXTURE_LOD_BIAS_S_SGIX        0x818E
  775. #define GL_TEXTURE_LOD_BIAS_T_SGIX        0x818F
  776. #define GL_TEXTURE_LOD_BIAS_R_SGIX        0x8190
  777. #endif
  778. #ifndef GL_SGIX_shadow_ambient
  779. #define GL_SHADOW_AMBIENT_SGIX            0x80BF
  780. #endif
  781. #ifndef GL_EXT_index_texture
  782. #endif
  783. #ifndef GL_EXT_index_material
  784. #define GL_INDEX_MATERIAL_EXT             0x81B8
  785. #define GL_INDEX_MATERIAL_PARAMETER_EXT   0x81B9
  786. #define GL_INDEX_MATERIAL_FACE_EXT        0x81BA
  787. #endif
  788. #ifndef GL_EXT_index_func
  789. #define GL_INDEX_TEST_EXT                 0x81B5
  790. #define GL_INDEX_TEST_FUNC_EXT            0x81B6
  791. #define GL_INDEX_TEST_REF_EXT             0x81B7
  792. #endif
  793. #ifndef GL_EXT_index_array_formats
  794. #define GL_IUI_V2F_EXT                    0x81AD
  795. #define GL_IUI_V3F_EXT                    0x81AE
  796. #define GL_IUI_N3F_V2F_EXT                0x81AF
  797. #define GL_IUI_N3F_V3F_EXT                0x81B0
  798. #define GL_T2F_IUI_V2F_EXT                0x81B1
  799. #define GL_T2F_IUI_V3F_EXT                0x81B2
  800. #define GL_T2F_IUI_N3F_V2F_EXT            0x81B3
  801. #define GL_T2F_IUI_N3F_V3F_EXT            0x81B4
  802. #endif
  803. #ifndef GL_EXT_compiled_vertex_array
  804. #define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT   0x81A8
  805. #define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT   0x81A9
  806. #endif
  807. #ifndef GL_EXT_cull_vertex
  808. #define GL_CULL_VERTEX_EXT                0x81AA
  809. #define GL_CULL_VERTEX_EYE_POSITION_EXT   0x81AB
  810. #define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC
  811. #endif
  812. #ifndef GL_SGIX_ycrcb
  813. #define GL_YCRCB_422_SGIX                 0x81BB
  814. #define GL_YCRCB_444_SGIX                 0x81BC
  815. #endif
  816. #ifndef GL_SGIX_fragment_lighting
  817. #define GL_FRAGMENT_LIGHTING_SGIX         0x8400
  818. #define GL_FRAGMENT_COLOR_MATERIAL_SGIX   0x8401
  819. #define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402
  820. #define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403
  821. #define GL_MAX_FRAGMENT_LIGHTS_SGIX       0x8404
  822. #define GL_MAX_ACTIVE_LIGHTS_SGIX         0x8405
  823. #define GL_CURRENT_RASTER_NORMAL_SGIX     0x8406
  824. #define GL_LIGHT_ENV_MODE_SGIX            0x8407
  825. #define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408
  826. #define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409
  827. #define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A
  828. #define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B
  829. #define GL_FRAGMENT_LIGHT0_SGIX           0x840C
  830. #define GL_FRAGMENT_LIGHT1_SGIX           0x840D
  831. #define GL_FRAGMENT_LIGHT2_SGIX           0x840E
  832. #define GL_FRAGMENT_LIGHT3_SGIX           0x840F
  833. #define GL_FRAGMENT_LIGHT4_SGIX           0x8410
  834. #define GL_FRAGMENT_LIGHT5_SGIX           0x8411
  835. #define GL_FRAGMENT_LIGHT6_SGIX           0x8412
  836. #define GL_FRAGMENT_LIGHT7_SGIX           0x8413
  837. #endif
  838. #ifndef GL_IBM_rasterpos_clip
  839. #define GL_RASTER_POSITION_UNCLIPPED_IBM  0x19262
  840. #endif
  841. #ifndef GL_HP_texture_lighting
  842. #define GL_TEXTURE_LIGHTING_MODE_HP       0x8167
  843. #define GL_TEXTURE_POST_SPECULAR_HP       0x8168
  844. #define GL_TEXTURE_PRE_SPECULAR_HP        0x8169
  845. #endif
  846. #ifndef GL_EXT_draw_range_elements
  847. #define GL_MAX_ELEMENTS_VERTICES_EXT      0x80E8
  848. #define GL_MAX_ELEMENTS_INDICES_EXT       0x80E9
  849. #endif
  850. #ifndef GL_WIN_phong_shading
  851. #define GL_PHONG_WIN                      0x80EA
  852. #define GL_PHONG_HINT_WIN                 0x80EB
  853. #endif
  854. #ifndef GL_WIN_specular_fog
  855. #define GL_FOG_SPECULAR_TEXTURE_WIN       0x80EC
  856. #endif
  857. #ifndef GL_EXT_light_texture
  858. #define GL_FRAGMENT_MATERIAL_EXT          0x8349
  859. #define GL_FRAGMENT_NORMAL_EXT            0x834A
  860. #define GL_FRAGMENT_COLOR_EXT             0x834C
  861. #define GL_ATTENUATION_EXT                0x834D
  862. #define GL_SHADOW_ATTENUATION_EXT         0x834E
  863. #define GL_TEXTURE_APPLICATION_MODE_EXT   0x834F
  864. #define GL_TEXTURE_LIGHT_EXT              0x8350
  865. #define GL_TEXTURE_MATERIAL_FACE_EXT      0x8351
  866. #define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352
  867. /* reuse GL_FRAGMENT_DEPTH_EXT */
  868. #endif
  869. #ifndef GL_SGIX_blend_alpha_minmax
  870. #define GL_ALPHA_MIN_SGIX                 0x8320
  871. #define GL_ALPHA_MAX_SGIX                 0x8321
  872. #endif
  873. #ifndef GL_EXT_bgra
  874. #define GL_BGR_EXT                        0x80E0
  875. #define GL_BGRA_EXT                       0x80E1
  876. #endif
  877. #ifndef GL_INTEL_texture_scissor
  878. #endif
  879. #ifndef GL_INTEL_parallel_arrays
  880. #define GL_PARALLEL_ARRAYS_INTEL          0x83F4
  881. #define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5
  882. #define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6
  883. #define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7
  884. #define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8
  885. #endif
  886. #ifndef GL_HP_occlusion_test
  887. #define GL_OCCLUSION_TEST_HP              0x8165
  888. #define GL_OCCLUSION_TEST_RESULT_HP       0x8166
  889. #endif
  890. #ifndef GL_EXT_pixel_transform
  891. #define GL_PIXEL_TRANSFORM_2D_EXT         0x8330
  892. #define GL_PIXEL_MAG_FILTER_EXT           0x8331
  893. #define GL_PIXEL_MIN_FILTER_EXT           0x8332
  894. #define GL_PIXEL_CUBIC_WEIGHT_EXT         0x8333
  895. #define GL_CUBIC_EXT                      0x8334
  896. #define GL_AVERAGE_EXT                    0x8335
  897. #define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336
  898. #define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337
  899. #define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT  0x8338
  900. #endif
  901. #ifndef GL_EXT_pixel_transform_color_table
  902. #endif
  903. #ifndef GL_EXT_shared_texture_palette
  904. #define GL_SHARED_TEXTURE_PALETTE_EXT     0x81FB
  905. #endif
  906. #ifndef GL_EXT_separate_specular_color
  907. #define GL_LIGHT_MODEL_COLOR_CONTROL_EXT  0x81F8
  908. #define GL_SINGLE_COLOR_EXT               0x81F9
  909. #define GL_SEPARATE_SPECULAR_COLOR_EXT    0x81FA
  910. #endif
  911. #ifndef GL_EXT_secondary_color
  912. #define GL_COLOR_SUM_EXT                  0x8458
  913. #define GL_CURRENT_SECONDARY_COLOR_EXT    0x8459
  914. #define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A
  915. #define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B
  916. #define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C
  917. #define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D
  918. #define GL_SECONDARY_COLOR_ARRAY_EXT      0x845E
  919. #endif
  920. #ifndef GL_EXT_texture_perturb_normal
  921. #define GL_PERTURB_EXT                    0x85AE
  922. #define GL_TEXTURE_NORMAL_EXT             0x85AF
  923. #endif
  924. #ifndef GL_EXT_multi_draw_arrays
  925. #endif
  926. #ifndef GL_EXT_fog_coord
  927. #define GL_FOG_COORDINATE_SOURCE_EXT      0x8450
  928. #define GL_FOG_COORDINATE_EXT             0x8451
  929. #define GL_FRAGMENT_DEPTH_EXT             0x8452
  930. #define GL_CURRENT_FOG_COORDINATE_EXT     0x8453
  931. #define GL_FOG_COORDINATE_ARRAY_TYPE_EXT  0x8454
  932. #define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455
  933. #define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456
  934. #define GL_FOG_COORDINATE_ARRAY_EXT       0x8457
  935. #endif
  936. #ifndef GL_REND_screen_coordinates
  937. #define GL_SCREEN_COORDINATES_REND        0x8490
  938. #define GL_INVERTED_SCREEN_W_REND         0x8491
  939. #endif
  940. #ifndef GL_EXT_coordinate_frame
  941. #define GL_TANGENT_ARRAY_EXT              0x8439
  942. #define GL_BINORMAL_ARRAY_EXT             0x843A
  943. #define GL_CURRENT_TANGENT_EXT            0x843B
  944. #define GL_CURRENT_BINORMAL_EXT           0x843C
  945. #define GL_TANGENT_ARRAY_TYPE_EXT         0x843E
  946. #define GL_TANGENT_ARRAY_STRIDE_EXT       0x843F
  947. #define GL_BINORMAL_ARRAY_TYPE_EXT        0x8440
  948. #define GL_BINORMAL_ARRAY_STRIDE_EXT      0x8441
  949. #define GL_TANGENT_ARRAY_POINTER_EXT      0x8442
  950. #define GL_BINORMAL_ARRAY_POINTER_EXT     0x8443
  951. #define GL_MAP1_TANGENT_EXT               0x8444
  952. #define GL_MAP2_TANGENT_EXT               0x8445
  953. #define GL_MAP1_BINORMAL_EXT              0x8446
  954. #define GL_MAP2_BINORMAL_EXT              0x8447
  955. #endif
  956. #ifndef GL_EXT_texture_env_combine
  957. #define GL_COMBINE_EXT                    0x8570
  958. #define GL_COMBINE_RGB_EXT                0x8571
  959. #define GL_COMBINE_ALPHA_EXT              0x8572
  960. #define GL_RGB_SCALE_EXT                  0x8573
  961. #define GL_ADD_SIGNED_EXT                 0x8574
  962. #define GL_INTERPOLATE_EXT                0x8575
  963. #define GL_CONSTANT_EXT                   0x8576
  964. #define GL_PRIMARY_COLOR_EXT              0x8577
  965. #define GL_PREVIOUS_EXT                   0x8578
  966. #define GL_SOURCE0_RGB_EXT                0x8580
  967. #define GL_SOURCE1_RGB_EXT                0x8581
  968. #define GL_SOURCE2_RGB_EXT                0x8582
  969. #define GL_SOURCE3_RGB_EXT                0x8583
  970. #define GL_SOURCE4_RGB_EXT                0x8584
  971. #define GL_SOURCE5_RGB_EXT                0x8585
  972. #define GL_SOURCE6_RGB_EXT                0x8586
  973. #define GL_SOURCE7_RGB_EXT                0x8587
  974. #define GL_SOURCE0_ALPHA_EXT              0x8588
  975. #define GL_SOURCE1_ALPHA_EXT              0x8589
  976. #define GL_SOURCE2_ALPHA_EXT              0x858A
  977. #define GL_SOURCE3_ALPHA_EXT              0x858B
  978. #define GL_SOURCE4_ALPHA_EXT              0x858C
  979. #define GL_SOURCE5_ALPHA_EXT              0x858D
  980. #define GL_SOURCE6_ALPHA_EXT              0x858E
  981. #define GL_SOURCE7_ALPHA_EXT              0x858F
  982. #define GL_OPERAND0_RGB_EXT               0x8590
  983. #define GL_OPERAND1_RGB_EXT               0x8591
  984. #define GL_OPERAND2_RGB_EXT               0x8592
  985. #define GL_OPERAND3_RGB_EXT               0x8593
  986. #define GL_OPERAND4_RGB_EXT               0x8594
  987. #define GL_OPERAND5_RGB_EXT               0x8595
  988. #define GL_OPERAND6_RGB_EXT               0x8596
  989. #define GL_OPERAND7_RGB_EXT               0x8597
  990. #define GL_OPERAND0_ALPHA_EXT             0x8598
  991. #define GL_OPERAND1_ALPHA_EXT             0x8599
  992. #define GL_OPERAND2_ALPHA_EXT             0x859A
  993. #define GL_OPERAND3_ALPHA_EXT             0x859B
  994. #define GL_OPERAND4_ALPHA_EXT             0x859C
  995. #define GL_OPERAND5_ALPHA_EXT             0x859D
  996. #define GL_OPERAND6_ALPHA_EXT             0x859E
  997. #define GL_OPERAND7_ALPHA_EXT             0x859F
  998. #endif
  999. #ifndef GL_APPLE_specular_vector
  1000. #define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0
  1001. #endif
  1002. #ifndef GL_APPLE_transform_hint
  1003. #define GL_TRANSFORM_HINT_APPLE           0x85B1
  1004. #endif
  1005. #ifndef GL_SGIX_fog_scale
  1006. #define GL_FOG_SCALE_SGIX                 0x81FC
  1007. #define GL_FOG_SCALE_VALUE_SGIX           0x81FD
  1008. #endif
  1009. #ifndef GL_SUNX_constant_data
  1010. #define GL_UNPACK_CONSTANT_DATA_SUNX      0x81D5
  1011. #define GL_TEXTURE_CONSTANT_DATA_SUNX     0x81D6
  1012. #endif
  1013. #ifndef GL_SUN_global_alpha
  1014. #define GL_GLOBAL_ALPHA_SUN               0x81D9
  1015. #define GL_GLOBAL_ALPHA_FACTOR_SUN        0x81DA
  1016. #endif
  1017. #ifndef GL_SUN_triangle_list
  1018. #define GL_RESTART_SUN                    0x01
  1019. #define GL_REPLACE_MIDDLE_SUN             0x02
  1020. #define GL_REPLACE_OLDEST_SUN             0x03
  1021. #define GL_TRIANGLE_LIST_SUN              0x81D7
  1022. #define GL_REPLACEMENT_CODE_SUN           0x81D8
  1023. #define GL_REPLACEMENT_CODE_ARRAY_SUN     0x85C0
  1024. #define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1
  1025. #define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2
  1026. #define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3
  1027. #define GL_R1UI_V3F_SUN                   0x85C4
  1028. #define GL_R1UI_C4UB_V3F_SUN              0x85C5
  1029. #define GL_R1UI_C3F_V3F_SUN               0x85C6
  1030. #define GL_R1UI_N3F_V3F_SUN               0x85C7
  1031. #define GL_R1UI_C4F_N3F_V3F_SUN           0x85C8
  1032. #define GL_R1UI_T2F_V3F_SUN               0x85C9
  1033. #define GL_R1UI_T2F_N3F_V3F_SUN           0x85CA
  1034. #define GL_R1UI_T2F_C4F_N3F_V3F_SUN       0x85CB
  1035. #endif
  1036. #ifndef GL_SUN_vertex
  1037. #endif
  1038. #ifndef GL_EXT_blend_func_separate
  1039. #define GL_BLEND_DST_RGB_EXT              0x80C8
  1040. #define GL_BLEND_SRC_RGB_EXT              0x80C9
  1041. #define GL_BLEND_DST_ALPHA_EXT            0x80CA
  1042. #define GL_BLEND_SRC_ALPHA_EXT            0x80CB
  1043. #endif
  1044. #ifndef GL_INGR_color_clamp
  1045. #define GL_RED_MIN_CLAMP_INGR             0x8560
  1046. #define GL_GREEN_MIN_CLAMP_INGR           0x8561
  1047. #define GL_BLUE_MIN_CLAMP_INGR            0x8562
  1048. #define GL_ALPHA_MIN_CLAMP_INGR           0x8563
  1049. #define GL_RED_MAX_CLAMP_INGR             0x8564
  1050. #define GL_GREEN_MAX_CLAMP_INGR           0x8565
  1051. #define GL_BLUE_MAX_CLAMP_INGR            0x8566
  1052. #define GL_ALPHA_MAX_CLAMP_INGR           0x8567
  1053. #endif
  1054. #ifndef GL_INGR_interlace_read
  1055. #define GL_INTERLACE_READ_INGR            0x8568
  1056. #endif
  1057. #ifndef GL_EXT_stencil_wrap
  1058. #define GL_INCR_WRAP_EXT                  0x8507
  1059. #define GL_DECR_WRAP_EXT                  0x8508
  1060. #endif
  1061. #ifndef GL_EXT_422_pixels
  1062. #define GL_422_EXT                        0x80CC
  1063. #define GL_422_REV_EXT                    0x80CD
  1064. #define GL_422_AVERAGE_EXT                0x80CE
  1065. #define GL_422_REV_AVERAGE_EXT            0x80CF
  1066. #endif
  1067. #ifndef GL_NV_texgen_reflection
  1068. #define GL_NORMAL_MAP_NV                  0x8511
  1069. #define GL_REFLECTION_MAP_NV              0x8512
  1070. #endif
  1071. #ifndef GL_EXT_texture_cube_map
  1072. #define GL_NORMAL_MAP_EXT                 0x8511
  1073. #define GL_REFLECTION_MAP_EXT             0x8512
  1074. #define GL_TEXTURE_CUBE_MAP_EXT           0x8513
  1075. #define GL_TEXTURE_BINDING_CUBE_MAP_EXT   0x8514
  1076. #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515
  1077. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516
  1078. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517
  1079. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518
  1080. #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519
  1081. #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A
  1082. #define GL_PROXY_TEXTURE_CUBE_MAP_EXT     0x851B
  1083. #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT  0x851C
  1084. #endif
  1085. #ifndef GL_SUN_convolution_border_modes
  1086. #define GL_WRAP_BORDER_SUN                0x81D4
  1087. #endif
  1088. #ifndef GL_EXT_texture_env_add
  1089. #endif
  1090. #ifndef GL_EXT_texture_lod_bias
  1091. #define GL_MAX_TEXTURE_LOD_BIAS_EXT       0x84FD
  1092. #define GL_TEXTURE_FILTER_CONTROL_EXT     0x8500
  1093. #define GL_TEXTURE_LOD_BIAS_EXT           0x8501
  1094. #endif
  1095. #ifndef GL_EXT_texture_filter_anisotropic
  1096. #define GL_TEXTURE_MAX_ANISOTROPY_EXT     0x84FE
  1097. #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
  1098. #endif
  1099. #ifndef GL_EXT_vertex_weighting
  1100. #define GL_MODELVIEW0_STACK_DEPTH_EXT     GL_MODELVIEW_STACK_DEPTH
  1101. #define GL_MODELVIEW1_STACK_DEPTH_EXT     0x8502
  1102. #define GL_MODELVIEW0_MATRIX_EXT          GL_MODELVIEW_MATRIX
  1103. #define GL_MODELVIEW_MATRIX1_EXT          0x8506
  1104. #define GL_VERTEX_WEIGHTING_EXT           0x8509
  1105. #define GL_MODELVIEW0_EXT                 GL_MODELVIEW
  1106. #define GL_MODELVIEW1_EXT                 0x850A
  1107. #define GL_CURRENT_VERTEX_WEIGHT_EXT      0x850B
  1108. #define GL_VERTEX_WEIGHT_ARRAY_EXT        0x850C
  1109. #define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT   0x850D
  1110. #define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT   0x850E
  1111. #define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F
  1112. #define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510
  1113. #endif
  1114. #ifndef GL_NV_light_max_exponent
  1115. #define GL_MAX_SHININESS_NV               0x8504
  1116. #define GL_MAX_SPOT_EXPONENT_NV           0x8505
  1117. #endif
  1118. #ifndef GL_NV_vertex_array_range
  1119. #define GL_VERTEX_ARRAY_RANGE_NV          0x851D
  1120. #define GL_VERTEX_ARRAY_RANGE_LENGTH_NV   0x851E
  1121. #define GL_VERTEX_ARRAY_RANGE_VALID_NV    0x851F
  1122. #define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520
  1123. #define GL_VERTEX_ARRAY_RANGE_POINTER_NV  0x8521
  1124. #endif
  1125. #ifndef GL_NV_register_combiners
  1126. #define GL_REGISTER_COMBINERS_NV          0x8522
  1127. #define GL_VARIABLE_A_NV                  0x8523
  1128. #define GL_VARIABLE_B_NV                  0x8524
  1129. #define GL_VARIABLE_C_NV                  0x8525
  1130. #define GL_VARIABLE_D_NV                  0x8526
  1131. #define GL_VARIABLE_E_NV                  0x8527
  1132. #define GL_VARIABLE_F_NV                  0x8528
  1133. #define GL_VARIABLE_G_NV                  0x8529
  1134. #define GL_CONSTANT_COLOR0_NV             0x852A
  1135. #define GL_CONSTANT_COLOR1_NV             0x852B
  1136. #define GL_PRIMARY_COLOR_NV               0x852C
  1137. #define GL_SECONDARY_COLOR_NV             0x852D
  1138. #define GL_SPARE0_NV                      0x852E
  1139. #define GL_SPARE1_NV                      0x852F
  1140. #define GL_DISCARD_NV                     0x8530
  1141. #define GL_E_TIMES_F_NV                   0x8531
  1142. #define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532
  1143. #define GL_UNSIGNED_IDENTITY_NV           0x8536
  1144. #define GL_UNSIGNED_INVERT_NV             0x8537
  1145. #define GL_EXPAND_NORMAL_NV               0x8538
  1146. #define GL_EXPAND_NEGATE_NV               0x8539
  1147. #define GL_HALF_BIAS_NORMAL_NV            0x853A
  1148. #define GL_HALF_BIAS_NEGATE_NV            0x853B
  1149. #define GL_SIGNED_IDENTITY_NV             0x853C
  1150. #define GL_SIGNED_NEGATE_NV               0x853D
  1151. #define GL_SCALE_BY_TWO_NV                0x853E
  1152. #define GL_SCALE_BY_FOUR_NV               0x853F
  1153. #define GL_SCALE_BY_ONE_HALF_NV           0x8540
  1154. #define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV   0x8541
  1155. #define GL_COMBINER_INPUT_NV              0x8542
  1156. #define GL_COMBINER_MAPPING_NV            0x8543
  1157. #define GL_COMBINER_COMPONENT_USAGE_NV    0x8544
  1158. #define GL_COMBINER_AB_DOT_PRODUCT_NV     0x8545
  1159. #define GL_COMBINER_CD_DOT_PRODUCT_NV     0x8546
  1160. #define GL_COMBINER_MUX_SUM_NV            0x8547
  1161. #define GL_COMBINER_SCALE_NV              0x8548
  1162. #define GL_COMBINER_BIAS_NV               0x8549
  1163. #define GL_COMBINER_AB_OUTPUT_NV          0x854A
  1164. #define GL_COMBINER_CD_OUTPUT_NV          0x854B
  1165. #define GL_COMBINER_SUM_OUTPUT_NV         0x854C
  1166. #define GL_MAX_GENERAL_COMBINERS_NV       0x854D
  1167. #define GL_NUM_GENERAL_COMBINERS_NV       0x854E
  1168. #define GL_COLOR_SUM_CLAMP_NV             0x854F
  1169. #define GL_COMBINER0_NV                   0x8550
  1170. #define GL_COMBINER1_NV                   0x8551
  1171. #define GL_COMBINER2_NV                   0x8552
  1172. #define GL_COMBINER3_NV                   0x8553
  1173. #define GL_COMBINER4_NV                   0x8554
  1174. #define GL_COMBINER5_NV                   0x8555
  1175. #define GL_COMBINER6_NV                   0x8556
  1176. #define GL_COMBINER7_NV                   0x8557
  1177. /* reuse GL_TEXTURE0_ARB */
  1178. /* reuse GL_TEXTURE1_ARB */
  1179. /* reuse GL_ZERO */
  1180. /* reuse GL_NONE */
  1181. /* reuse GL_FOG */
  1182. #endif
  1183. #ifndef GL_NV_fog_distance
  1184. #define GL_FOG_DISTANCE_MODE_NV           0x855A
  1185. #define GL_EYE_RADIAL_NV                  0x855B
  1186. #define GL_EYE_PLANE_ABSOLUTE_NV          0x855C
  1187. /* reuse GL_EYE_PLANE */
  1188. #endif
  1189. #ifndef GL_NV_texgen_emboss
  1190. #define GL_EMBOSS_LIGHT_NV                0x855D
  1191. #define GL_EMBOSS_CONSTANT_NV             0x855E
  1192. #define GL_EMBOSS_MAP_NV                  0x855F
  1193. #endif
  1194. #ifndef GL_NV_blend_square
  1195. #endif
  1196. #ifndef GL_NV_texture_env_combine4
  1197. #define GL_COMBINE4_NV                    0x8503
  1198. #define GL_SOURCE3_RGB_NV                 0x8583
  1199. #define GL_SOURCE3_ALPHA_NV               0x858B
  1200. #define GL_OPERAND3_RGB_NV                0x8593
  1201. #define GL_OPERAND3_ALPHA_NV              0x859B
  1202. #endif
  1203. #ifndef GL_MESA_resize_buffers
  1204. #endif
  1205. #ifndef GL_MESA_window_pos
  1206. #endif
  1207. #ifndef GL_EXT_texture_compression_s3tc
  1208. #define GL_COMPRESSED_RGB_S3TC_DXT1_EXT   0x83F0
  1209. #define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT  0x83F1
  1210. #define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT  0x83F2
  1211. #define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT  0x83F3
  1212. #endif
  1213. #ifndef GL_IBM_cull_vertex
  1214. #define GL_CULL_VERTEX_IBM                103050
  1215. #endif
  1216. #ifndef GL_IBM_multimode_draw_arrays
  1217. #endif
  1218. #ifndef GL_IBM_vertex_array_lists
  1219. #define GL_VERTEX_ARRAY_LIST_IBM          103070
  1220. #define GL_NORMAL_ARRAY_LIST_IBM          103071
  1221. #define GL_COLOR_ARRAY_LIST_IBM           103072
  1222. #define GL_INDEX_ARRAY_LIST_IBM           103073
  1223. #define GL_TEXTURE_COORD_ARRAY_LIST_IBM   103074
  1224. #define GL_EDGE_FLAG_ARRAY_LIST_IBM       103075
  1225. #define GL_FOG_COORDINATE_ARRAY_LIST_IBM  103076
  1226. #define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077
  1227. #define GL_VERTEX_ARRAY_LIST_STRIDE_IBM   103080
  1228. #define GL_NORMAL_ARRAY_LIST_STRIDE_IBM   103081
  1229. #define GL_COLOR_ARRAY_LIST_STRIDE_IBM    103082
  1230. #define GL_INDEX_ARRAY_LIST_STRIDE_IBM    103083
  1231. #define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084
  1232. #define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085
  1233. #define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086
  1234. #define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087
  1235. #endif
  1236. #ifndef GL_SGIX_subsample
  1237. #define GL_PACK_SUBSAMPLE_RATE_SGIX       0x85A0
  1238. #define GL_UNPACK_SUBSAMPLE_RATE_SGIX     0x85A1
  1239. #define GL_PIXEL_SUBSAMPLE_4444_SGIX      0x85A2
  1240. #define GL_PIXEL_SUBSAMPLE_2424_SGIX      0x85A3
  1241. #define GL_PIXEL_SUBSAMPLE_4242_SGIX      0x85A4
  1242. #endif
  1243. #ifndef GL_SGIX_ycrcb_subsample
  1244. #endif
  1245. #ifndef GL_SGIX_ycrcba
  1246. #define GL_YCRCB_SGIX                     0x8318
  1247. #define GL_YCRCBA_SGIX                    0x8319
  1248. #endif
  1249. #ifndef GL_SGI_depth_pass_instrument
  1250. #define GL_DEPTH_PASS_INSTRUMENT_SGIX     0x8310
  1251. #define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311
  1252. #define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312
  1253. #endif
  1254. #ifndef GL_3DFX_texture_compression_FXT1
  1255. #define GL_COMPRESSED_RGB_FXT1_3DFX       0x86B0
  1256. #define GL_COMPRESSED_RGBA_FXT1_3DFX      0x86B1
  1257. #endif
  1258. #ifndef GL_3DFX_multisample
  1259. #define GL_MULTISAMPLE_3DFX               0x86B2
  1260. #define GL_SAMPLE_BUFFERS_3DFX            0x86B3
  1261. #define GL_SAMPLES_3DFX                   0x86B4
  1262. #define GL_MULTISAMPLE_BIT_3DFX           0x20000000
  1263. #endif
  1264. #ifndef GL_3DFX_tbuffer
  1265. #endif
  1266. #ifndef GL_EXT_multisample
  1267. #define GL_MULTISAMPLE_EXT                0x809D
  1268. #define GL_SAMPLE_ALPHA_TO_MASK_EXT       0x809E
  1269. #define GL_SAMPLE_ALPHA_TO_ONE_EXT        0x809F
  1270. #define GL_SAMPLE_MASK_EXT                0x80A0
  1271. #define GL_1PASS_EXT                      0x80A1
  1272. #define GL_2PASS_0_EXT                    0x80A2
  1273. #define GL_2PASS_1_EXT                    0x80A3
  1274. #define GL_4PASS_0_EXT                    0x80A4
  1275. #define GL_4PASS_1_EXT                    0x80A5
  1276. #define GL_4PASS_2_EXT                    0x80A6
  1277. #define GL_4PASS_3_EXT                    0x80A7
  1278. #define GL_SAMPLE_BUFFERS_EXT             0x80A8
  1279. #define GL_SAMPLES_EXT                    0x80A9
  1280. #define GL_SAMPLE_MASK_VALUE_EXT          0x80AA
  1281. #define GL_SAMPLE_MASK_INVERT_EXT         0x80AB
  1282. #define GL_SAMPLE_PATTERN_EXT             0x80AC
  1283. #endif
  1284. #ifndef GL_SGIX_vertex_preclip
  1285. #define GL_VERTEX_PRECLIP_SGIX            0x83EE
  1286. #define GL_VERTEX_PRECLIP_HINT_SGIX       0x83EF
  1287. #endif
  1288. #ifndef GL_SGIX_convolution_accuracy
  1289. #define GL_CONVOLUTION_HINT_SGIX          0x8316
  1290. #endif
  1291. #ifndef GL_SGIX_resample
  1292. #define GL_PACK_RESAMPLE_SGIX             0x842C
  1293. #define GL_UNPACK_RESAMPLE_SGIX           0x842D
  1294. #define GL_RESAMPLE_REPLICATE_SGIX        0x842E
  1295. #define GL_RESAMPLE_ZERO_FILL_SGIX        0x842F
  1296. #define GL_RESAMPLE_DECIMATE_SGIX         0x8430
  1297. #endif
  1298. #ifndef GL_SGIS_point_line_texgen
  1299. #define GL_EYE_DISTANCE_TO_POINT_SGIS     0x81F0
  1300. #define GL_OBJECT_DISTANCE_TO_POINT_SGIS  0x81F1
  1301. #define GL_EYE_DISTANCE_TO_LINE_SGIS      0x81F2
  1302. #define GL_OBJECT_DISTANCE_TO_LINE_SGIS   0x81F3
  1303. #define GL_EYE_POINT_SGIS                 0x81F4
  1304. #define GL_OBJECT_POINT_SGIS              0x81F5
  1305. #define GL_EYE_LINE_SGIS                  0x81F6
  1306. #define GL_OBJECT_LINE_SGIS               0x81F7
  1307. #endif
  1308. #ifndef GL_SGIS_texture_color_mask
  1309. #define GL_TEXTURE_COLOR_WRITEMASK_SGIS   0x81EF
  1310. #endif
  1311. /*************************************************************/
  1312. #ifndef GL_VERSION_1_2
  1313. #define GL_VERSION_1_2 1
  1314. #ifdef GL_GLEXT_PROTOTYPES
  1315. extern void APIENTRY glBlendColor (GLclampf, GLclampf, GLclampf, GLclampf);
  1316. extern void APIENTRY glBlendEquation (GLenum);
  1317. extern void APIENTRY glDrawRangeElements (GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
  1318. extern void APIENTRY glColorTable (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
  1319. extern void APIENTRY glColorTableParameterfv (GLenum, GLenum, const GLfloat *);
  1320. extern void APIENTRY glColorTableParameteriv (GLenum, GLenum, const GLint *);
  1321. extern void APIENTRY glCopyColorTable (GLenum, GLenum, GLint, GLint, GLsizei);
  1322. extern void APIENTRY glGetColorTable (GLenum, GLenum, GLenum, GLvoid *);
  1323. extern void APIENTRY glGetColorTableParameterfv (GLenum, GLenum, GLfloat *);
  1324. extern void APIENTRY glGetColorTableParameteriv (GLenum, GLenum, GLint *);
  1325. extern void APIENTRY glColorSubTable (GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
  1326. extern void APIENTRY glCopyColorSubTable (GLenum, GLsizei, GLint, GLint, GLsizei);
  1327. extern void APIENTRY glConvolutionFilter1D (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
  1328. extern void APIENTRY glConvolutionFilter2D (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);