Committer:
sca8er
Date:
Mon Mar 05 04:56:58 2012 +0000
Revision:
3:0c3bcea5b4d0

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sca8er 3:0c3bcea5b4d0 1 #ifndef __glext_h_
sca8er 3:0c3bcea5b4d0 2 #define __glext_h_
sca8er 3:0c3bcea5b4d0 3
sca8er 3:0c3bcea5b4d0 4 #ifdef __cplusplus
sca8er 3:0c3bcea5b4d0 5 extern "C" {
sca8er 3:0c3bcea5b4d0 6 #endif
sca8er 3:0c3bcea5b4d0 7
sca8er 3:0c3bcea5b4d0 8 /*
sca8er 3:0c3bcea5b4d0 9 ** License Applicability. Except to the extent portions of this file are
sca8er 3:0c3bcea5b4d0 10 ** made subject to an alternative license as permitted in the SGI Free
sca8er 3:0c3bcea5b4d0 11 ** Software License B, Version 1.1 (the "License"), the contents of this
sca8er 3:0c3bcea5b4d0 12 ** file are subject only to the provisions of the License. You may not use
sca8er 3:0c3bcea5b4d0 13 ** this file except in compliance with the License. You may obtain a copy
sca8er 3:0c3bcea5b4d0 14 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
sca8er 3:0c3bcea5b4d0 15 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
sca8er 3:0c3bcea5b4d0 16 **
sca8er 3:0c3bcea5b4d0 17 ** http://oss.sgi.com/projects/FreeB
sca8er 3:0c3bcea5b4d0 18 **
sca8er 3:0c3bcea5b4d0 19 ** Note that, as provided in the License, the Software is distributed on an
sca8er 3:0c3bcea5b4d0 20 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
sca8er 3:0c3bcea5b4d0 21 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
sca8er 3:0c3bcea5b4d0 22 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
sca8er 3:0c3bcea5b4d0 23 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
sca8er 3:0c3bcea5b4d0 24 **
sca8er 3:0c3bcea5b4d0 25 ** Original Code. The Original Code is: OpenGL Sample Implementation,
sca8er 3:0c3bcea5b4d0 26 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
sca8er 3:0c3bcea5b4d0 27 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
sca8er 3:0c3bcea5b4d0 28 ** Copyright in any portions created by third parties is as indicated
sca8er 3:0c3bcea5b4d0 29 ** elsewhere herein. All Rights Reserved.
sca8er 3:0c3bcea5b4d0 30 **
sca8er 3:0c3bcea5b4d0 31 ** Additional Notice Provisions: This software was created using the
sca8er 3:0c3bcea5b4d0 32 ** OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
sca8er 3:0c3bcea5b4d0 33 ** not been independently verified as being compliant with the OpenGL(R)
sca8er 3:0c3bcea5b4d0 34 ** version 1.2.1 Specification.
sca8er 3:0c3bcea5b4d0 35 */
sca8er 3:0c3bcea5b4d0 36
sca8er 3:0c3bcea5b4d0 37 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__)
sca8er 3:0c3bcea5b4d0 38 #define WIN32_LEAN_AND_MEAN 1
sca8er 3:0c3bcea5b4d0 39 #include <windows.h>
sca8er 3:0c3bcea5b4d0 40 #endif
sca8er 3:0c3bcea5b4d0 41
sca8er 3:0c3bcea5b4d0 42 #ifndef APIENTRY
sca8er 3:0c3bcea5b4d0 43 #define APIENTRY
sca8er 3:0c3bcea5b4d0 44 #endif
sca8er 3:0c3bcea5b4d0 45 #ifndef GLAPI
sca8er 3:0c3bcea5b4d0 46 #define GLAPI extern
sca8er 3:0c3bcea5b4d0 47 #endif
sca8er 3:0c3bcea5b4d0 48
sca8er 3:0c3bcea5b4d0 49 /*************************************************************/
sca8er 3:0c3bcea5b4d0 50
sca8er 3:0c3bcea5b4d0 51 /* Header file version number, required by OpenGL ABI for Linux */
sca8er 3:0c3bcea5b4d0 52 /* glext.h last updated 2002/03/22 */
sca8er 3:0c3bcea5b4d0 53 /* Current version at http://oss.sgi.com/projects/ogl-sample/registry/ */
sca8er 3:0c3bcea5b4d0 54 #define GL_GLEXT_VERSION 11
sca8er 3:0c3bcea5b4d0 55
sca8er 3:0c3bcea5b4d0 56 #ifndef GL_VERSION_1_2
sca8er 3:0c3bcea5b4d0 57 #define GL_CONSTANT_COLOR 0x8001
sca8er 3:0c3bcea5b4d0 58 #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002
sca8er 3:0c3bcea5b4d0 59 #define GL_CONSTANT_ALPHA 0x8003
sca8er 3:0c3bcea5b4d0 60 #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004
sca8er 3:0c3bcea5b4d0 61 #define GL_BLEND_COLOR 0x8005
sca8er 3:0c3bcea5b4d0 62 #define GL_FUNC_ADD 0x8006
sca8er 3:0c3bcea5b4d0 63 #define GL_MIN 0x8007
sca8er 3:0c3bcea5b4d0 64 #define GL_MAX 0x8008
sca8er 3:0c3bcea5b4d0 65 #define GL_BLEND_EQUATION 0x8009
sca8er 3:0c3bcea5b4d0 66 #define GL_FUNC_SUBTRACT 0x800A
sca8er 3:0c3bcea5b4d0 67 #define GL_FUNC_REVERSE_SUBTRACT 0x800B
sca8er 3:0c3bcea5b4d0 68 #define GL_CONVOLUTION_1D 0x8010
sca8er 3:0c3bcea5b4d0 69 #define GL_CONVOLUTION_2D 0x8011
sca8er 3:0c3bcea5b4d0 70 #define GL_SEPARABLE_2D 0x8012
sca8er 3:0c3bcea5b4d0 71 #define GL_CONVOLUTION_BORDER_MODE 0x8013
sca8er 3:0c3bcea5b4d0 72 #define GL_CONVOLUTION_FILTER_SCALE 0x8014
sca8er 3:0c3bcea5b4d0 73 #define GL_CONVOLUTION_FILTER_BIAS 0x8015
sca8er 3:0c3bcea5b4d0 74 #define GL_REDUCE 0x8016
sca8er 3:0c3bcea5b4d0 75 #define GL_CONVOLUTION_FORMAT 0x8017
sca8er 3:0c3bcea5b4d0 76 #define GL_CONVOLUTION_WIDTH 0x8018
sca8er 3:0c3bcea5b4d0 77 #define GL_CONVOLUTION_HEIGHT 0x8019
sca8er 3:0c3bcea5b4d0 78 #define GL_MAX_CONVOLUTION_WIDTH 0x801A
sca8er 3:0c3bcea5b4d0 79 #define GL_MAX_CONVOLUTION_HEIGHT 0x801B
sca8er 3:0c3bcea5b4d0 80 #define GL_POST_CONVOLUTION_RED_SCALE 0x801C
sca8er 3:0c3bcea5b4d0 81 #define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D
sca8er 3:0c3bcea5b4d0 82 #define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E
sca8er 3:0c3bcea5b4d0 83 #define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F
sca8er 3:0c3bcea5b4d0 84 #define GL_POST_CONVOLUTION_RED_BIAS 0x8020
sca8er 3:0c3bcea5b4d0 85 #define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021
sca8er 3:0c3bcea5b4d0 86 #define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022
sca8er 3:0c3bcea5b4d0 87 #define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023
sca8er 3:0c3bcea5b4d0 88 #define GL_HISTOGRAM 0x8024
sca8er 3:0c3bcea5b4d0 89 #define GL_PROXY_HISTOGRAM 0x8025
sca8er 3:0c3bcea5b4d0 90 #define GL_HISTOGRAM_WIDTH 0x8026
sca8er 3:0c3bcea5b4d0 91 #define GL_HISTOGRAM_FORMAT 0x8027
sca8er 3:0c3bcea5b4d0 92 #define GL_HISTOGRAM_RED_SIZE 0x8028
sca8er 3:0c3bcea5b4d0 93 #define GL_HISTOGRAM_GREEN_SIZE 0x8029
sca8er 3:0c3bcea5b4d0 94 #define GL_HISTOGRAM_BLUE_SIZE 0x802A
sca8er 3:0c3bcea5b4d0 95 #define GL_HISTOGRAM_ALPHA_SIZE 0x802B
sca8er 3:0c3bcea5b4d0 96 #define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C
sca8er 3:0c3bcea5b4d0 97 #define GL_HISTOGRAM_SINK 0x802D
sca8er 3:0c3bcea5b4d0 98 #define GL_MINMAX 0x802E
sca8er 3:0c3bcea5b4d0 99 #define GL_MINMAX_FORMAT 0x802F
sca8er 3:0c3bcea5b4d0 100 #define GL_MINMAX_SINK 0x8030
sca8er 3:0c3bcea5b4d0 101 #define GL_TABLE_TOO_LARGE 0x8031
sca8er 3:0c3bcea5b4d0 102 #define GL_UNSIGNED_BYTE_3_3_2 0x8032
sca8er 3:0c3bcea5b4d0 103 #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033
sca8er 3:0c3bcea5b4d0 104 #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034
sca8er 3:0c3bcea5b4d0 105 #define GL_UNSIGNED_INT_8_8_8_8 0x8035
sca8er 3:0c3bcea5b4d0 106 #define GL_UNSIGNED_INT_10_10_10_2 0x8036
sca8er 3:0c3bcea5b4d0 107 #define GL_RESCALE_NORMAL 0x803A
sca8er 3:0c3bcea5b4d0 108 #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362
sca8er 3:0c3bcea5b4d0 109 #define GL_UNSIGNED_SHORT_5_6_5 0x8363
sca8er 3:0c3bcea5b4d0 110 #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364
sca8er 3:0c3bcea5b4d0 111 #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365
sca8er 3:0c3bcea5b4d0 112 #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366
sca8er 3:0c3bcea5b4d0 113 #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367
sca8er 3:0c3bcea5b4d0 114 #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368
sca8er 3:0c3bcea5b4d0 115 #define GL_COLOR_MATRIX 0x80B1
sca8er 3:0c3bcea5b4d0 116 #define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2
sca8er 3:0c3bcea5b4d0 117 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3
sca8er 3:0c3bcea5b4d0 118 #define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4
sca8er 3:0c3bcea5b4d0 119 #define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5
sca8er 3:0c3bcea5b4d0 120 #define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6
sca8er 3:0c3bcea5b4d0 121 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7
sca8er 3:0c3bcea5b4d0 122 #define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8
sca8er 3:0c3bcea5b4d0 123 #define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9
sca8er 3:0c3bcea5b4d0 124 #define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA
sca8er 3:0c3bcea5b4d0 125 #define GL_COLOR_TABLE 0x80D0
sca8er 3:0c3bcea5b4d0 126 #define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1
sca8er 3:0c3bcea5b4d0 127 #define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2
sca8er 3:0c3bcea5b4d0 128 #define GL_PROXY_COLOR_TABLE 0x80D3
sca8er 3:0c3bcea5b4d0 129 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4
sca8er 3:0c3bcea5b4d0 130 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5
sca8er 3:0c3bcea5b4d0 131 #define GL_COLOR_TABLE_SCALE 0x80D6
sca8er 3:0c3bcea5b4d0 132 #define GL_COLOR_TABLE_BIAS 0x80D7
sca8er 3:0c3bcea5b4d0 133 #define GL_COLOR_TABLE_FORMAT 0x80D8
sca8er 3:0c3bcea5b4d0 134 #define GL_COLOR_TABLE_WIDTH 0x80D9
sca8er 3:0c3bcea5b4d0 135 #define GL_COLOR_TABLE_RED_SIZE 0x80DA
sca8er 3:0c3bcea5b4d0 136 #define GL_COLOR_TABLE_GREEN_SIZE 0x80DB
sca8er 3:0c3bcea5b4d0 137 #define GL_COLOR_TABLE_BLUE_SIZE 0x80DC
sca8er 3:0c3bcea5b4d0 138 #define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD
sca8er 3:0c3bcea5b4d0 139 #define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE
sca8er 3:0c3bcea5b4d0 140 #define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF
sca8er 3:0c3bcea5b4d0 141 #define GL_BGR 0x80E0
sca8er 3:0c3bcea5b4d0 142 #define GL_BGRA 0x80E1
sca8er 3:0c3bcea5b4d0 143 #define GL_MAX_ELEMENTS_VERTICES 0x80E8
sca8er 3:0c3bcea5b4d0 144 #define GL_MAX_ELEMENTS_INDICES 0x80E9
sca8er 3:0c3bcea5b4d0 145 #define GL_CLAMP_TO_EDGE 0x812F
sca8er 3:0c3bcea5b4d0 146 #define GL_TEXTURE_MIN_LOD 0x813A
sca8er 3:0c3bcea5b4d0 147 #define GL_TEXTURE_MAX_LOD 0x813B
sca8er 3:0c3bcea5b4d0 148 #define GL_TEXTURE_BASE_LEVEL 0x813C
sca8er 3:0c3bcea5b4d0 149 #define GL_TEXTURE_MAX_LEVEL 0x813D
sca8er 3:0c3bcea5b4d0 150 #define GL_IGNORE_BORDER 0x8150
sca8er 3:0c3bcea5b4d0 151 #define GL_CONSTANT_BORDER 0x8151
sca8er 3:0c3bcea5b4d0 152 #define GL_WRAP_BORDER 0x8152
sca8er 3:0c3bcea5b4d0 153 #define GL_REPLICATE_BORDER 0x8153
sca8er 3:0c3bcea5b4d0 154 #define GL_CONVOLUTION_BORDER_COLOR 0x8154
sca8er 3:0c3bcea5b4d0 155 #define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8
sca8er 3:0c3bcea5b4d0 156 #define GL_SINGLE_COLOR 0x81F9
sca8er 3:0c3bcea5b4d0 157 #define GL_SEPARATE_SPECULAR_COLOR 0x81FA
sca8er 3:0c3bcea5b4d0 158 #define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12
sca8er 3:0c3bcea5b4d0 159 #define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13
sca8er 3:0c3bcea5b4d0 160 #define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22
sca8er 3:0c3bcea5b4d0 161 #define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23
sca8er 3:0c3bcea5b4d0 162 #define GL_ALIASED_POINT_SIZE_RANGE 0x846D
sca8er 3:0c3bcea5b4d0 163 #define GL_ALIASED_LINE_WIDTH_RANGE 0x846E
sca8er 3:0c3bcea5b4d0 164 #endif
sca8er 3:0c3bcea5b4d0 165
sca8er 3:0c3bcea5b4d0 166 #ifndef GL_VERSION_1_3
sca8er 3:0c3bcea5b4d0 167 #define GL_TEXTURE0 0x84C0
sca8er 3:0c3bcea5b4d0 168 #define GL_TEXTURE1 0x84C1
sca8er 3:0c3bcea5b4d0 169 #define GL_TEXTURE2 0x84C2
sca8er 3:0c3bcea5b4d0 170 #define GL_TEXTURE3 0x84C3
sca8er 3:0c3bcea5b4d0 171 #define GL_TEXTURE4 0x84C4
sca8er 3:0c3bcea5b4d0 172 #define GL_TEXTURE5 0x84C5
sca8er 3:0c3bcea5b4d0 173 #define GL_TEXTURE6 0x84C6
sca8er 3:0c3bcea5b4d0 174 #define GL_TEXTURE7 0x84C7
sca8er 3:0c3bcea5b4d0 175 #define GL_TEXTURE8 0x84C8
sca8er 3:0c3bcea5b4d0 176 #define GL_TEXTURE9 0x84C9
sca8er 3:0c3bcea5b4d0 177 #define GL_TEXTURE10 0x84CA
sca8er 3:0c3bcea5b4d0 178 #define GL_TEXTURE11 0x84CB
sca8er 3:0c3bcea5b4d0 179 #define GL_TEXTURE12 0x84CC
sca8er 3:0c3bcea5b4d0 180 #define GL_TEXTURE13 0x84CD
sca8er 3:0c3bcea5b4d0 181 #define GL_TEXTURE14 0x84CE
sca8er 3:0c3bcea5b4d0 182 #define GL_TEXTURE15 0x84CF
sca8er 3:0c3bcea5b4d0 183 #define GL_TEXTURE16 0x84D0
sca8er 3:0c3bcea5b4d0 184 #define GL_TEXTURE17 0x84D1
sca8er 3:0c3bcea5b4d0 185 #define GL_TEXTURE18 0x84D2
sca8er 3:0c3bcea5b4d0 186 #define GL_TEXTURE19 0x84D3
sca8er 3:0c3bcea5b4d0 187 #define GL_TEXTURE20 0x84D4
sca8er 3:0c3bcea5b4d0 188 #define GL_TEXTURE21 0x84D5
sca8er 3:0c3bcea5b4d0 189 #define GL_TEXTURE22 0x84D6
sca8er 3:0c3bcea5b4d0 190 #define GL_TEXTURE23 0x84D7
sca8er 3:0c3bcea5b4d0 191 #define GL_TEXTURE24 0x84D8
sca8er 3:0c3bcea5b4d0 192 #define GL_TEXTURE25 0x84D9
sca8er 3:0c3bcea5b4d0 193 #define GL_TEXTURE26 0x84DA
sca8er 3:0c3bcea5b4d0 194 #define GL_TEXTURE27 0x84DB
sca8er 3:0c3bcea5b4d0 195 #define GL_TEXTURE28 0x84DC
sca8er 3:0c3bcea5b4d0 196 #define GL_TEXTURE29 0x84DD
sca8er 3:0c3bcea5b4d0 197 #define GL_TEXTURE30 0x84DE
sca8er 3:0c3bcea5b4d0 198 #define GL_TEXTURE31 0x84DF
sca8er 3:0c3bcea5b4d0 199 #define GL_ACTIVE_TEXTURE 0x84E0
sca8er 3:0c3bcea5b4d0 200 #define GL_CLIENT_ACTIVE_TEXTURE 0x84E1
sca8er 3:0c3bcea5b4d0 201 #define GL_MAX_TEXTURE_UNITS 0x84E2
sca8er 3:0c3bcea5b4d0 202 #define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3
sca8er 3:0c3bcea5b4d0 203 #define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4
sca8er 3:0c3bcea5b4d0 204 #define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5
sca8er 3:0c3bcea5b4d0 205 #define GL_TRANSPOSE_COLOR_MATRIX 0x84E6
sca8er 3:0c3bcea5b4d0 206 #define GL_MULTISAMPLE 0x809D
sca8er 3:0c3bcea5b4d0 207 #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E
sca8er 3:0c3bcea5b4d0 208 #define GL_SAMPLE_ALPHA_TO_ONE 0x809F
sca8er 3:0c3bcea5b4d0 209 #define GL_SAMPLE_COVERAGE 0x80A0
sca8er 3:0c3bcea5b4d0 210 #define GL_SAMPLE_BUFFERS 0x80A8
sca8er 3:0c3bcea5b4d0 211 #define GL_SAMPLES 0x80A9
sca8er 3:0c3bcea5b4d0 212 #define GL_SAMPLE_COVERAGE_VALUE 0x80AA
sca8er 3:0c3bcea5b4d0 213 #define GL_SAMPLE_COVERAGE_INVERT 0x80AB
sca8er 3:0c3bcea5b4d0 214 #define GL_MULTISAMPLE_BIT 0x20000000
sca8er 3:0c3bcea5b4d0 215 #define GL_NORMAL_MAP 0x8511
sca8er 3:0c3bcea5b4d0 216 #define GL_REFLECTION_MAP 0x8512
sca8er 3:0c3bcea5b4d0 217 #define GL_TEXTURE_CUBE_MAP 0x8513
sca8er 3:0c3bcea5b4d0 218 #define GL_TEXTURE_BINDING_CUBE_MAP 0x8514
sca8er 3:0c3bcea5b4d0 219 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515
sca8er 3:0c3bcea5b4d0 220 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516
sca8er 3:0c3bcea5b4d0 221 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517
sca8er 3:0c3bcea5b4d0 222 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518
sca8er 3:0c3bcea5b4d0 223 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519
sca8er 3:0c3bcea5b4d0 224 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A
sca8er 3:0c3bcea5b4d0 225 #define GL_PROXY_TEXTURE_CUBE_MAP 0x851B
sca8er 3:0c3bcea5b4d0 226 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C
sca8er 3:0c3bcea5b4d0 227 #define GL_COMPRESSED_ALPHA 0x84E9
sca8er 3:0c3bcea5b4d0 228 #define GL_COMPRESSED_LUMINANCE 0x84EA
sca8er 3:0c3bcea5b4d0 229 #define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB
sca8er 3:0c3bcea5b4d0 230 #define GL_COMPRESSED_INTENSITY 0x84EC
sca8er 3:0c3bcea5b4d0 231 #define GL_COMPRESSED_RGB 0x84ED
sca8er 3:0c3bcea5b4d0 232 #define GL_COMPRESSED_RGBA 0x84EE
sca8er 3:0c3bcea5b4d0 233 #define GL_TEXTURE_COMPRESSION_HINT 0x84EF
sca8er 3:0c3bcea5b4d0 234 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0
sca8er 3:0c3bcea5b4d0 235 #define GL_TEXTURE_COMPRESSED 0x86A1
sca8er 3:0c3bcea5b4d0 236 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2
sca8er 3:0c3bcea5b4d0 237 #define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3
sca8er 3:0c3bcea5b4d0 238 #define GL_CLAMP_TO_BORDER 0x812D
sca8er 3:0c3bcea5b4d0 239 #define GL_CLAMP_TO_BORDER_SGIS 0x812D
sca8er 3:0c3bcea5b4d0 240 #define GL_COMBINE 0x8570
sca8er 3:0c3bcea5b4d0 241 #define GL_COMBINE_RGB 0x8571
sca8er 3:0c3bcea5b4d0 242 #define GL_COMBINE_ALPHA 0x8572
sca8er 3:0c3bcea5b4d0 243 #define GL_SOURCE0_RGB 0x8580
sca8er 3:0c3bcea5b4d0 244 #define GL_SOURCE1_RGB 0x8581
sca8er 3:0c3bcea5b4d0 245 #define GL_SOURCE2_RGB 0x8582
sca8er 3:0c3bcea5b4d0 246 #define GL_SOURCE0_ALPHA 0x8588
sca8er 3:0c3bcea5b4d0 247 #define GL_SOURCE1_ALPHA 0x8589
sca8er 3:0c3bcea5b4d0 248 #define GL_SOURCE2_ALPHA 0x858A
sca8er 3:0c3bcea5b4d0 249 #define GL_OPERAND0_RGB 0x8590
sca8er 3:0c3bcea5b4d0 250 #define GL_OPERAND1_RGB 0x8591
sca8er 3:0c3bcea5b4d0 251 #define GL_OPERAND2_RGB 0x8592
sca8er 3:0c3bcea5b4d0 252 #define GL_OPERAND0_ALPHA 0x8598
sca8er 3:0c3bcea5b4d0 253 #define GL_OPERAND1_ALPHA 0x8599
sca8er 3:0c3bcea5b4d0 254 #define GL_OPERAND2_ALPHA 0x859A
sca8er 3:0c3bcea5b4d0 255 #define GL_RGB_SCALE 0x8573
sca8er 3:0c3bcea5b4d0 256 #define GL_ADD_SIGNED 0x8574
sca8er 3:0c3bcea5b4d0 257 #define GL_INTERPOLATE 0x8575
sca8er 3:0c3bcea5b4d0 258 #define GL_SUBTRACT 0x84E7
sca8er 3:0c3bcea5b4d0 259 #define GL_CONSTANT 0x8576
sca8er 3:0c3bcea5b4d0 260 #define GL_PRIMARY_COLOR 0x8577
sca8er 3:0c3bcea5b4d0 261 #define GL_PREVIOUS 0x8578
sca8er 3:0c3bcea5b4d0 262 #define GL_DOT3_RGB 0x86AE
sca8er 3:0c3bcea5b4d0 263 #define GL_DOT3_RGBA 0x86AF
sca8er 3:0c3bcea5b4d0 264 #endif
sca8er 3:0c3bcea5b4d0 265
sca8er 3:0c3bcea5b4d0 266 #ifndef GL_ARB_multitexture
sca8er 3:0c3bcea5b4d0 267 #define GL_TEXTURE0_ARB 0x84C0
sca8er 3:0c3bcea5b4d0 268 #define GL_TEXTURE1_ARB 0x84C1
sca8er 3:0c3bcea5b4d0 269 #define GL_TEXTURE2_ARB 0x84C2
sca8er 3:0c3bcea5b4d0 270 #define GL_TEXTURE3_ARB 0x84C3
sca8er 3:0c3bcea5b4d0 271 #define GL_TEXTURE4_ARB 0x84C4
sca8er 3:0c3bcea5b4d0 272 #define GL_TEXTURE5_ARB 0x84C5
sca8er 3:0c3bcea5b4d0 273 #define GL_TEXTURE6_ARB 0x84C6
sca8er 3:0c3bcea5b4d0 274 #define GL_TEXTURE7_ARB 0x84C7
sca8er 3:0c3bcea5b4d0 275 #define GL_TEXTURE8_ARB 0x84C8
sca8er 3:0c3bcea5b4d0 276 #define GL_TEXTURE9_ARB 0x84C9
sca8er 3:0c3bcea5b4d0 277 #define GL_TEXTURE10_ARB 0x84CA
sca8er 3:0c3bcea5b4d0 278 #define GL_TEXTURE11_ARB 0x84CB
sca8er 3:0c3bcea5b4d0 279 #define GL_TEXTURE12_ARB 0x84CC
sca8er 3:0c3bcea5b4d0 280 #define GL_TEXTURE13_ARB 0x84CD
sca8er 3:0c3bcea5b4d0 281 #define GL_TEXTURE14_ARB 0x84CE
sca8er 3:0c3bcea5b4d0 282 #define GL_TEXTURE15_ARB 0x84CF
sca8er 3:0c3bcea5b4d0 283 #define GL_TEXTURE16_ARB 0x84D0
sca8er 3:0c3bcea5b4d0 284 #define GL_TEXTURE17_ARB 0x84D1
sca8er 3:0c3bcea5b4d0 285 #define GL_TEXTURE18_ARB 0x84D2
sca8er 3:0c3bcea5b4d0 286 #define GL_TEXTURE19_ARB 0x84D3
sca8er 3:0c3bcea5b4d0 287 #define GL_TEXTURE20_ARB 0x84D4
sca8er 3:0c3bcea5b4d0 288 #define GL_TEXTURE21_ARB 0x84D5
sca8er 3:0c3bcea5b4d0 289 #define GL_TEXTURE22_ARB 0x84D6
sca8er 3:0c3bcea5b4d0 290 #define GL_TEXTURE23_ARB 0x84D7
sca8er 3:0c3bcea5b4d0 291 #define GL_TEXTURE24_ARB 0x84D8
sca8er 3:0c3bcea5b4d0 292 #define GL_TEXTURE25_ARB 0x84D9
sca8er 3:0c3bcea5b4d0 293 #define GL_TEXTURE26_ARB 0x84DA
sca8er 3:0c3bcea5b4d0 294 #define GL_TEXTURE27_ARB 0x84DB
sca8er 3:0c3bcea5b4d0 295 #define GL_TEXTURE28_ARB 0x84DC
sca8er 3:0c3bcea5b4d0 296 #define GL_TEXTURE29_ARB 0x84DD
sca8er 3:0c3bcea5b4d0 297 #define GL_TEXTURE30_ARB 0x84DE
sca8er 3:0c3bcea5b4d0 298 #define GL_TEXTURE31_ARB 0x84DF
sca8er 3:0c3bcea5b4d0 299 #define GL_ACTIVE_TEXTURE_ARB 0x84E0
sca8er 3:0c3bcea5b4d0 300 #define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1
sca8er 3:0c3bcea5b4d0 301 #define GL_MAX_TEXTURE_UNITS_ARB 0x84E2
sca8er 3:0c3bcea5b4d0 302 #endif
sca8er 3:0c3bcea5b4d0 303
sca8er 3:0c3bcea5b4d0 304 #ifndef GL_ARB_transpose_matrix
sca8er 3:0c3bcea5b4d0 305 #define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3
sca8er 3:0c3bcea5b4d0 306 #define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4
sca8er 3:0c3bcea5b4d0 307 #define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5
sca8er 3:0c3bcea5b4d0 308 #define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6
sca8er 3:0c3bcea5b4d0 309 #endif
sca8er 3:0c3bcea5b4d0 310
sca8er 3:0c3bcea5b4d0 311 #ifndef GL_ARB_multisample
sca8er 3:0c3bcea5b4d0 312 #define GL_MULTISAMPLE_ARB 0x809D
sca8er 3:0c3bcea5b4d0 313 #define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E
sca8er 3:0c3bcea5b4d0 314 #define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F
sca8er 3:0c3bcea5b4d0 315 #define GL_SAMPLE_COVERAGE_ARB 0x80A0
sca8er 3:0c3bcea5b4d0 316 #define GL_SAMPLE_BUFFERS_ARB 0x80A8
sca8er 3:0c3bcea5b4d0 317 #define GL_SAMPLES_ARB 0x80A9
sca8er 3:0c3bcea5b4d0 318 #define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA
sca8er 3:0c3bcea5b4d0 319 #define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB
sca8er 3:0c3bcea5b4d0 320 #define GL_MULTISAMPLE_BIT_ARB 0x20000000
sca8er 3:0c3bcea5b4d0 321 #endif
sca8er 3:0c3bcea5b4d0 322
sca8er 3:0c3bcea5b4d0 323 #ifndef GL_ARB_texture_env_add
sca8er 3:0c3bcea5b4d0 324 #endif
sca8er 3:0c3bcea5b4d0 325
sca8er 3:0c3bcea5b4d0 326 #ifndef GL_ARB_texture_cube_map
sca8er 3:0c3bcea5b4d0 327 #define GL_NORMAL_MAP_ARB 0x8511
sca8er 3:0c3bcea5b4d0 328 #define GL_REFLECTION_MAP_ARB 0x8512
sca8er 3:0c3bcea5b4d0 329 #define GL_TEXTURE_CUBE_MAP_ARB 0x8513
sca8er 3:0c3bcea5b4d0 330 #define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514
sca8er 3:0c3bcea5b4d0 331 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515
sca8er 3:0c3bcea5b4d0 332 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516
sca8er 3:0c3bcea5b4d0 333 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517
sca8er 3:0c3bcea5b4d0 334 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518
sca8er 3:0c3bcea5b4d0 335 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519
sca8er 3:0c3bcea5b4d0 336 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A
sca8er 3:0c3bcea5b4d0 337 #define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B
sca8er 3:0c3bcea5b4d0 338 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C
sca8er 3:0c3bcea5b4d0 339 #endif
sca8er 3:0c3bcea5b4d0 340
sca8er 3:0c3bcea5b4d0 341 #ifndef GL_ARB_texture_compression
sca8er 3:0c3bcea5b4d0 342 #define GL_COMPRESSED_ALPHA_ARB 0x84E9
sca8er 3:0c3bcea5b4d0 343 #define GL_COMPRESSED_LUMINANCE_ARB 0x84EA
sca8er 3:0c3bcea5b4d0 344 #define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB
sca8er 3:0c3bcea5b4d0 345 #define GL_COMPRESSED_INTENSITY_ARB 0x84EC
sca8er 3:0c3bcea5b4d0 346 #define GL_COMPRESSED_RGB_ARB 0x84ED
sca8er 3:0c3bcea5b4d0 347 #define GL_COMPRESSED_RGBA_ARB 0x84EE
sca8er 3:0c3bcea5b4d0 348 #define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF
sca8er 3:0c3bcea5b4d0 349 #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0
sca8er 3:0c3bcea5b4d0 350 #define GL_TEXTURE_COMPRESSED_ARB 0x86A1
sca8er 3:0c3bcea5b4d0 351 #define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2
sca8er 3:0c3bcea5b4d0 352 #define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3
sca8er 3:0c3bcea5b4d0 353 #endif
sca8er 3:0c3bcea5b4d0 354
sca8er 3:0c3bcea5b4d0 355 #ifndef GL_ARB_texture_border_clamp
sca8er 3:0c3bcea5b4d0 356 #define GL_CLAMP_TO_BORDER_ARB 0x812D
sca8er 3:0c3bcea5b4d0 357 #endif
sca8er 3:0c3bcea5b4d0 358
sca8er 3:0c3bcea5b4d0 359 #ifndef GL_ARB_point_parameters
sca8er 3:0c3bcea5b4d0 360 #define GL_POINT_SIZE_MIN_ARB 0x8126
sca8er 3:0c3bcea5b4d0 361 #define GL_POINT_SIZE_MIN_EXT 0x8126
sca8er 3:0c3bcea5b4d0 362 #define GL_POINT_SIZE_MIN_SGIS 0x8126
sca8er 3:0c3bcea5b4d0 363 #define GL_POINT_SIZE_MAX_ARB 0x8127
sca8er 3:0c3bcea5b4d0 364 #define GL_POINT_SIZE_MAX_EXT 0x8127
sca8er 3:0c3bcea5b4d0 365 #define GL_POINT_SIZE_MAX_SGIS 0x8127
sca8er 3:0c3bcea5b4d0 366 #define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128
sca8er 3:0c3bcea5b4d0 367 #define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128
sca8er 3:0c3bcea5b4d0 368 #define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128
sca8er 3:0c3bcea5b4d0 369 #define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129
sca8er 3:0c3bcea5b4d0 370 #define GL_DISTANCE_ATTENUATION_EXT 0x8129
sca8er 3:0c3bcea5b4d0 371 #define GL_DISTANCE_ATTENUATION_SGIS 0x8129
sca8er 3:0c3bcea5b4d0 372 #endif
sca8er 3:0c3bcea5b4d0 373
sca8er 3:0c3bcea5b4d0 374 #ifndef GL_ARB_vertex_blend
sca8er 3:0c3bcea5b4d0 375 #define GL_MAX_VERTEX_UNITS_ARB 0x86A4
sca8er 3:0c3bcea5b4d0 376 #define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5
sca8er 3:0c3bcea5b4d0 377 #define GL_WEIGHT_SUM_UNITY_ARB 0x86A6
sca8er 3:0c3bcea5b4d0 378 #define GL_VERTEX_BLEND_ARB 0x86A7
sca8er 3:0c3bcea5b4d0 379 #define GL_CURRENT_WEIGHT_ARB 0x86A8
sca8er 3:0c3bcea5b4d0 380 #define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9
sca8er 3:0c3bcea5b4d0 381 #define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA
sca8er 3:0c3bcea5b4d0 382 #define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB
sca8er 3:0c3bcea5b4d0 383 #define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC
sca8er 3:0c3bcea5b4d0 384 #define GL_WEIGHT_ARRAY_ARB 0x86AD
sca8er 3:0c3bcea5b4d0 385 #define GL_MODELVIEW0_ARB 0x1700
sca8er 3:0c3bcea5b4d0 386 #define GL_MODELVIEW1_ARB 0x850A
sca8er 3:0c3bcea5b4d0 387 #define GL_MODELVIEW2_ARB 0x8722
sca8er 3:0c3bcea5b4d0 388 #define GL_MODELVIEW3_ARB 0x8723
sca8er 3:0c3bcea5b4d0 389 #define GL_MODELVIEW4_ARB 0x8724
sca8er 3:0c3bcea5b4d0 390 #define GL_MODELVIEW5_ARB 0x8725
sca8er 3:0c3bcea5b4d0 391 #define GL_MODELVIEW6_ARB 0x8726
sca8er 3:0c3bcea5b4d0 392 #define GL_MODELVIEW7_ARB 0x8727
sca8er 3:0c3bcea5b4d0 393 #define GL_MODELVIEW8_ARB 0x8728
sca8er 3:0c3bcea5b4d0 394 #define GL_MODELVIEW9_ARB 0x8729
sca8er 3:0c3bcea5b4d0 395 #define GL_MODELVIEW10_ARB 0x872A
sca8er 3:0c3bcea5b4d0 396 #define GL_MODELVIEW11_ARB 0x872B
sca8er 3:0c3bcea5b4d0 397 #define GL_MODELVIEW12_ARB 0x872C
sca8er 3:0c3bcea5b4d0 398 #define GL_MODELVIEW13_ARB 0x872D
sca8er 3:0c3bcea5b4d0 399 #define GL_MODELVIEW14_ARB 0x872E
sca8er 3:0c3bcea5b4d0 400 #define GL_MODELVIEW15_ARB 0x872F
sca8er 3:0c3bcea5b4d0 401 #define GL_MODELVIEW16_ARB 0x8730
sca8er 3:0c3bcea5b4d0 402 #define GL_MODELVIEW17_ARB 0x8731
sca8er 3:0c3bcea5b4d0 403 #define GL_MODELVIEW18_ARB 0x8732
sca8er 3:0c3bcea5b4d0 404 #define GL_MODELVIEW19_ARB 0x8733
sca8er 3:0c3bcea5b4d0 405 #define GL_MODELVIEW20_ARB 0x8734
sca8er 3:0c3bcea5b4d0 406 #define GL_MODELVIEW21_ARB 0x8735
sca8er 3:0c3bcea5b4d0 407 #define GL_MODELVIEW22_ARB 0x8736
sca8er 3:0c3bcea5b4d0 408 #define GL_MODELVIEW23_ARB 0x8737
sca8er 3:0c3bcea5b4d0 409 #define GL_MODELVIEW24_ARB 0x8738
sca8er 3:0c3bcea5b4d0 410 #define GL_MODELVIEW25_ARB 0x8739
sca8er 3:0c3bcea5b4d0 411 #define GL_MODELVIEW26_ARB 0x873A
sca8er 3:0c3bcea5b4d0 412 #define GL_MODELVIEW27_ARB 0x873B
sca8er 3:0c3bcea5b4d0 413 #define GL_MODELVIEW28_ARB 0x873C
sca8er 3:0c3bcea5b4d0 414 #define GL_MODELVIEW29_ARB 0x873D
sca8er 3:0c3bcea5b4d0 415 #define GL_MODELVIEW30_ARB 0x873E
sca8er 3:0c3bcea5b4d0 416 #define GL_MODELVIEW31_ARB 0x873F
sca8er 3:0c3bcea5b4d0 417 #endif
sca8er 3:0c3bcea5b4d0 418
sca8er 3:0c3bcea5b4d0 419 #ifndef GL_ARB_matrix_palette
sca8er 3:0c3bcea5b4d0 420 #define GL_MATRIX_PALETTE_ARB 0x8840
sca8er 3:0c3bcea5b4d0 421 #define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841
sca8er 3:0c3bcea5b4d0 422 #define GL_MAX_PALETTE_MATRICES_ARB 0x8842
sca8er 3:0c3bcea5b4d0 423 #define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843
sca8er 3:0c3bcea5b4d0 424 #define GL_MATRIX_INDEX_ARRAY_ARB 0x8844
sca8er 3:0c3bcea5b4d0 425 #define GL_CURRENT_MATRIX_INDEX_ARB 0x8845
sca8er 3:0c3bcea5b4d0 426 #define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846
sca8er 3:0c3bcea5b4d0 427 #define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847
sca8er 3:0c3bcea5b4d0 428 #define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848
sca8er 3:0c3bcea5b4d0 429 #define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849
sca8er 3:0c3bcea5b4d0 430 #endif
sca8er 3:0c3bcea5b4d0 431
sca8er 3:0c3bcea5b4d0 432 #ifndef GL_ARB_texture_env_combine
sca8er 3:0c3bcea5b4d0 433 #define GL_COMBINE_ARB 0x8570
sca8er 3:0c3bcea5b4d0 434 #define GL_COMBINE_RGB_ARB 0x8571
sca8er 3:0c3bcea5b4d0 435 #define GL_COMBINE_ALPHA_ARB 0x8572
sca8er 3:0c3bcea5b4d0 436 #define GL_SOURCE0_RGB_ARB 0x8580
sca8er 3:0c3bcea5b4d0 437 #define GL_SOURCE1_RGB_ARB 0x8581
sca8er 3:0c3bcea5b4d0 438 #define GL_SOURCE2_RGB_ARB 0x8582
sca8er 3:0c3bcea5b4d0 439 #define GL_SOURCE0_ALPHA_ARB 0x8588
sca8er 3:0c3bcea5b4d0 440 #define GL_SOURCE1_ALPHA_ARB 0x8589
sca8er 3:0c3bcea5b4d0 441 #define GL_SOURCE2_ALPHA_ARB 0x858A
sca8er 3:0c3bcea5b4d0 442 #define GL_OPERAND0_RGB_ARB 0x8590
sca8er 3:0c3bcea5b4d0 443 #define GL_OPERAND1_RGB_ARB 0x8591
sca8er 3:0c3bcea5b4d0 444 #define GL_OPERAND2_RGB_ARB 0x8592
sca8er 3:0c3bcea5b4d0 445 #define GL_OPERAND0_ALPHA_ARB 0x8598
sca8er 3:0c3bcea5b4d0 446 #define GL_OPERAND1_ALPHA_ARB 0x8599
sca8er 3:0c3bcea5b4d0 447 #define GL_OPERAND2_ALPHA_ARB 0x859A
sca8er 3:0c3bcea5b4d0 448 #define GL_RGB_SCALE_ARB 0x8573
sca8er 3:0c3bcea5b4d0 449 #define GL_ADD_SIGNED_ARB 0x8574
sca8er 3:0c3bcea5b4d0 450 #define GL_INTERPOLATE_ARB 0x8575
sca8er 3:0c3bcea5b4d0 451 #define GL_SUBTRACT_ARB 0x84E7
sca8er 3:0c3bcea5b4d0 452 #define GL_CONSTANT_ARB 0x8576
sca8er 3:0c3bcea5b4d0 453 #define GL_PRIMARY_COLOR_ARB 0x8577
sca8er 3:0c3bcea5b4d0 454 #define GL_PREVIOUS_ARB 0x8578
sca8er 3:0c3bcea5b4d0 455 #endif
sca8er 3:0c3bcea5b4d0 456
sca8er 3:0c3bcea5b4d0 457 #ifndef GL_ARB_texture_env_crossbar
sca8er 3:0c3bcea5b4d0 458 #endif
sca8er 3:0c3bcea5b4d0 459
sca8er 3:0c3bcea5b4d0 460 #ifndef GL_ARB_texture_env_dot3
sca8er 3:0c3bcea5b4d0 461 #define GL_DOT3_RGB_ARB 0x86AE
sca8er 3:0c3bcea5b4d0 462 #define GL_DOT3_RGB_EXT 0x86AE
sca8er 3:0c3bcea5b4d0 463 #define GL_DOT3_RGBA_ARB 0x86AF
sca8er 3:0c3bcea5b4d0 464 #define GL_DOT3_RGBA_EXT 0x86AF
sca8er 3:0c3bcea5b4d0 465 #endif
sca8er 3:0c3bcea5b4d0 466
sca8er 3:0c3bcea5b4d0 467 #ifndef GL_ARB_texture_mirrored_repeat
sca8er 3:0c3bcea5b4d0 468 #define GL_MIRRORED_REPEAT_ARB 0x8370
sca8er 3:0c3bcea5b4d0 469 #endif
sca8er 3:0c3bcea5b4d0 470
sca8er 3:0c3bcea5b4d0 471 #ifndef GL_ARB_depth_texture
sca8er 3:0c3bcea5b4d0 472 #define GL_DEPTH_COMPONENT16_ARB 0x81A5
sca8er 3:0c3bcea5b4d0 473 #define GL_DEPTH_COMPONENT24_ARB 0x81A6
sca8er 3:0c3bcea5b4d0 474 #define GL_DEPTH_COMPONENT32_ARB 0x81A7
sca8er 3:0c3bcea5b4d0 475 #define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A
sca8er 3:0c3bcea5b4d0 476 #define GL_DEPTH_TEXTURE_MODE_ARB 0x884B
sca8er 3:0c3bcea5b4d0 477 #endif
sca8er 3:0c3bcea5b4d0 478
sca8er 3:0c3bcea5b4d0 479 #ifndef GL_ARB_shadow
sca8er 3:0c3bcea5b4d0 480 #define GL_TEXTURE_COMPARE_MODE_ARB 0x884C
sca8er 3:0c3bcea5b4d0 481 #define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D
sca8er 3:0c3bcea5b4d0 482 #define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E
sca8er 3:0c3bcea5b4d0 483 #endif
sca8er 3:0c3bcea5b4d0 484
sca8er 3:0c3bcea5b4d0 485 #ifndef GL_ARB_shadow_ambient
sca8er 3:0c3bcea5b4d0 486 #define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF
sca8er 3:0c3bcea5b4d0 487 #endif
sca8er 3:0c3bcea5b4d0 488
sca8er 3:0c3bcea5b4d0 489 #ifndef GL_ARB_window_pos
sca8er 3:0c3bcea5b4d0 490 #endif
sca8er 3:0c3bcea5b4d0 491
sca8er 3:0c3bcea5b4d0 492 #ifndef GL_EXT_abgr
sca8er 3:0c3bcea5b4d0 493 #define GL_ABGR_EXT 0x8000
sca8er 3:0c3bcea5b4d0 494 #endif
sca8er 3:0c3bcea5b4d0 495
sca8er 3:0c3bcea5b4d0 496 #ifndef GL_EXT_blend_color
sca8er 3:0c3bcea5b4d0 497 #define GL_CONSTANT_COLOR_EXT 0x8001
sca8er 3:0c3bcea5b4d0 498 #define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002
sca8er 3:0c3bcea5b4d0 499 #define GL_CONSTANT_ALPHA_EXT 0x8003
sca8er 3:0c3bcea5b4d0 500 #define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004
sca8er 3:0c3bcea5b4d0 501 #define GL_BLEND_COLOR_EXT 0x8005
sca8er 3:0c3bcea5b4d0 502 #endif
sca8er 3:0c3bcea5b4d0 503
sca8er 3:0c3bcea5b4d0 504 #ifndef GL_EXT_polygon_offset
sca8er 3:0c3bcea5b4d0 505 #define GL_POLYGON_OFFSET_EXT 0x8037
sca8er 3:0c3bcea5b4d0 506 #define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038
sca8er 3:0c3bcea5b4d0 507 #define GL_POLYGON_OFFSET_BIAS_EXT 0x8039
sca8er 3:0c3bcea5b4d0 508 #endif
sca8er 3:0c3bcea5b4d0 509
sca8er 3:0c3bcea5b4d0 510 #ifndef GL_EXT_texture
sca8er 3:0c3bcea5b4d0 511 #define GL_ALPHA4_EXT 0x803B
sca8er 3:0c3bcea5b4d0 512 #define GL_ALPHA8_EXT 0x803C
sca8er 3:0c3bcea5b4d0 513 #define GL_ALPHA12_EXT 0x803D
sca8er 3:0c3bcea5b4d0 514 #define GL_ALPHA16_EXT 0x803E
sca8er 3:0c3bcea5b4d0 515 #define GL_LUMINANCE4_EXT 0x803F
sca8er 3:0c3bcea5b4d0 516 #define GL_LUMINANCE8_EXT 0x8040
sca8er 3:0c3bcea5b4d0 517 #define GL_LUMINANCE12_EXT 0x8041
sca8er 3:0c3bcea5b4d0 518 #define GL_LUMINANCE16_EXT 0x8042
sca8er 3:0c3bcea5b4d0 519 #define GL_LUMINANCE4_ALPHA4_EXT 0x8043
sca8er 3:0c3bcea5b4d0 520 #define GL_LUMINANCE6_ALPHA2_EXT 0x8044
sca8er 3:0c3bcea5b4d0 521 #define GL_LUMINANCE8_ALPHA8_EXT 0x8045
sca8er 3:0c3bcea5b4d0 522 #define GL_LUMINANCE12_ALPHA4_EXT 0x8046
sca8er 3:0c3bcea5b4d0 523 #define GL_LUMINANCE12_ALPHA12_EXT 0x8047
sca8er 3:0c3bcea5b4d0 524 #define GL_LUMINANCE16_ALPHA16_EXT 0x8048
sca8er 3:0c3bcea5b4d0 525 #define GL_INTENSITY_EXT 0x8049
sca8er 3:0c3bcea5b4d0 526 #define GL_INTENSITY4_EXT 0x804A
sca8er 3:0c3bcea5b4d0 527 #define GL_INTENSITY8_EXT 0x804B
sca8er 3:0c3bcea5b4d0 528 #define GL_INTENSITY12_EXT 0x804C
sca8er 3:0c3bcea5b4d0 529 #define GL_INTENSITY16_EXT 0x804D
sca8er 3:0c3bcea5b4d0 530 #define GL_RGB2_EXT 0x804E
sca8er 3:0c3bcea5b4d0 531 #define GL_RGB4_EXT 0x804F
sca8er 3:0c3bcea5b4d0 532 #define GL_RGB5_EXT 0x8050
sca8er 3:0c3bcea5b4d0 533 #define GL_RGB8_EXT 0x8051
sca8er 3:0c3bcea5b4d0 534 #define GL_RGB10_EXT 0x8052
sca8er 3:0c3bcea5b4d0 535 #define GL_RGB12_EXT 0x8053
sca8er 3:0c3bcea5b4d0 536 #define GL_RGB16_EXT 0x8054
sca8er 3:0c3bcea5b4d0 537 #define GL_RGBA2_EXT 0x8055
sca8er 3:0c3bcea5b4d0 538 #define GL_RGBA4_EXT 0x8056
sca8er 3:0c3bcea5b4d0 539 #define GL_RGB5_A1_EXT 0x8057
sca8er 3:0c3bcea5b4d0 540 #define GL_RGBA8_EXT 0x8058
sca8er 3:0c3bcea5b4d0 541 #define GL_RGB10_A2_EXT 0x8059
sca8er 3:0c3bcea5b4d0 542 #define GL_RGBA12_EXT 0x805A
sca8er 3:0c3bcea5b4d0 543 #define GL_RGBA16_EXT 0x805B
sca8er 3:0c3bcea5b4d0 544 #define GL_TEXTURE_RED_SIZE_EXT 0x805C
sca8er 3:0c3bcea5b4d0 545 #define GL_TEXTURE_GREEN_SIZE_EXT 0x805D
sca8er 3:0c3bcea5b4d0 546 #define GL_TEXTURE_BLUE_SIZE_EXT 0x805E
sca8er 3:0c3bcea5b4d0 547 #define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F
sca8er 3:0c3bcea5b4d0 548 #define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060
sca8er 3:0c3bcea5b4d0 549 #define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061
sca8er 3:0c3bcea5b4d0 550 #define GL_REPLACE_EXT 0x8062
sca8er 3:0c3bcea5b4d0 551 #define GL_PROXY_TEXTURE_1D_EXT 0x8063
sca8er 3:0c3bcea5b4d0 552 #define GL_PROXY_TEXTURE_2D_EXT 0x8064
sca8er 3:0c3bcea5b4d0 553 #define GL_TEXTURE_TOO_LARGE_EXT 0x8065
sca8er 3:0c3bcea5b4d0 554 #endif
sca8er 3:0c3bcea5b4d0 555
sca8er 3:0c3bcea5b4d0 556 #ifndef GL_EXT_texture3D
sca8er 3:0c3bcea5b4d0 557 #define GL_PACK_SKIP_IMAGES 0x806B
sca8er 3:0c3bcea5b4d0 558 #define GL_PACK_SKIP_IMAGES_EXT 0x806B
sca8er 3:0c3bcea5b4d0 559 #define GL_PACK_IMAGE_HEIGHT 0x806C
sca8er 3:0c3bcea5b4d0 560 #define GL_PACK_IMAGE_HEIGHT_EXT 0x806C
sca8er 3:0c3bcea5b4d0 561 #define GL_UNPACK_SKIP_IMAGES 0x806D
sca8er 3:0c3bcea5b4d0 562 #define GL_UNPACK_SKIP_IMAGES_EXT 0x806D
sca8er 3:0c3bcea5b4d0 563 #define GL_UNPACK_IMAGE_HEIGHT 0x806E
sca8er 3:0c3bcea5b4d0 564 #define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E
sca8er 3:0c3bcea5b4d0 565 #define GL_TEXTURE_3D 0x806F
sca8er 3:0c3bcea5b4d0 566 #define GL_TEXTURE_3D_EXT 0x806F
sca8er 3:0c3bcea5b4d0 567 #define GL_PROXY_TEXTURE_3D 0x8070
sca8er 3:0c3bcea5b4d0 568 #define GL_PROXY_TEXTURE_3D_EXT 0x8070
sca8er 3:0c3bcea5b4d0 569 #define GL_TEXTURE_DEPTH 0x8071
sca8er 3:0c3bcea5b4d0 570 #define GL_TEXTURE_DEPTH_EXT 0x8071
sca8er 3:0c3bcea5b4d0 571 #define GL_TEXTURE_WRAP_R 0x8072
sca8er 3:0c3bcea5b4d0 572 #define GL_TEXTURE_WRAP_R_EXT 0x8072
sca8er 3:0c3bcea5b4d0 573 #define GL_MAX_3D_TEXTURE_SIZE 0x8073
sca8er 3:0c3bcea5b4d0 574 #define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073
sca8er 3:0c3bcea5b4d0 575 #endif
sca8er 3:0c3bcea5b4d0 576
sca8er 3:0c3bcea5b4d0 577 #ifndef GL_SGIS_texture_filter4
sca8er 3:0c3bcea5b4d0 578 #define GL_FILTER4_SGIS 0x8146
sca8er 3:0c3bcea5b4d0 579 #define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147
sca8er 3:0c3bcea5b4d0 580 #endif
sca8er 3:0c3bcea5b4d0 581
sca8er 3:0c3bcea5b4d0 582 #ifndef GL_EXT_subtexture
sca8er 3:0c3bcea5b4d0 583 #endif
sca8er 3:0c3bcea5b4d0 584
sca8er 3:0c3bcea5b4d0 585 #ifndef GL_EXT_copy_texture
sca8er 3:0c3bcea5b4d0 586 #endif
sca8er 3:0c3bcea5b4d0 587
sca8er 3:0c3bcea5b4d0 588 #ifndef GL_EXT_histogram
sca8er 3:0c3bcea5b4d0 589 #define GL_HISTOGRAM_EXT 0x8024
sca8er 3:0c3bcea5b4d0 590 #define GL_PROXY_HISTOGRAM_EXT 0x8025
sca8er 3:0c3bcea5b4d0 591 #define GL_HISTOGRAM_WIDTH_EXT 0x8026
sca8er 3:0c3bcea5b4d0 592 #define GL_HISTOGRAM_FORMAT_EXT 0x8027
sca8er 3:0c3bcea5b4d0 593 #define GL_HISTOGRAM_RED_SIZE_EXT 0x8028
sca8er 3:0c3bcea5b4d0 594 #define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029
sca8er 3:0c3bcea5b4d0 595 #define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A
sca8er 3:0c3bcea5b4d0 596 #define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B
sca8er 3:0c3bcea5b4d0 597 #define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C
sca8er 3:0c3bcea5b4d0 598 #define GL_HISTOGRAM_SINK_EXT 0x802D
sca8er 3:0c3bcea5b4d0 599 #define GL_MINMAX_EXT 0x802E
sca8er 3:0c3bcea5b4d0 600 #define GL_MINMAX_FORMAT_EXT 0x802F
sca8er 3:0c3bcea5b4d0 601 #define GL_MINMAX_SINK_EXT 0x8030
sca8er 3:0c3bcea5b4d0 602 #define GL_TABLE_TOO_LARGE_EXT 0x8031
sca8er 3:0c3bcea5b4d0 603 #endif
sca8er 3:0c3bcea5b4d0 604
sca8er 3:0c3bcea5b4d0 605 #ifndef GL_EXT_convolution
sca8er 3:0c3bcea5b4d0 606 #define GL_CONVOLUTION_1D_EXT 0x8010
sca8er 3:0c3bcea5b4d0 607 #define GL_CONVOLUTION_2D_EXT 0x8011
sca8er 3:0c3bcea5b4d0 608 #define GL_SEPARABLE_2D_EXT 0x8012
sca8er 3:0c3bcea5b4d0 609 #define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013
sca8er 3:0c3bcea5b4d0 610 #define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014
sca8er 3:0c3bcea5b4d0 611 #define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015
sca8er 3:0c3bcea5b4d0 612 #define GL_REDUCE_EXT 0x8016
sca8er 3:0c3bcea5b4d0 613 #define GL_CONVOLUTION_FORMAT_EXT 0x8017
sca8er 3:0c3bcea5b4d0 614 #define GL_CONVOLUTION_WIDTH_EXT 0x8018
sca8er 3:0c3bcea5b4d0 615 #define GL_CONVOLUTION_HEIGHT_EXT 0x8019
sca8er 3:0c3bcea5b4d0 616 #define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A
sca8er 3:0c3bcea5b4d0 617 #define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B
sca8er 3:0c3bcea5b4d0 618 #define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C
sca8er 3:0c3bcea5b4d0 619 #define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D
sca8er 3:0c3bcea5b4d0 620 #define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E
sca8er 3:0c3bcea5b4d0 621 #define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F
sca8er 3:0c3bcea5b4d0 622 #define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020
sca8er 3:0c3bcea5b4d0 623 #define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021
sca8er 3:0c3bcea5b4d0 624 #define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022
sca8er 3:0c3bcea5b4d0 625 #define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023
sca8er 3:0c3bcea5b4d0 626 #endif
sca8er 3:0c3bcea5b4d0 627
sca8er 3:0c3bcea5b4d0 628 #ifndef GL_SGI_color_matrix
sca8er 3:0c3bcea5b4d0 629 #define GL_COLOR_MATRIX_SGI 0x80B1
sca8er 3:0c3bcea5b4d0 630 #define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2
sca8er 3:0c3bcea5b4d0 631 #define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3
sca8er 3:0c3bcea5b4d0 632 #define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4
sca8er 3:0c3bcea5b4d0 633 #define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5
sca8er 3:0c3bcea5b4d0 634 #define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6
sca8er 3:0c3bcea5b4d0 635 #define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7
sca8er 3:0c3bcea5b4d0 636 #define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8
sca8er 3:0c3bcea5b4d0 637 #define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9
sca8er 3:0c3bcea5b4d0 638 #define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA
sca8er 3:0c3bcea5b4d0 639 #define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB
sca8er 3:0c3bcea5b4d0 640 #endif
sca8er 3:0c3bcea5b4d0 641
sca8er 3:0c3bcea5b4d0 642 #ifndef GL_SGI_color_table
sca8er 3:0c3bcea5b4d0 643 #define GL_COLOR_TABLE_SGI 0x80D0
sca8er 3:0c3bcea5b4d0 644 #define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1
sca8er 3:0c3bcea5b4d0 645 #define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2
sca8er 3:0c3bcea5b4d0 646 #define GL_PROXY_COLOR_TABLE_SGI 0x80D3
sca8er 3:0c3bcea5b4d0 647 #define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4
sca8er 3:0c3bcea5b4d0 648 #define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5
sca8er 3:0c3bcea5b4d0 649 #define GL_COLOR_TABLE_SCALE_SGI 0x80D6
sca8er 3:0c3bcea5b4d0 650 #define GL_COLOR_TABLE_BIAS_SGI 0x80D7
sca8er 3:0c3bcea5b4d0 651 #define GL_COLOR_TABLE_FORMAT_SGI 0x80D8
sca8er 3:0c3bcea5b4d0 652 #define GL_COLOR_TABLE_WIDTH_SGI 0x80D9
sca8er 3:0c3bcea5b4d0 653 #define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA
sca8er 3:0c3bcea5b4d0 654 #define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB
sca8er 3:0c3bcea5b4d0 655 #define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC
sca8er 3:0c3bcea5b4d0 656 #define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD
sca8er 3:0c3bcea5b4d0 657 #define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE
sca8er 3:0c3bcea5b4d0 658 #define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF
sca8er 3:0c3bcea5b4d0 659 #endif
sca8er 3:0c3bcea5b4d0 660
sca8er 3:0c3bcea5b4d0 661 #ifndef GL_SGIS_pixel_texture
sca8er 3:0c3bcea5b4d0 662 #define GL_PIXEL_TEXTURE_SGIS 0x8353
sca8er 3:0c3bcea5b4d0 663 #define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354
sca8er 3:0c3bcea5b4d0 664 #define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355
sca8er 3:0c3bcea5b4d0 665 #define GL_PIXEL_GROUP_COLOR_SGIS 0x8356
sca8er 3:0c3bcea5b4d0 666 #endif
sca8er 3:0c3bcea5b4d0 667
sca8er 3:0c3bcea5b4d0 668 #ifndef GL_SGIX_pixel_texture
sca8er 3:0c3bcea5b4d0 669 #define GL_PIXEL_TEX_GEN_SGIX 0x8139
sca8er 3:0c3bcea5b4d0 670 #define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B
sca8er 3:0c3bcea5b4d0 671 #endif
sca8er 3:0c3bcea5b4d0 672
sca8er 3:0c3bcea5b4d0 673 #ifndef GL_SGIS_texture4D
sca8er 3:0c3bcea5b4d0 674 #define GL_PACK_SKIP_VOLUMES_SGIS 0x8130
sca8er 3:0c3bcea5b4d0 675 #define GL_PACK_IMAGE_DEPTH_SGIS 0x8131
sca8er 3:0c3bcea5b4d0 676 #define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132
sca8er 3:0c3bcea5b4d0 677 #define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133
sca8er 3:0c3bcea5b4d0 678 #define GL_TEXTURE_4D_SGIS 0x8134
sca8er 3:0c3bcea5b4d0 679 #define GL_PROXY_TEXTURE_4D_SGIS 0x8135
sca8er 3:0c3bcea5b4d0 680 #define GL_TEXTURE_4DSIZE_SGIS 0x8136
sca8er 3:0c3bcea5b4d0 681 #define GL_TEXTURE_WRAP_Q_SGIS 0x8137
sca8er 3:0c3bcea5b4d0 682 #define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138
sca8er 3:0c3bcea5b4d0 683 #define GL_TEXTURE_4D_BINDING_SGIS 0x814F
sca8er 3:0c3bcea5b4d0 684 #endif
sca8er 3:0c3bcea5b4d0 685
sca8er 3:0c3bcea5b4d0 686 #ifndef GL_SGI_texture_color_table
sca8er 3:0c3bcea5b4d0 687 #define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC
sca8er 3:0c3bcea5b4d0 688 #define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD
sca8er 3:0c3bcea5b4d0 689 #endif
sca8er 3:0c3bcea5b4d0 690
sca8er 3:0c3bcea5b4d0 691 #ifndef GL_EXT_cmyka
sca8er 3:0c3bcea5b4d0 692 #define GL_CMYK_EXT 0x800C
sca8er 3:0c3bcea5b4d0 693 #define GL_CMYKA_EXT 0x800D
sca8er 3:0c3bcea5b4d0 694 #define GL_PACK_CMYK_HINT_EXT 0x800E
sca8er 3:0c3bcea5b4d0 695 #define GL_UNPACK_CMYK_HINT_EXT 0x800F
sca8er 3:0c3bcea5b4d0 696 #endif
sca8er 3:0c3bcea5b4d0 697
sca8er 3:0c3bcea5b4d0 698 #ifndef GL_EXT_texture_object
sca8er 3:0c3bcea5b4d0 699 #define GL_TEXTURE_PRIORITY_EXT 0x8066
sca8er 3:0c3bcea5b4d0 700 #define GL_TEXTURE_RESIDENT_EXT 0x8067
sca8er 3:0c3bcea5b4d0 701 #define GL_TEXTURE_1D_BINDING_EXT 0x8068
sca8er 3:0c3bcea5b4d0 702 #define GL_TEXTURE_2D_BINDING_EXT 0x8069
sca8er 3:0c3bcea5b4d0 703 #define GL_TEXTURE_3D_BINDING_EXT 0x806A
sca8er 3:0c3bcea5b4d0 704 #endif
sca8er 3:0c3bcea5b4d0 705
sca8er 3:0c3bcea5b4d0 706 #ifndef GL_SGIS_detail_texture
sca8er 3:0c3bcea5b4d0 707 #define GL_DETAIL_TEXTURE_2D_SGIS 0x8095
sca8er 3:0c3bcea5b4d0 708 #define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096
sca8er 3:0c3bcea5b4d0 709 #define GL_LINEAR_DETAIL_SGIS 0x8097
sca8er 3:0c3bcea5b4d0 710 #define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098
sca8er 3:0c3bcea5b4d0 711 #define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099
sca8er 3:0c3bcea5b4d0 712 #define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A
sca8er 3:0c3bcea5b4d0 713 #define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B
sca8er 3:0c3bcea5b4d0 714 #define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C
sca8er 3:0c3bcea5b4d0 715 #endif
sca8er 3:0c3bcea5b4d0 716
sca8er 3:0c3bcea5b4d0 717 #ifndef GL_SGIS_sharpen_texture
sca8er 3:0c3bcea5b4d0 718 #define GL_LINEAR_SHARPEN_SGIS 0x80AD
sca8er 3:0c3bcea5b4d0 719 #define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE
sca8er 3:0c3bcea5b4d0 720 #define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF
sca8er 3:0c3bcea5b4d0 721 #define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0
sca8er 3:0c3bcea5b4d0 722 #endif
sca8er 3:0c3bcea5b4d0 723
sca8er 3:0c3bcea5b4d0 724 #ifndef GL_EXT_packed_pixels
sca8er 3:0c3bcea5b4d0 725 #define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032
sca8er 3:0c3bcea5b4d0 726 #define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033
sca8er 3:0c3bcea5b4d0 727 #define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034
sca8er 3:0c3bcea5b4d0 728 #define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035
sca8er 3:0c3bcea5b4d0 729 #define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036
sca8er 3:0c3bcea5b4d0 730 #endif
sca8er 3:0c3bcea5b4d0 731
sca8er 3:0c3bcea5b4d0 732 #ifndef GL_SGIS_texture_lod
sca8er 3:0c3bcea5b4d0 733 #define GL_TEXTURE_MIN_LOD_SGIS 0x813A
sca8er 3:0c3bcea5b4d0 734 #define GL_TEXTURE_MAX_LOD_SGIS 0x813B
sca8er 3:0c3bcea5b4d0 735 #define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C
sca8er 3:0c3bcea5b4d0 736 #define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D
sca8er 3:0c3bcea5b4d0 737 #endif
sca8er 3:0c3bcea5b4d0 738
sca8er 3:0c3bcea5b4d0 739 #ifndef GL_SGIS_multisample
sca8er 3:0c3bcea5b4d0 740 #define GL_MULTISAMPLE_SGIS 0x809D
sca8er 3:0c3bcea5b4d0 741 #define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E
sca8er 3:0c3bcea5b4d0 742 #define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F
sca8er 3:0c3bcea5b4d0 743 #define GL_SAMPLE_MASK_SGIS 0x80A0
sca8er 3:0c3bcea5b4d0 744 #define GL_1PASS_SGIS 0x80A1
sca8er 3:0c3bcea5b4d0 745 #define GL_2PASS_0_SGIS 0x80A2
sca8er 3:0c3bcea5b4d0 746 #define GL_2PASS_1_SGIS 0x80A3
sca8er 3:0c3bcea5b4d0 747 #define GL_4PASS_0_SGIS 0x80A4
sca8er 3:0c3bcea5b4d0 748 #define GL_4PASS_1_SGIS 0x80A5
sca8er 3:0c3bcea5b4d0 749 #define GL_4PASS_2_SGIS 0x80A6
sca8er 3:0c3bcea5b4d0 750 #define GL_4PASS_3_SGIS 0x80A7
sca8er 3:0c3bcea5b4d0 751 #define GL_SAMPLE_BUFFERS_SGIS 0x80A8
sca8er 3:0c3bcea5b4d0 752 #define GL_SAMPLES_SGIS 0x80A9
sca8er 3:0c3bcea5b4d0 753 #define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA
sca8er 3:0c3bcea5b4d0 754 #define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB
sca8er 3:0c3bcea5b4d0 755 #define GL_SAMPLE_PATTERN_SGIS 0x80AC
sca8er 3:0c3bcea5b4d0 756 #endif
sca8er 3:0c3bcea5b4d0 757
sca8er 3:0c3bcea5b4d0 758 #ifndef GL_EXT_rescale_normal
sca8er 3:0c3bcea5b4d0 759 #define GL_RESCALE_NORMAL_EXT 0x803A
sca8er 3:0c3bcea5b4d0 760 #endif
sca8er 3:0c3bcea5b4d0 761
sca8er 3:0c3bcea5b4d0 762 #ifndef GL_EXT_vertex_array
sca8er 3:0c3bcea5b4d0 763 #define GL_VERTEX_ARRAY_EXT 0x8074
sca8er 3:0c3bcea5b4d0 764 #define GL_NORMAL_ARRAY_EXT 0x8075
sca8er 3:0c3bcea5b4d0 765 #define GL_COLOR_ARRAY_EXT 0x8076
sca8er 3:0c3bcea5b4d0 766 #define GL_INDEX_ARRAY_EXT 0x8077
sca8er 3:0c3bcea5b4d0 767 #define GL_TEXTURE_COORD_ARRAY_EXT 0x8078
sca8er 3:0c3bcea5b4d0 768 #define GL_EDGE_FLAG_ARRAY_EXT 0x8079
sca8er 3:0c3bcea5b4d0 769 #define GL_VERTEX_ARRAY_SIZE_EXT 0x807A
sca8er 3:0c3bcea5b4d0 770 #define GL_VERTEX_ARRAY_TYPE_EXT 0x807B
sca8er 3:0c3bcea5b4d0 771 #define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C
sca8er 3:0c3bcea5b4d0 772 #define GL_VERTEX_ARRAY_COUNT_EXT 0x807D
sca8er 3:0c3bcea5b4d0 773 #define GL_NORMAL_ARRAY_TYPE_EXT 0x807E
sca8er 3:0c3bcea5b4d0 774 #define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F
sca8er 3:0c3bcea5b4d0 775 #define GL_NORMAL_ARRAY_COUNT_EXT 0x8080
sca8er 3:0c3bcea5b4d0 776 #define GL_COLOR_ARRAY_SIZE_EXT 0x8081
sca8er 3:0c3bcea5b4d0 777 #define GL_COLOR_ARRAY_TYPE_EXT 0x8082
sca8er 3:0c3bcea5b4d0 778 #define GL_COLOR_ARRAY_STRIDE_EXT 0x8083
sca8er 3:0c3bcea5b4d0 779 #define GL_COLOR_ARRAY_COUNT_EXT 0x8084
sca8er 3:0c3bcea5b4d0 780 #define GL_INDEX_ARRAY_TYPE_EXT 0x8085
sca8er 3:0c3bcea5b4d0 781 #define GL_INDEX_ARRAY_STRIDE_EXT 0x8086
sca8er 3:0c3bcea5b4d0 782 #define GL_INDEX_ARRAY_COUNT_EXT 0x8087
sca8er 3:0c3bcea5b4d0 783 #define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088
sca8er 3:0c3bcea5b4d0 784 #define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089
sca8er 3:0c3bcea5b4d0 785 #define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A
sca8er 3:0c3bcea5b4d0 786 #define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B
sca8er 3:0c3bcea5b4d0 787 #define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C
sca8er 3:0c3bcea5b4d0 788 #define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D
sca8er 3:0c3bcea5b4d0 789 #define GL_VERTEX_ARRAY_POINTER_EXT 0x808E
sca8er 3:0c3bcea5b4d0 790 #define GL_NORMAL_ARRAY_POINTER_EXT 0x808F
sca8er 3:0c3bcea5b4d0 791 #define GL_COLOR_ARRAY_POINTER_EXT 0x8090
sca8er 3:0c3bcea5b4d0 792 #define GL_INDEX_ARRAY_POINTER_EXT 0x8091
sca8er 3:0c3bcea5b4d0 793 #define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092
sca8er 3:0c3bcea5b4d0 794 #define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093
sca8er 3:0c3bcea5b4d0 795 #endif
sca8er 3:0c3bcea5b4d0 796
sca8er 3:0c3bcea5b4d0 797 #ifndef GL_EXT_misc_attribute
sca8er 3:0c3bcea5b4d0 798 #endif
sca8er 3:0c3bcea5b4d0 799
sca8er 3:0c3bcea5b4d0 800 #ifndef GL_SGIS_generate_mipmap
sca8er 3:0c3bcea5b4d0 801 #define GL_GENERATE_MIPMAP_SGIS 0x8191
sca8er 3:0c3bcea5b4d0 802 #define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192
sca8er 3:0c3bcea5b4d0 803 #endif
sca8er 3:0c3bcea5b4d0 804
sca8er 3:0c3bcea5b4d0 805 #ifndef GL_SGIX_clipmap
sca8er 3:0c3bcea5b4d0 806 #define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170
sca8er 3:0c3bcea5b4d0 807 #define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171
sca8er 3:0c3bcea5b4d0 808 #define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172
sca8er 3:0c3bcea5b4d0 809 #define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173
sca8er 3:0c3bcea5b4d0 810 #define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174
sca8er 3:0c3bcea5b4d0 811 #define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175
sca8er 3:0c3bcea5b4d0 812 #define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176
sca8er 3:0c3bcea5b4d0 813 #define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177
sca8er 3:0c3bcea5b4d0 814 #define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178
sca8er 3:0c3bcea5b4d0 815 #define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D
sca8er 3:0c3bcea5b4d0 816 #define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E
sca8er 3:0c3bcea5b4d0 817 #define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F
sca8er 3:0c3bcea5b4d0 818 #endif
sca8er 3:0c3bcea5b4d0 819
sca8er 3:0c3bcea5b4d0 820 #ifndef GL_SGIX_shadow
sca8er 3:0c3bcea5b4d0 821 #define GL_TEXTURE_COMPARE_SGIX 0x819A
sca8er 3:0c3bcea5b4d0 822 #define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B
sca8er 3:0c3bcea5b4d0 823 #define GL_TEXTURE_LEQUAL_R_SGIX 0x819C
sca8er 3:0c3bcea5b4d0 824 #define GL_TEXTURE_GEQUAL_R_SGIX 0x819D
sca8er 3:0c3bcea5b4d0 825 #endif
sca8er 3:0c3bcea5b4d0 826
sca8er 3:0c3bcea5b4d0 827 #ifndef GL_SGIS_texture_edge_clamp
sca8er 3:0c3bcea5b4d0 828 #define GL_CLAMP_TO_EDGE_SGIS 0x812F
sca8er 3:0c3bcea5b4d0 829 #endif
sca8er 3:0c3bcea5b4d0 830
sca8er 3:0c3bcea5b4d0 831 #ifndef GL_EXT_blend_minmax
sca8er 3:0c3bcea5b4d0 832 #define GL_FUNC_ADD_EXT 0x8006
sca8er 3:0c3bcea5b4d0 833 #define GL_MIN_EXT 0x8007
sca8er 3:0c3bcea5b4d0 834 #define GL_MAX_EXT 0x8008
sca8er 3:0c3bcea5b4d0 835 #define GL_BLEND_EQUATION_EXT 0x8009
sca8er 3:0c3bcea5b4d0 836 #endif
sca8er 3:0c3bcea5b4d0 837
sca8er 3:0c3bcea5b4d0 838 #ifndef GL_EXT_blend_subtract
sca8er 3:0c3bcea5b4d0 839 #define GL_FUNC_SUBTRACT_EXT 0x800A
sca8er 3:0c3bcea5b4d0 840 #define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B
sca8er 3:0c3bcea5b4d0 841 #endif
sca8er 3:0c3bcea5b4d0 842
sca8er 3:0c3bcea5b4d0 843 #ifndef GL_EXT_blend_logic_op
sca8er 3:0c3bcea5b4d0 844 #endif
sca8er 3:0c3bcea5b4d0 845
sca8er 3:0c3bcea5b4d0 846 #ifndef GL_SGIX_interlace
sca8er 3:0c3bcea5b4d0 847 #define GL_INTERLACE_SGIX 0x8094
sca8er 3:0c3bcea5b4d0 848 #endif
sca8er 3:0c3bcea5b4d0 849
sca8er 3:0c3bcea5b4d0 850 #ifndef GL_SGIX_pixel_tiles
sca8er 3:0c3bcea5b4d0 851 #define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E
sca8er 3:0c3bcea5b4d0 852 #define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F
sca8er 3:0c3bcea5b4d0 853 #define GL_PIXEL_TILE_WIDTH_SGIX 0x8140
sca8er 3:0c3bcea5b4d0 854 #define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141
sca8er 3:0c3bcea5b4d0 855 #define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142
sca8er 3:0c3bcea5b4d0 856 #define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143
sca8er 3:0c3bcea5b4d0 857 #define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144
sca8er 3:0c3bcea5b4d0 858 #define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145
sca8er 3:0c3bcea5b4d0 859 #endif
sca8er 3:0c3bcea5b4d0 860
sca8er 3:0c3bcea5b4d0 861 #ifndef GL_SGIS_texture_select
sca8er 3:0c3bcea5b4d0 862 #define GL_DUAL_ALPHA4_SGIS 0x8110
sca8er 3:0c3bcea5b4d0 863 #define GL_DUAL_ALPHA8_SGIS 0x8111
sca8er 3:0c3bcea5b4d0 864 #define GL_DUAL_ALPHA12_SGIS 0x8112
sca8er 3:0c3bcea5b4d0 865 #define GL_DUAL_ALPHA16_SGIS 0x8113
sca8er 3:0c3bcea5b4d0 866 #define GL_DUAL_LUMINANCE4_SGIS 0x8114
sca8er 3:0c3bcea5b4d0 867 #define GL_DUAL_LUMINANCE8_SGIS 0x8115
sca8er 3:0c3bcea5b4d0 868 #define GL_DUAL_LUMINANCE12_SGIS 0x8116
sca8er 3:0c3bcea5b4d0 869 #define GL_DUAL_LUMINANCE16_SGIS 0x8117
sca8er 3:0c3bcea5b4d0 870 #define GL_DUAL_INTENSITY4_SGIS 0x8118
sca8er 3:0c3bcea5b4d0 871 #define GL_DUAL_INTENSITY8_SGIS 0x8119
sca8er 3:0c3bcea5b4d0 872 #define GL_DUAL_INTENSITY12_SGIS 0x811A
sca8er 3:0c3bcea5b4d0 873 #define GL_DUAL_INTENSITY16_SGIS 0x811B
sca8er 3:0c3bcea5b4d0 874 #define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C
sca8er 3:0c3bcea5b4d0 875 #define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D
sca8er 3:0c3bcea5b4d0 876 #define GL_QUAD_ALPHA4_SGIS 0x811E
sca8er 3:0c3bcea5b4d0 877 #define GL_QUAD_ALPHA8_SGIS 0x811F
sca8er 3:0c3bcea5b4d0 878 #define GL_QUAD_LUMINANCE4_SGIS 0x8120
sca8er 3:0c3bcea5b4d0 879 #define GL_QUAD_LUMINANCE8_SGIS 0x8121
sca8er 3:0c3bcea5b4d0 880 #define GL_QUAD_INTENSITY4_SGIS 0x8122
sca8er 3:0c3bcea5b4d0 881 #define GL_QUAD_INTENSITY8_SGIS 0x8123
sca8er 3:0c3bcea5b4d0 882 #define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124
sca8er 3:0c3bcea5b4d0 883 #define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125
sca8er 3:0c3bcea5b4d0 884 #endif
sca8er 3:0c3bcea5b4d0 885
sca8er 3:0c3bcea5b4d0 886 #ifndef GL_SGIX_sprite
sca8er 3:0c3bcea5b4d0 887 #define GL_SPRITE_SGIX 0x8148
sca8er 3:0c3bcea5b4d0 888 #define GL_SPRITE_MODE_SGIX 0x8149
sca8er 3:0c3bcea5b4d0 889 #define GL_SPRITE_AXIS_SGIX 0x814A
sca8er 3:0c3bcea5b4d0 890 #define GL_SPRITE_TRANSLATION_SGIX 0x814B
sca8er 3:0c3bcea5b4d0 891 #define GL_SPRITE_AXIAL_SGIX 0x814C
sca8er 3:0c3bcea5b4d0 892 #define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D
sca8er 3:0c3bcea5b4d0 893 #define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E
sca8er 3:0c3bcea5b4d0 894 #endif
sca8er 3:0c3bcea5b4d0 895
sca8er 3:0c3bcea5b4d0 896 #ifndef GL_SGIX_texture_multi_buffer
sca8er 3:0c3bcea5b4d0 897 #define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E
sca8er 3:0c3bcea5b4d0 898 #endif
sca8er 3:0c3bcea5b4d0 899
sca8er 3:0c3bcea5b4d0 900 #ifndef GL_SGIX_instruments
sca8er 3:0c3bcea5b4d0 901 #define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180
sca8er 3:0c3bcea5b4d0 902 #define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181
sca8er 3:0c3bcea5b4d0 903 #endif
sca8er 3:0c3bcea5b4d0 904
sca8er 3:0c3bcea5b4d0 905 #ifndef GL_SGIX_texture_scale_bias
sca8er 3:0c3bcea5b4d0 906 #define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179
sca8er 3:0c3bcea5b4d0 907 #define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A
sca8er 3:0c3bcea5b4d0 908 #define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B
sca8er 3:0c3bcea5b4d0 909 #define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C
sca8er 3:0c3bcea5b4d0 910 #endif
sca8er 3:0c3bcea5b4d0 911
sca8er 3:0c3bcea5b4d0 912 #ifndef GL_SGIX_framezoom
sca8er 3:0c3bcea5b4d0 913 #define GL_FRAMEZOOM_SGIX 0x818B
sca8er 3:0c3bcea5b4d0 914 #define GL_FRAMEZOOM_FACTOR_SGIX 0x818C
sca8er 3:0c3bcea5b4d0 915 #define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D
sca8er 3:0c3bcea5b4d0 916 #endif
sca8er 3:0c3bcea5b4d0 917
sca8er 3:0c3bcea5b4d0 918 #ifndef GL_SGIX_tag_sample_buffer
sca8er 3:0c3bcea5b4d0 919 #endif
sca8er 3:0c3bcea5b4d0 920
sca8er 3:0c3bcea5b4d0 921 #ifndef GL_FfdMaskSGIX
sca8er 3:0c3bcea5b4d0 922 #define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001
sca8er 3:0c3bcea5b4d0 923 #define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002
sca8er 3:0c3bcea5b4d0 924 #endif
sca8er 3:0c3bcea5b4d0 925
sca8er 3:0c3bcea5b4d0 926 #ifndef GL_SGIX_polynomial_ffd
sca8er 3:0c3bcea5b4d0 927 #define GL_GEOMETRY_DEFORMATION_SGIX 0x8194
sca8er 3:0c3bcea5b4d0 928 #define GL_TEXTURE_DEFORMATION_SGIX 0x8195
sca8er 3:0c3bcea5b4d0 929 #define GL_DEFORMATIONS_MASK_SGIX 0x8196
sca8er 3:0c3bcea5b4d0 930 #define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197
sca8er 3:0c3bcea5b4d0 931 #endif
sca8er 3:0c3bcea5b4d0 932
sca8er 3:0c3bcea5b4d0 933 #ifndef GL_SGIX_reference_plane
sca8er 3:0c3bcea5b4d0 934 #define GL_REFERENCE_PLANE_SGIX 0x817D
sca8er 3:0c3bcea5b4d0 935 #define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E
sca8er 3:0c3bcea5b4d0 936 #endif
sca8er 3:0c3bcea5b4d0 937
sca8er 3:0c3bcea5b4d0 938 #ifndef GL_SGIX_flush_raster
sca8er 3:0c3bcea5b4d0 939 #endif
sca8er 3:0c3bcea5b4d0 940
sca8er 3:0c3bcea5b4d0 941 #ifndef GL_SGIX_depth_texture
sca8er 3:0c3bcea5b4d0 942 #define GL_DEPTH_COMPONENT16_SGIX 0x81A5
sca8er 3:0c3bcea5b4d0 943 #define GL_DEPTH_COMPONENT24_SGIX 0x81A6
sca8er 3:0c3bcea5b4d0 944 #define GL_DEPTH_COMPONENT32_SGIX 0x81A7
sca8er 3:0c3bcea5b4d0 945 #endif
sca8er 3:0c3bcea5b4d0 946
sca8er 3:0c3bcea5b4d0 947 #ifndef GL_SGIS_fog_function
sca8er 3:0c3bcea5b4d0 948 #define GL_FOG_FUNC_SGIS 0x812A
sca8er 3:0c3bcea5b4d0 949 #define GL_FOG_FUNC_POINTS_SGIS 0x812B
sca8er 3:0c3bcea5b4d0 950 #define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C
sca8er 3:0c3bcea5b4d0 951 #endif
sca8er 3:0c3bcea5b4d0 952
sca8er 3:0c3bcea5b4d0 953 #ifndef GL_SGIX_fog_offset
sca8er 3:0c3bcea5b4d0 954 #define GL_FOG_OFFSET_SGIX 0x8198
sca8er 3:0c3bcea5b4d0 955 #define GL_FOG_OFFSET_VALUE_SGIX 0x8199
sca8er 3:0c3bcea5b4d0 956 #endif
sca8er 3:0c3bcea5b4d0 957
sca8er 3:0c3bcea5b4d0 958 #ifndef GL_HP_image_transform
sca8er 3:0c3bcea5b4d0 959 #define GL_IMAGE_SCALE_X_HP 0x8155
sca8er 3:0c3bcea5b4d0 960 #define GL_IMAGE_SCALE_Y_HP 0x8156
sca8er 3:0c3bcea5b4d0 961 #define GL_IMAGE_TRANSLATE_X_HP 0x8157
sca8er 3:0c3bcea5b4d0 962 #define GL_IMAGE_TRANSLATE_Y_HP 0x8158
sca8er 3:0c3bcea5b4d0 963 #define GL_IMAGE_ROTATE_ANGLE_HP 0x8159
sca8er 3:0c3bcea5b4d0 964 #define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A
sca8er 3:0c3bcea5b4d0 965 #define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B
sca8er 3:0c3bcea5b4d0 966 #define GL_IMAGE_MAG_FILTER_HP 0x815C
sca8er 3:0c3bcea5b4d0 967 #define GL_IMAGE_MIN_FILTER_HP 0x815D
sca8er 3:0c3bcea5b4d0 968 #define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E
sca8er 3:0c3bcea5b4d0 969 #define GL_CUBIC_HP 0x815F
sca8er 3:0c3bcea5b4d0 970 #define GL_AVERAGE_HP 0x8160
sca8er 3:0c3bcea5b4d0 971 #define GL_IMAGE_TRANSFORM_2D_HP 0x8161
sca8er 3:0c3bcea5b4d0 972 #define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162
sca8er 3:0c3bcea5b4d0 973 #define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163
sca8er 3:0c3bcea5b4d0 974 #endif
sca8er 3:0c3bcea5b4d0 975
sca8er 3:0c3bcea5b4d0 976 #ifndef GL_HP_convolution_border_modes
sca8er 3:0c3bcea5b4d0 977 #define GL_IGNORE_BORDER_HP 0x8150
sca8er 3:0c3bcea5b4d0 978 #define GL_CONSTANT_BORDER_HP 0x8151
sca8er 3:0c3bcea5b4d0 979 #define GL_REPLICATE_BORDER_HP 0x8153
sca8er 3:0c3bcea5b4d0 980 #define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154
sca8er 3:0c3bcea5b4d0 981 #endif
sca8er 3:0c3bcea5b4d0 982
sca8er 3:0c3bcea5b4d0 983 #ifndef GL_INGR_palette_buffer
sca8er 3:0c3bcea5b4d0 984 #endif
sca8er 3:0c3bcea5b4d0 985
sca8er 3:0c3bcea5b4d0 986 #ifndef GL_SGIX_texture_add_env
sca8er 3:0c3bcea5b4d0 987 #define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE
sca8er 3:0c3bcea5b4d0 988 #endif
sca8er 3:0c3bcea5b4d0 989
sca8er 3:0c3bcea5b4d0 990 #ifndef GL_EXT_color_subtable
sca8er 3:0c3bcea5b4d0 991 #endif
sca8er 3:0c3bcea5b4d0 992
sca8er 3:0c3bcea5b4d0 993 #ifndef GL_PGI_vertex_hints
sca8er 3:0c3bcea5b4d0 994 #define GL_VERTEX_DATA_HINT_PGI 0x1A22A
sca8er 3:0c3bcea5b4d0 995 #define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B
sca8er 3:0c3bcea5b4d0 996 #define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C
sca8er 3:0c3bcea5b4d0 997 #define GL_MAX_VERTEX_HINT_PGI 0x1A22D
sca8er 3:0c3bcea5b4d0 998 #define GL_COLOR3_BIT_PGI 0x00010000
sca8er 3:0c3bcea5b4d0 999 #define GL_COLOR4_BIT_PGI 0x00020000
sca8er 3:0c3bcea5b4d0 1000 #define GL_EDGEFLAG_BIT_PGI 0x00040000
sca8er 3:0c3bcea5b4d0 1001 #define GL_INDEX_BIT_PGI 0x00080000
sca8er 3:0c3bcea5b4d0 1002 #define GL_MAT_AMBIENT_BIT_PGI 0x00100000
sca8er 3:0c3bcea5b4d0 1003 #define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000
sca8er 3:0c3bcea5b4d0 1004 #define GL_MAT_DIFFUSE_BIT_PGI 0x00400000
sca8er 3:0c3bcea5b4d0 1005 #define GL_MAT_EMISSION_BIT_PGI 0x00800000
sca8er 3:0c3bcea5b4d0 1006 #define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000
sca8er 3:0c3bcea5b4d0 1007 #define GL_MAT_SHININESS_BIT_PGI 0x02000000
sca8er 3:0c3bcea5b4d0 1008 #define GL_MAT_SPECULAR_BIT_PGI 0x04000000
sca8er 3:0c3bcea5b4d0 1009 #define GL_NORMAL_BIT_PGI 0x08000000
sca8er 3:0c3bcea5b4d0 1010 #define GL_TEXCOORD1_BIT_PGI 0x10000000
sca8er 3:0c3bcea5b4d0 1011 #define GL_TEXCOORD2_BIT_PGI 0x20000000
sca8er 3:0c3bcea5b4d0 1012 #define GL_TEXCOORD3_BIT_PGI 0x40000000
sca8er 3:0c3bcea5b4d0 1013 #define GL_TEXCOORD4_BIT_PGI 0x80000000
sca8er 3:0c3bcea5b4d0 1014 #define GL_VERTEX23_BIT_PGI 0x00000004
sca8er 3:0c3bcea5b4d0 1015 #define GL_VERTEX4_BIT_PGI 0x00000008
sca8er 3:0c3bcea5b4d0 1016 #endif
sca8er 3:0c3bcea5b4d0 1017
sca8er 3:0c3bcea5b4d0 1018 #ifndef GL_PGI_misc_hints
sca8er 3:0c3bcea5b4d0 1019 #define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8
sca8er 3:0c3bcea5b4d0 1020 #define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD
sca8er 3:0c3bcea5b4d0 1021 #define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE
sca8er 3:0c3bcea5b4d0 1022 #define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202
sca8er 3:0c3bcea5b4d0 1023 #define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203
sca8er 3:0c3bcea5b4d0 1024 #define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204
sca8er 3:0c3bcea5b4d0 1025 #define GL_ALWAYS_FAST_HINT_PGI 0x1A20C
sca8er 3:0c3bcea5b4d0 1026 #define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D
sca8er 3:0c3bcea5b4d0 1027 #define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E
sca8er 3:0c3bcea5b4d0 1028 #define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F
sca8er 3:0c3bcea5b4d0 1029 #define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210
sca8er 3:0c3bcea5b4d0 1030 #define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211
sca8er 3:0c3bcea5b4d0 1031 #define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216
sca8er 3:0c3bcea5b4d0 1032 #define GL_STRICT_LIGHTING_HINT_PGI 0x1A217
sca8er 3:0c3bcea5b4d0 1033 #define GL_STRICT_SCISSOR_HINT_PGI 0x1A218
sca8er 3:0c3bcea5b4d0 1034 #define GL_FULL_STIPPLE_HINT_PGI 0x1A219
sca8er 3:0c3bcea5b4d0 1035 #define GL_CLIP_NEAR_HINT_PGI 0x1A220
sca8er 3:0c3bcea5b4d0 1036 #define GL_CLIP_FAR_HINT_PGI 0x1A221
sca8er 3:0c3bcea5b4d0 1037 #define GL_WIDE_LINE_HINT_PGI 0x1A222
sca8er 3:0c3bcea5b4d0 1038 #define GL_BACK_NORMALS_HINT_PGI 0x1A223
sca8er 3:0c3bcea5b4d0 1039 #endif
sca8er 3:0c3bcea5b4d0 1040
sca8er 3:0c3bcea5b4d0 1041 #ifndef GL_EXT_paletted_texture
sca8er 3:0c3bcea5b4d0 1042 #define GL_COLOR_INDEX1_EXT 0x80E2
sca8er 3:0c3bcea5b4d0 1043 #define GL_COLOR_INDEX2_EXT 0x80E3
sca8er 3:0c3bcea5b4d0 1044 #define GL_COLOR_INDEX4_EXT 0x80E4
sca8er 3:0c3bcea5b4d0 1045 #define GL_COLOR_INDEX8_EXT 0x80E5
sca8er 3:0c3bcea5b4d0 1046 #define GL_COLOR_INDEX12_EXT 0x80E6
sca8er 3:0c3bcea5b4d0 1047 #define GL_COLOR_INDEX16_EXT 0x80E7
sca8er 3:0c3bcea5b4d0 1048 #define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED
sca8er 3:0c3bcea5b4d0 1049 #endif
sca8er 3:0c3bcea5b4d0 1050
sca8er 3:0c3bcea5b4d0 1051 #ifndef GL_EXT_clip_volume_hint
sca8er 3:0c3bcea5b4d0 1052 #define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0
sca8er 3:0c3bcea5b4d0 1053 #endif
sca8er 3:0c3bcea5b4d0 1054
sca8er 3:0c3bcea5b4d0 1055 #ifndef GL_SGIX_list_priority
sca8er 3:0c3bcea5b4d0 1056 #define GL_LIST_PRIORITY_SGIX 0x8182
sca8er 3:0c3bcea5b4d0 1057 #endif
sca8er 3:0c3bcea5b4d0 1058
sca8er 3:0c3bcea5b4d0 1059 #ifndef GL_SGIX_ir_instrument1
sca8er 3:0c3bcea5b4d0 1060 #define GL_IR_INSTRUMENT1_SGIX 0x817F
sca8er 3:0c3bcea5b4d0 1061 #endif
sca8er 3:0c3bcea5b4d0 1062
sca8er 3:0c3bcea5b4d0 1063 #ifndef GL_SGIX_calligraphic_fragment
sca8er 3:0c3bcea5b4d0 1064 #define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183
sca8er 3:0c3bcea5b4d0 1065 #endif
sca8er 3:0c3bcea5b4d0 1066
sca8er 3:0c3bcea5b4d0 1067 #ifndef GL_SGIX_texture_lod_bias
sca8er 3:0c3bcea5b4d0 1068 #define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E
sca8er 3:0c3bcea5b4d0 1069 #define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F
sca8er 3:0c3bcea5b4d0 1070 #define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190
sca8er 3:0c3bcea5b4d0 1071 #endif
sca8er 3:0c3bcea5b4d0 1072
sca8er 3:0c3bcea5b4d0 1073 #ifndef GL_SGIX_shadow_ambient
sca8er 3:0c3bcea5b4d0 1074 #define GL_SHADOW_AMBIENT_SGIX 0x80BF
sca8er 3:0c3bcea5b4d0 1075 #endif
sca8er 3:0c3bcea5b4d0 1076
sca8er 3:0c3bcea5b4d0 1077 #ifndef GL_EXT_index_texture
sca8er 3:0c3bcea5b4d0 1078 #endif
sca8er 3:0c3bcea5b4d0 1079
sca8er 3:0c3bcea5b4d0 1080 #ifndef GL_EXT_index_material
sca8er 3:0c3bcea5b4d0 1081 #define GL_INDEX_MATERIAL_EXT 0x81B8
sca8er 3:0c3bcea5b4d0 1082 #define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9
sca8er 3:0c3bcea5b4d0 1083 #define GL_INDEX_MATERIAL_FACE_EXT 0x81BA
sca8er 3:0c3bcea5b4d0 1084 #endif
sca8er 3:0c3bcea5b4d0 1085
sca8er 3:0c3bcea5b4d0 1086 #ifndef GL_EXT_index_func
sca8er 3:0c3bcea5b4d0 1087 #define GL_INDEX_TEST_EXT 0x81B5
sca8er 3:0c3bcea5b4d0 1088 #define GL_INDEX_TEST_FUNC_EXT 0x81B6
sca8er 3:0c3bcea5b4d0 1089 #define GL_INDEX_TEST_REF_EXT 0x81B7
sca8er 3:0c3bcea5b4d0 1090 #endif
sca8er 3:0c3bcea5b4d0 1091
sca8er 3:0c3bcea5b4d0 1092 #ifndef GL_EXT_index_array_formats
sca8er 3:0c3bcea5b4d0 1093 #define GL_IUI_V2F_EXT 0x81AD
sca8er 3:0c3bcea5b4d0 1094 #define GL_IUI_V3F_EXT 0x81AE
sca8er 3:0c3bcea5b4d0 1095 #define GL_IUI_N3F_V2F_EXT 0x81AF
sca8er 3:0c3bcea5b4d0 1096 #define GL_IUI_N3F_V3F_EXT 0x81B0
sca8er 3:0c3bcea5b4d0 1097 #define GL_T2F_IUI_V2F_EXT 0x81B1
sca8er 3:0c3bcea5b4d0 1098 #define GL_T2F_IUI_V3F_EXT 0x81B2
sca8er 3:0c3bcea5b4d0 1099 #define GL_T2F_IUI_N3F_V2F_EXT 0x81B3
sca8er 3:0c3bcea5b4d0 1100 #define GL_T2F_IUI_N3F_V3F_EXT 0x81B4
sca8er 3:0c3bcea5b4d0 1101 #endif
sca8er 3:0c3bcea5b4d0 1102
sca8er 3:0c3bcea5b4d0 1103 #ifndef GL_EXT_compiled_vertex_array
sca8er 3:0c3bcea5b4d0 1104 #define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8
sca8er 3:0c3bcea5b4d0 1105 #define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9
sca8er 3:0c3bcea5b4d0 1106 #endif
sca8er 3:0c3bcea5b4d0 1107
sca8er 3:0c3bcea5b4d0 1108 #ifndef GL_EXT_cull_vertex
sca8er 3:0c3bcea5b4d0 1109 #define GL_CULL_VERTEX_EXT 0x81AA
sca8er 3:0c3bcea5b4d0 1110 #define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB
sca8er 3:0c3bcea5b4d0 1111 #define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC
sca8er 3:0c3bcea5b4d0 1112 #endif
sca8er 3:0c3bcea5b4d0 1113
sca8er 3:0c3bcea5b4d0 1114 #ifndef GL_SGIX_ycrcb
sca8er 3:0c3bcea5b4d0 1115 #define GL_YCRCB_422_SGIX 0x81BB
sca8er 3:0c3bcea5b4d0 1116 #define GL_YCRCB_444_SGIX 0x81BC
sca8er 3:0c3bcea5b4d0 1117 #endif
sca8er 3:0c3bcea5b4d0 1118
sca8er 3:0c3bcea5b4d0 1119 #ifndef GL_SGIX_fragment_lighting
sca8er 3:0c3bcea5b4d0 1120 #define GL_FRAGMENT_LIGHTING_SGIX 0x8400
sca8er 3:0c3bcea5b4d0 1121 #define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401
sca8er 3:0c3bcea5b4d0 1122 #define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402
sca8er 3:0c3bcea5b4d0 1123 #define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403
sca8er 3:0c3bcea5b4d0 1124 #define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404
sca8er 3:0c3bcea5b4d0 1125 #define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405
sca8er 3:0c3bcea5b4d0 1126 #define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406
sca8er 3:0c3bcea5b4d0 1127 #define GL_LIGHT_ENV_MODE_SGIX 0x8407
sca8er 3:0c3bcea5b4d0 1128 #define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408
sca8er 3:0c3bcea5b4d0 1129 #define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409
sca8er 3:0c3bcea5b4d0 1130 #define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A
sca8er 3:0c3bcea5b4d0 1131 #define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B
sca8er 3:0c3bcea5b4d0 1132 #define GL_FRAGMENT_LIGHT0_SGIX 0x840C
sca8er 3:0c3bcea5b4d0 1133 #define GL_FRAGMENT_LIGHT1_SGIX 0x840D
sca8er 3:0c3bcea5b4d0 1134 #define GL_FRAGMENT_LIGHT2_SGIX 0x840E
sca8er 3:0c3bcea5b4d0 1135 #define GL_FRAGMENT_LIGHT3_SGIX 0x840F
sca8er 3:0c3bcea5b4d0 1136 #define GL_FRAGMENT_LIGHT4_SGIX 0x8410
sca8er 3:0c3bcea5b4d0 1137 #define GL_FRAGMENT_LIGHT5_SGIX 0x8411
sca8er 3:0c3bcea5b4d0 1138 #define GL_FRAGMENT_LIGHT6_SGIX 0x8412
sca8er 3:0c3bcea5b4d0 1139 #define GL_FRAGMENT_LIGHT7_SGIX 0x8413
sca8er 3:0c3bcea5b4d0 1140 #endif
sca8er 3:0c3bcea5b4d0 1141
sca8er 3:0c3bcea5b4d0 1142 #ifndef GL_IBM_rasterpos_clip
sca8er 3:0c3bcea5b4d0 1143 #define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262
sca8er 3:0c3bcea5b4d0 1144 #endif
sca8er 3:0c3bcea5b4d0 1145
sca8er 3:0c3bcea5b4d0 1146 #ifndef GL_HP_texture_lighting
sca8er 3:0c3bcea5b4d0 1147 #define GL_TEXTURE_LIGHTING_MODE_HP 0x8167
sca8er 3:0c3bcea5b4d0 1148 #define GL_TEXTURE_POST_SPECULAR_HP 0x8168
sca8er 3:0c3bcea5b4d0 1149 #define GL_TEXTURE_PRE_SPECULAR_HP 0x8169
sca8er 3:0c3bcea5b4d0 1150 #endif
sca8er 3:0c3bcea5b4d0 1151
sca8er 3:0c3bcea5b4d0 1152 #ifndef GL_EXT_draw_range_elements
sca8er 3:0c3bcea5b4d0 1153 #define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8
sca8er 3:0c3bcea5b4d0 1154 #define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9
sca8er 3:0c3bcea5b4d0 1155 #endif
sca8er 3:0c3bcea5b4d0 1156
sca8er 3:0c3bcea5b4d0 1157 #ifndef GL_WIN_phong_shading
sca8er 3:0c3bcea5b4d0 1158 #define GL_PHONG_WIN 0x80EA
sca8er 3:0c3bcea5b4d0 1159 #define GL_PHONG_HINT_WIN 0x80EB
sca8er 3:0c3bcea5b4d0 1160 #endif
sca8er 3:0c3bcea5b4d0 1161
sca8er 3:0c3bcea5b4d0 1162 #ifndef GL_WIN_specular_fog
sca8er 3:0c3bcea5b4d0 1163 #define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC
sca8er 3:0c3bcea5b4d0 1164 #endif
sca8er 3:0c3bcea5b4d0 1165
sca8er 3:0c3bcea5b4d0 1166 #ifndef GL_EXT_light_texture
sca8er 3:0c3bcea5b4d0 1167 #define GL_FRAGMENT_MATERIAL_EXT 0x8349
sca8er 3:0c3bcea5b4d0 1168 #define GL_FRAGMENT_NORMAL_EXT 0x834A
sca8er 3:0c3bcea5b4d0 1169 #define GL_FRAGMENT_COLOR_EXT 0x834C
sca8er 3:0c3bcea5b4d0 1170 #define GL_ATTENUATION_EXT 0x834D
sca8er 3:0c3bcea5b4d0 1171 #define GL_SHADOW_ATTENUATION_EXT 0x834E
sca8er 3:0c3bcea5b4d0 1172 #define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F
sca8er 3:0c3bcea5b4d0 1173 #define GL_TEXTURE_LIGHT_EXT 0x8350
sca8er 3:0c3bcea5b4d0 1174 #define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351
sca8er 3:0c3bcea5b4d0 1175 #define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352
sca8er 3:0c3bcea5b4d0 1176 /* reuse GL_FRAGMENT_DEPTH_EXT */
sca8er 3:0c3bcea5b4d0 1177 #endif
sca8er 3:0c3bcea5b4d0 1178
sca8er 3:0c3bcea5b4d0 1179 #ifndef GL_SGIX_blend_alpha_minmax
sca8er 3:0c3bcea5b4d0 1180 #define GL_ALPHA_MIN_SGIX 0x8320
sca8er 3:0c3bcea5b4d0 1181 #define GL_ALPHA_MAX_SGIX 0x8321
sca8er 3:0c3bcea5b4d0 1182 #endif
sca8er 3:0c3bcea5b4d0 1183
sca8er 3:0c3bcea5b4d0 1184 #ifndef GL_SGIX_impact_pixel_texture
sca8er 3:0c3bcea5b4d0 1185 #define GL_PIXEL_TEX_GEN_Q_CEILING_SGIX 0x8184
sca8er 3:0c3bcea5b4d0 1186 #define GL_PIXEL_TEX_GEN_Q_ROUND_SGIX 0x8185
sca8er 3:0c3bcea5b4d0 1187 #define GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX 0x8186
sca8er 3:0c3bcea5b4d0 1188 #define GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX 0x8187
sca8er 3:0c3bcea5b4d0 1189 #define GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX 0x8188
sca8er 3:0c3bcea5b4d0 1190 #define GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX 0x8189
sca8er 3:0c3bcea5b4d0 1191 #define GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX 0x818A
sca8er 3:0c3bcea5b4d0 1192 #endif
sca8er 3:0c3bcea5b4d0 1193
sca8er 3:0c3bcea5b4d0 1194 #ifndef GL_EXT_bgra
sca8er 3:0c3bcea5b4d0 1195 #define GL_BGR_EXT 0x80E0
sca8er 3:0c3bcea5b4d0 1196 #define GL_BGRA_EXT 0x80E1
sca8er 3:0c3bcea5b4d0 1197 #endif
sca8er 3:0c3bcea5b4d0 1198
sca8er 3:0c3bcea5b4d0 1199 #ifndef GL_SGIX_async
sca8er 3:0c3bcea5b4d0 1200 #define GL_ASYNC_MARKER_SGIX 0x8329
sca8er 3:0c3bcea5b4d0 1201 #endif
sca8er 3:0c3bcea5b4d0 1202
sca8er 3:0c3bcea5b4d0 1203 #ifndef GL_SGIX_async_pixel
sca8er 3:0c3bcea5b4d0 1204 #define GL_ASYNC_TEX_IMAGE_SGIX 0x835C
sca8er 3:0c3bcea5b4d0 1205 #define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D
sca8er 3:0c3bcea5b4d0 1206 #define GL_ASYNC_READ_PIXELS_SGIX 0x835E
sca8er 3:0c3bcea5b4d0 1207 #define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F
sca8er 3:0c3bcea5b4d0 1208 #define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360
sca8er 3:0c3bcea5b4d0 1209 #define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361
sca8er 3:0c3bcea5b4d0 1210 #endif
sca8er 3:0c3bcea5b4d0 1211
sca8er 3:0c3bcea5b4d0 1212 #ifndef GL_SGIX_async_histogram
sca8er 3:0c3bcea5b4d0 1213 #define GL_ASYNC_HISTOGRAM_SGIX 0x832C
sca8er 3:0c3bcea5b4d0 1214 #define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D
sca8er 3:0c3bcea5b4d0 1215 #endif
sca8er 3:0c3bcea5b4d0 1216
sca8er 3:0c3bcea5b4d0 1217 #ifndef GL_INTEL_texture_scissor
sca8er 3:0c3bcea5b4d0 1218 #endif
sca8er 3:0c3bcea5b4d0 1219
sca8er 3:0c3bcea5b4d0 1220 #ifndef GL_INTEL_parallel_arrays
sca8er 3:0c3bcea5b4d0 1221 #define GL_PARALLEL_ARRAYS_INTEL 0x83F4
sca8er 3:0c3bcea5b4d0 1222 #define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5
sca8er 3:0c3bcea5b4d0 1223 #define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6
sca8er 3:0c3bcea5b4d0 1224 #define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7
sca8er 3:0c3bcea5b4d0 1225 #define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8
sca8er 3:0c3bcea5b4d0 1226 #endif
sca8er 3:0c3bcea5b4d0 1227
sca8er 3:0c3bcea5b4d0 1228 #ifndef GL_HP_occlusion_test
sca8er 3:0c3bcea5b4d0 1229 #define GL_OCCLUSION_TEST_HP 0x8165
sca8er 3:0c3bcea5b4d0 1230 #define GL_OCCLUSION_TEST_RESULT_HP 0x8166
sca8er 3:0c3bcea5b4d0 1231 #endif
sca8er 3:0c3bcea5b4d0 1232
sca8er 3:0c3bcea5b4d0 1233 #ifndef GL_EXT_pixel_transform
sca8er 3:0c3bcea5b4d0 1234 #define GL_PIXEL_TRANSFORM_2D_EXT 0x8330
sca8er 3:0c3bcea5b4d0 1235 #define GL_PIXEL_MAG_FILTER_EXT 0x8331
sca8er 3:0c3bcea5b4d0 1236 #define GL_PIXEL_MIN_FILTER_EXT 0x8332
sca8er 3:0c3bcea5b4d0 1237 #define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333
sca8er 3:0c3bcea5b4d0 1238 #define GL_CUBIC_EXT 0x8334
sca8er 3:0c3bcea5b4d0 1239 #define GL_AVERAGE_EXT 0x8335
sca8er 3:0c3bcea5b4d0 1240 #define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336
sca8er 3:0c3bcea5b4d0 1241 #define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337
sca8er 3:0c3bcea5b4d0 1242 #define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338
sca8er 3:0c3bcea5b4d0 1243 #endif
sca8er 3:0c3bcea5b4d0 1244
sca8er 3:0c3bcea5b4d0 1245 #ifndef GL_EXT_pixel_transform_color_table
sca8er 3:0c3bcea5b4d0 1246 #endif
sca8er 3:0c3bcea5b4d0 1247
sca8er 3:0c3bcea5b4d0 1248 #ifndef GL_EXT_shared_texture_palette
sca8er 3:0c3bcea5b4d0 1249 #define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB
sca8er 3:0c3bcea5b4d0 1250 #endif
sca8er 3:0c3bcea5b4d0 1251
sca8er 3:0c3bcea5b4d0 1252 #ifndef GL_EXT_separate_specular_color
sca8er 3:0c3bcea5b4d0 1253 #define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8
sca8er 3:0c3bcea5b4d0 1254 #define GL_SINGLE_COLOR_EXT 0x81F9
sca8er 3:0c3bcea5b4d0 1255 #define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA
sca8er 3:0c3bcea5b4d0 1256 #endif
sca8er 3:0c3bcea5b4d0 1257
sca8er 3:0c3bcea5b4d0 1258 #ifndef GL_EXT_secondary_color
sca8er 3:0c3bcea5b4d0 1259 #define GL_COLOR_SUM_EXT 0x8458
sca8er 3:0c3bcea5b4d0 1260 #define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459
sca8er 3:0c3bcea5b4d0 1261 #define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A
sca8er 3:0c3bcea5b4d0 1262 #define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B
sca8er 3:0c3bcea5b4d0 1263 #define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C
sca8er 3:0c3bcea5b4d0 1264 #define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D
sca8er 3:0c3bcea5b4d0 1265 #define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E
sca8er 3:0c3bcea5b4d0 1266 #endif
sca8er 3:0c3bcea5b4d0 1267
sca8er 3:0c3bcea5b4d0 1268 #ifndef GL_EXT_texture_perturb_normal
sca8er 3:0c3bcea5b4d0 1269 #define GL_PERTURB_EXT 0x85AE
sca8er 3:0c3bcea5b4d0 1270 #define GL_TEXTURE_NORMAL_EXT 0x85AF
sca8er 3:0c3bcea5b4d0 1271 #endif
sca8er 3:0c3bcea5b4d0 1272
sca8er 3:0c3bcea5b4d0 1273 #ifndef GL_EXT_multi_draw_arrays
sca8er 3:0c3bcea5b4d0 1274 #endif
sca8er 3:0c3bcea5b4d0 1275
sca8er 3:0c3bcea5b4d0 1276 #ifndef GL_EXT_fog_coord
sca8er 3:0c3bcea5b4d0 1277 #define GL_FOG_COORDINATE_SOURCE_EXT 0x8450
sca8er 3:0c3bcea5b4d0 1278 #define GL_FOG_COORDINATE_EXT 0x8451
sca8er 3:0c3bcea5b4d0 1279 #define GL_FRAGMENT_DEPTH_EXT 0x8452
sca8er 3:0c3bcea5b4d0 1280 #define GL_CURRENT_FOG_COORDINATE_EXT 0x8453
sca8er 3:0c3bcea5b4d0 1281 #define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454
sca8er 3:0c3bcea5b4d0 1282 #define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455
sca8er 3:0c3bcea5b4d0 1283 #define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456
sca8er 3:0c3bcea5b4d0 1284 #define GL_FOG_COORDINATE_ARRAY_EXT 0x8457
sca8er 3:0c3bcea5b4d0 1285 #endif
sca8er 3:0c3bcea5b4d0 1286
sca8er 3:0c3bcea5b4d0 1287 #ifndef GL_REND_screen_coordinates
sca8er 3:0c3bcea5b4d0 1288 #define GL_SCREEN_COORDINATES_REND 0x8490
sca8er 3:0c3bcea5b4d0 1289 #define GL_INVERTED_SCREEN_W_REND 0x8491
sca8er 3:0c3bcea5b4d0 1290 #endif
sca8er 3:0c3bcea5b4d0 1291
sca8er 3:0c3bcea5b4d0 1292 #ifndef GL_EXT_coordinate_frame
sca8er 3:0c3bcea5b4d0 1293 #define GL_TANGENT_ARRAY_EXT 0x8439
sca8er 3:0c3bcea5b4d0 1294 #define GL_BINORMAL_ARRAY_EXT 0x843A
sca8er 3:0c3bcea5b4d0 1295 #define GL_CURRENT_TANGENT_EXT 0x843B
sca8er 3:0c3bcea5b4d0 1296 #define GL_CURRENT_BINORMAL_EXT 0x843C
sca8er 3:0c3bcea5b4d0 1297 #define GL_TANGENT_ARRAY_TYPE_EXT 0x843E
sca8er 3:0c3bcea5b4d0 1298 #define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F
sca8er 3:0c3bcea5b4d0 1299 #define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440
sca8er 3:0c3bcea5b4d0 1300 #define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441
sca8er 3:0c3bcea5b4d0 1301 #define GL_TANGENT_ARRAY_POINTER_EXT 0x8442
sca8er 3:0c3bcea5b4d0 1302 #define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443
sca8er 3:0c3bcea5b4d0 1303 #define GL_MAP1_TANGENT_EXT 0x8444
sca8er 3:0c3bcea5b4d0 1304 #define GL_MAP2_TANGENT_EXT 0x8445
sca8er 3:0c3bcea5b4d0 1305 #define GL_MAP1_BINORMAL_EXT 0x8446
sca8er 3:0c3bcea5b4d0 1306 #define GL_MAP2_BINORMAL_EXT 0x8447
sca8er 3:0c3bcea5b4d0 1307 #endif
sca8er 3:0c3bcea5b4d0 1308
sca8er 3:0c3bcea5b4d0 1309 #ifndef GL_EXT_texture_env_combine
sca8er 3:0c3bcea5b4d0 1310 #define GL_COMBINE_EXT 0x8570
sca8er 3:0c3bcea5b4d0 1311 #define GL_COMBINE_RGB_EXT 0x8571
sca8er 3:0c3bcea5b4d0 1312 #define GL_COMBINE_ALPHA_EXT 0x8572
sca8er 3:0c3bcea5b4d0 1313 #define GL_RGB_SCALE_EXT 0x8573
sca8er 3:0c3bcea5b4d0 1314 #define GL_ADD_SIGNED_EXT 0x8574
sca8er 3:0c3bcea5b4d0 1315 #define GL_INTERPOLATE_EXT 0x8575
sca8er 3:0c3bcea5b4d0 1316 #define GL_CONSTANT_EXT 0x8576
sca8er 3:0c3bcea5b4d0 1317 #define GL_PRIMARY_COLOR_EXT 0x8577
sca8er 3:0c3bcea5b4d0 1318 #define GL_PREVIOUS_EXT 0x8578
sca8er 3:0c3bcea5b4d0 1319 #define GL_SOURCE0_RGB_EXT 0x8580
sca8er 3:0c3bcea5b4d0 1320 #define GL_SOURCE1_RGB_EXT 0x8581
sca8er 3:0c3bcea5b4d0 1321 #define GL_SOURCE2_RGB_EXT 0x8582
sca8er 3:0c3bcea5b4d0 1322 #define GL_SOURCE0_ALPHA_EXT 0x8588
sca8er 3:0c3bcea5b4d0 1323 #define GL_SOURCE1_ALPHA_EXT 0x8589
sca8er 3:0c3bcea5b4d0 1324 #define GL_SOURCE2_ALPHA_EXT 0x858A
sca8er 3:0c3bcea5b4d0 1325 #define GL_OPERAND0_RGB_EXT 0x8590
sca8er 3:0c3bcea5b4d0 1326 #define GL_OPERAND1_RGB_EXT 0x8591
sca8er 3:0c3bcea5b4d0 1327 #define GL_OPERAND2_RGB_EXT 0x8592
sca8er 3:0c3bcea5b4d0 1328 #define GL_OPERAND0_ALPHA_EXT 0x8598
sca8er 3:0c3bcea5b4d0 1329 #define GL_OPERAND1_ALPHA_EXT 0x8599
sca8er 3:0c3bcea5b4d0 1330 #define GL_OPERAND2_ALPHA_EXT 0x859A
sca8er 3:0c3bcea5b4d0 1331 #endif
sca8er 3:0c3bcea5b4d0 1332
sca8er 3:0c3bcea5b4d0 1333 #ifndef GL_APPLE_specular_vector
sca8er 3:0c3bcea5b4d0 1334 #define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0
sca8er 3:0c3bcea5b4d0 1335 #endif
sca8er 3:0c3bcea5b4d0 1336
sca8er 3:0c3bcea5b4d0 1337 #ifndef GL_APPLE_transform_hint
sca8er 3:0c3bcea5b4d0 1338 #define GL_TRANSFORM_HINT_APPLE 0x85B1
sca8er 3:0c3bcea5b4d0 1339 #endif
sca8er 3:0c3bcea5b4d0 1340
sca8er 3:0c3bcea5b4d0 1341 #ifndef GL_SGIX_fog_scale
sca8er 3:0c3bcea5b4d0 1342 #define GL_FOG_SCALE_SGIX 0x81FC
sca8er 3:0c3bcea5b4d0 1343 #define GL_FOG_SCALE_VALUE_SGIX 0x81FD
sca8er 3:0c3bcea5b4d0 1344 #endif
sca8er 3:0c3bcea5b4d0 1345
sca8er 3:0c3bcea5b4d0 1346 #ifndef GL_SUNX_constant_data
sca8er 3:0c3bcea5b4d0 1347 #define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5
sca8er 3:0c3bcea5b4d0 1348 #define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6
sca8er 3:0c3bcea5b4d0 1349 #endif
sca8er 3:0c3bcea5b4d0 1350
sca8er 3:0c3bcea5b4d0 1351 #ifndef GL_SUN_global_alpha
sca8er 3:0c3bcea5b4d0 1352 #define GL_GLOBAL_ALPHA_SUN 0x81D9
sca8er 3:0c3bcea5b4d0 1353 #define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA
sca8er 3:0c3bcea5b4d0 1354 #endif
sca8er 3:0c3bcea5b4d0 1355
sca8er 3:0c3bcea5b4d0 1356 #ifndef GL_SUN_triangle_list
sca8er 3:0c3bcea5b4d0 1357 #define GL_RESTART_SUN 0x0001
sca8er 3:0c3bcea5b4d0 1358 #define GL_REPLACE_MIDDLE_SUN 0x0002
sca8er 3:0c3bcea5b4d0 1359 #define GL_REPLACE_OLDEST_SUN 0x0003
sca8er 3:0c3bcea5b4d0 1360 #define GL_TRIANGLE_LIST_SUN 0x81D7
sca8er 3:0c3bcea5b4d0 1361 #define GL_REPLACEMENT_CODE_SUN 0x81D8
sca8er 3:0c3bcea5b4d0 1362 #define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0
sca8er 3:0c3bcea5b4d0 1363 #define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1
sca8er 3:0c3bcea5b4d0 1364 #define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2
sca8er 3:0c3bcea5b4d0 1365 #define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3
sca8er 3:0c3bcea5b4d0 1366 #define GL_R1UI_V3F_SUN 0x85C4
sca8er 3:0c3bcea5b4d0 1367 #define GL_R1UI_C4UB_V3F_SUN 0x85C5
sca8er 3:0c3bcea5b4d0 1368 #define GL_R1UI_C3F_V3F_SUN 0x85C6
sca8er 3:0c3bcea5b4d0 1369 #define GL_R1UI_N3F_V3F_SUN 0x85C7
sca8er 3:0c3bcea5b4d0 1370 #define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8
sca8er 3:0c3bcea5b4d0 1371 #define GL_R1UI_T2F_V3F_SUN 0x85C9
sca8er 3:0c3bcea5b4d0 1372 #define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA
sca8er 3:0c3bcea5b4d0 1373 #define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB
sca8er 3:0c3bcea5b4d0 1374 #endif
sca8er 3:0c3bcea5b4d0 1375
sca8er 3:0c3bcea5b4d0 1376 #ifndef GL_SUN_vertex
sca8er 3:0c3bcea5b4d0 1377 #endif
sca8er 3:0c3bcea5b4d0 1378
sca8er 3:0c3bcea5b4d0 1379 #ifndef GL_EXT_blend_func_separate
sca8er 3:0c3bcea5b4d0 1380 #define GL_BLEND_DST_RGB_EXT 0x80C8
sca8er 3:0c3bcea5b4d0 1381 #define GL_BLEND_SRC_RGB_EXT 0x80C9
sca8er 3:0c3bcea5b4d0 1382 #define GL_BLEND_DST_ALPHA_EXT 0x80CA
sca8er 3:0c3bcea5b4d0 1383 #define GL_BLEND_SRC_ALPHA_EXT 0x80CB
sca8er 3:0c3bcea5b4d0 1384 #endif
sca8er 3:0c3bcea5b4d0 1385
sca8er 3:0c3bcea5b4d0 1386 #ifndef GL_INGR_color_clamp
sca8er 3:0c3bcea5b4d0 1387 #define GL_RED_MIN_CLAMP_INGR 0x8560
sca8er 3:0c3bcea5b4d0 1388 #define GL_GREEN_MIN_CLAMP_INGR 0x8561
sca8er 3:0c3bcea5b4d0 1389 #define GL_BLUE_MIN_CLAMP_INGR 0x8562
sca8er 3:0c3bcea5b4d0 1390 #define GL_ALPHA_MIN_CLAMP_INGR 0x8563
sca8er 3:0c3bcea5b4d0 1391 #define GL_RED_MAX_CLAMP_INGR 0x8564
sca8er 3:0c3bcea5b4d0 1392 #define GL_GREEN_MAX_CLAMP_INGR 0x8565
sca8er 3:0c3bcea5b4d0 1393 #define GL_BLUE_MAX_CLAMP_INGR 0x8566
sca8er 3:0c3bcea5b4d0 1394 #define GL_ALPHA_MAX_CLAMP_INGR 0x8567
sca8er 3:0c3bcea5b4d0 1395 #endif
sca8er 3:0c3bcea5b4d0 1396
sca8er 3:0c3bcea5b4d0 1397 #ifndef GL_INGR_interlace_read
sca8er 3:0c3bcea5b4d0 1398 #define GL_INTERLACE_READ_INGR 0x8568
sca8er 3:0c3bcea5b4d0 1399 #endif
sca8er 3:0c3bcea5b4d0 1400
sca8er 3:0c3bcea5b4d0 1401 #ifndef GL_EXT_stencil_wrap
sca8er 3:0c3bcea5b4d0 1402 #define GL_INCR_WRAP_EXT 0x8507
sca8er 3:0c3bcea5b4d0 1403 #define GL_DECR_WRAP_EXT 0x8508
sca8er 3:0c3bcea5b4d0 1404 #endif
sca8er 3:0c3bcea5b4d0 1405
sca8er 3:0c3bcea5b4d0 1406 #ifndef GL_EXT_422_pixels
sca8er 3:0c3bcea5b4d0 1407 #define GL_422_EXT 0x80CC
sca8er 3:0c3bcea5b4d0 1408 #define GL_422_REV_EXT 0x80CD
sca8er 3:0c3bcea5b4d0 1409 #define GL_422_AVERAGE_EXT 0x80CE
sca8er 3:0c3bcea5b4d0 1410 #define GL_422_REV_AVERAGE_EXT 0x80CF
sca8er 3:0c3bcea5b4d0 1411 #endif
sca8er 3:0c3bcea5b4d0 1412
sca8er 3:0c3bcea5b4d0 1413 #ifndef GL_NV_texgen_reflection
sca8er 3:0c3bcea5b4d0 1414 #define GL_NORMAL_MAP_NV 0x8511
sca8er 3:0c3bcea5b4d0 1415 #define GL_REFLECTION_MAP_NV 0x8512
sca8er 3:0c3bcea5b4d0 1416 #endif
sca8er 3:0c3bcea5b4d0 1417
sca8er 3:0c3bcea5b4d0 1418 #ifndef GL_EXT_texture_cube_map
sca8er 3:0c3bcea5b4d0 1419 #define GL_NORMAL_MAP_EXT 0x8511
sca8er 3:0c3bcea5b4d0 1420 #define GL_REFLECTION_MAP_EXT 0x8512
sca8er 3:0c3bcea5b4d0 1421 #define GL_TEXTURE_CUBE_MAP_EXT 0x8513
sca8er 3:0c3bcea5b4d0 1422 #define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514
sca8er 3:0c3bcea5b4d0 1423 #define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515
sca8er 3:0c3bcea5b4d0 1424 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516
sca8er 3:0c3bcea5b4d0 1425 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517
sca8er 3:0c3bcea5b4d0 1426 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518
sca8er 3:0c3bcea5b4d0 1427 #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519
sca8er 3:0c3bcea5b4d0 1428 #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A
sca8er 3:0c3bcea5b4d0 1429 #define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B
sca8er 3:0c3bcea5b4d0 1430 #define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C
sca8er 3:0c3bcea5b4d0 1431 #endif
sca8er 3:0c3bcea5b4d0 1432
sca8er 3:0c3bcea5b4d0 1433 #ifndef GL_SUN_convolution_border_modes
sca8er 3:0c3bcea5b4d0 1434 #define GL_WRAP_BORDER_SUN 0x81D4
sca8er 3:0c3bcea5b4d0 1435 #endif
sca8er 3:0c3bcea5b4d0 1436
sca8er 3:0c3bcea5b4d0 1437 #ifndef GL_EXT_texture_env_add
sca8er 3:0c3bcea5b4d0 1438 #endif
sca8er 3:0c3bcea5b4d0 1439
sca8er 3:0c3bcea5b4d0 1440 #ifndef GL_EXT_texture_lod_bias
sca8er 3:0c3bcea5b4d0 1441 #define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD
sca8er 3:0c3bcea5b4d0 1442 #define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500
sca8er 3:0c3bcea5b4d0 1443 #define GL_TEXTURE_LOD_BIAS_EXT 0x8501
sca8er 3:0c3bcea5b4d0 1444 #endif
sca8er 3:0c3bcea5b4d0 1445
sca8er 3:0c3bcea5b4d0 1446 #ifndef GL_EXT_texture_filter_anisotropic
sca8er 3:0c3bcea5b4d0 1447 #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
sca8er 3:0c3bcea5b4d0 1448 #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
sca8er 3:0c3bcea5b4d0 1449 #endif
sca8er 3:0c3bcea5b4d0 1450
sca8er 3:0c3bcea5b4d0 1451 #ifndef GL_EXT_vertex_weighting
sca8er 3:0c3bcea5b4d0 1452 #define GL_MODELVIEW0_STACK_DEPTH_EXT GL_MODELVIEW_STACK_DEPTH
sca8er 3:0c3bcea5b4d0 1453 #define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502
sca8er 3:0c3bcea5b4d0 1454 #define GL_MODELVIEW0_MATRIX_EXT GL_MODELVIEW_MATRIX
sca8er 3:0c3bcea5b4d0 1455 #define GL_MODELVIEW1_MATRIX_EXT 0x8506
sca8er 3:0c3bcea5b4d0 1456 #define GL_VERTEX_WEIGHTING_EXT 0x8509
sca8er 3:0c3bcea5b4d0 1457 #define GL_MODELVIEW0_EXT GL_MODELVIEW
sca8er 3:0c3bcea5b4d0 1458 #define GL_MODELVIEW1_EXT 0x850A
sca8er 3:0c3bcea5b4d0 1459 #define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B
sca8er 3:0c3bcea5b4d0 1460 #define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C
sca8er 3:0c3bcea5b4d0 1461 #define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D
sca8er 3:0c3bcea5b4d0 1462 #define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E
sca8er 3:0c3bcea5b4d0 1463 #define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F
sca8er 3:0c3bcea5b4d0 1464 #define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510
sca8er 3:0c3bcea5b4d0 1465 #endif
sca8er 3:0c3bcea5b4d0 1466
sca8er 3:0c3bcea5b4d0 1467 #ifndef GL_NV_light_max_exponent
sca8er 3:0c3bcea5b4d0 1468 #define GL_MAX_SHININESS_NV 0x8504
sca8er 3:0c3bcea5b4d0 1469 #define GL_MAX_SPOT_EXPONENT_NV 0x8505
sca8er 3:0c3bcea5b4d0 1470 #endif
sca8er 3:0c3bcea5b4d0 1471
sca8er 3:0c3bcea5b4d0 1472 #ifndef GL_NV_vertex_array_range
sca8er 3:0c3bcea5b4d0 1473 #define GL_VERTEX_ARRAY_RANGE_NV 0x851D
sca8er 3:0c3bcea5b4d0 1474 #define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E
sca8er 3:0c3bcea5b4d0 1475 #define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F
sca8er 3:0c3bcea5b4d0 1476 #define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520
sca8er 3:0c3bcea5b4d0 1477 #define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521
sca8er 3:0c3bcea5b4d0 1478 #endif
sca8er 3:0c3bcea5b4d0 1479
sca8er 3:0c3bcea5b4d0 1480 #ifndef GL_NV_register_combiners
sca8er 3:0c3bcea5b4d0 1481 #define GL_REGISTER_COMBINERS_NV 0x8522
sca8er 3:0c3bcea5b4d0 1482 #define GL_VARIABLE_A_NV 0x8523
sca8er 3:0c3bcea5b4d0 1483 #define GL_VARIABLE_B_NV 0x8524
sca8er 3:0c3bcea5b4d0 1484 #define GL_VARIABLE_C_NV 0x8525
sca8er 3:0c3bcea5b4d0 1485 #define GL_VARIABLE_D_NV 0x8526
sca8er 3:0c3bcea5b4d0 1486 #define GL_VARIABLE_E_NV 0x8527
sca8er 3:0c3bcea5b4d0 1487 #define GL_VARIABLE_F_NV 0x8528
sca8er 3:0c3bcea5b4d0 1488 #define GL_VARIABLE_G_NV 0x8529
sca8er 3:0c3bcea5b4d0 1489 #define GL_CONSTANT_COLOR0_NV 0x852A
sca8er 3:0c3bcea5b4d0 1490 #define GL_CONSTANT_COLOR1_NV 0x852B
sca8er 3:0c3bcea5b4d0 1491 #define GL_PRIMARY_COLOR_NV 0x852C
sca8er 3:0c3bcea5b4d0 1492 #define GL_SECONDARY_COLOR_NV 0x852D
sca8er 3:0c3bcea5b4d0 1493 #define GL_SPARE0_NV 0x852E
sca8er 3:0c3bcea5b4d0 1494 #define GL_SPARE1_NV 0x852F
sca8er 3:0c3bcea5b4d0 1495 #define GL_DISCARD_NV 0x8530
sca8er 3:0c3bcea5b4d0 1496 #define GL_E_TIMES_F_NV 0x8531
sca8er 3:0c3bcea5b4d0 1497 #define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532
sca8er 3:0c3bcea5b4d0 1498 #define GL_UNSIGNED_IDENTITY_NV 0x8536
sca8er 3:0c3bcea5b4d0 1499 #define GL_UNSIGNED_INVERT_NV 0x8537
sca8er 3:0c3bcea5b4d0 1500 #define GL_EXPAND_NORMAL_NV 0x8538
sca8er 3:0c3bcea5b4d0 1501 #define GL_EXPAND_NEGATE_NV 0x8539
sca8er 3:0c3bcea5b4d0 1502 #define GL_HALF_BIAS_NORMAL_NV 0x853A
sca8er 3:0c3bcea5b4d0 1503 #define GL_HALF_BIAS_NEGATE_NV 0x853B
sca8er 3:0c3bcea5b4d0 1504 #define GL_SIGNED_IDENTITY_NV 0x853C
sca8er 3:0c3bcea5b4d0 1505 #define GL_SIGNED_NEGATE_NV 0x853D
sca8er 3:0c3bcea5b4d0 1506 #define GL_SCALE_BY_TWO_NV 0x853E
sca8er 3:0c3bcea5b4d0 1507 #define GL_SCALE_BY_FOUR_NV 0x853F
sca8er 3:0c3bcea5b4d0 1508 #define GL_SCALE_BY_ONE_HALF_NV 0x8540
sca8er 3:0c3bcea5b4d0 1509 #define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541
sca8er 3:0c3bcea5b4d0 1510 #define GL_COMBINER_INPUT_NV 0x8542
sca8er 3:0c3bcea5b4d0 1511 #define GL_COMBINER_MAPPING_NV 0x8543
sca8er 3:0c3bcea5b4d0 1512 #define GL_COMBINER_COMPONENT_USAGE_NV 0x8544
sca8er 3:0c3bcea5b4d0 1513 #define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545
sca8er 3:0c3bcea5b4d0 1514 #define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546
sca8er 3:0c3bcea5b4d0 1515 #define GL_COMBINER_MUX_SUM_NV 0x8547
sca8er 3:0c3bcea5b4d0 1516 #define GL_COMBINER_SCALE_NV 0x8548
sca8er 3:0c3bcea5b4d0 1517 #define GL_COMBINER_BIAS_NV 0x8549
sca8er 3:0c3bcea5b4d0 1518 #define GL_COMBINER_AB_OUTPUT_NV 0x854A
sca8er 3:0c3bcea5b4d0 1519 #define GL_COMBINER_CD_OUTPUT_NV 0x854B
sca8er 3:0c3bcea5b4d0 1520 #define GL_COMBINER_SUM_OUTPUT_NV 0x854C
sca8er 3:0c3bcea5b4d0 1521 #define GL_MAX_GENERAL_COMBINERS_NV 0x854D
sca8er 3:0c3bcea5b4d0 1522 #define GL_NUM_GENERAL_COMBINERS_NV 0x854E
sca8er 3:0c3bcea5b4d0 1523 #define GL_COLOR_SUM_CLAMP_NV 0x854F
sca8er 3:0c3bcea5b4d0 1524 #define GL_COMBINER0_NV 0x8550
sca8er 3:0c3bcea5b4d0 1525 #define GL_COMBINER1_NV 0x8551
sca8er 3:0c3bcea5b4d0 1526 #define GL_COMBINER2_NV 0x8552
sca8er 3:0c3bcea5b4d0 1527 #define GL_COMBINER3_NV 0x8553
sca8er 3:0c3bcea5b4d0 1528 #define GL_COMBINER4_NV 0x8554
sca8er 3:0c3bcea5b4d0 1529 #define GL_COMBINER5_NV 0x8555
sca8er 3:0c3bcea5b4d0 1530 #define GL_COMBINER6_NV 0x8556
sca8er 3:0c3bcea5b4d0 1531 #define GL_COMBINER7_NV 0x8557
sca8er 3:0c3bcea5b4d0 1532 /* reuse GL_TEXTURE0_ARB */
sca8er 3:0c3bcea5b4d0 1533 /* reuse GL_TEXTURE1_ARB */
sca8er 3:0c3bcea5b4d0 1534 /* reuse GL_ZERO */
sca8er 3:0c3bcea5b4d0 1535 /* reuse GL_NONE */
sca8er 3:0c3bcea5b4d0 1536 /* reuse GL_FOG */
sca8er 3:0c3bcea5b4d0 1537 #endif
sca8er 3:0c3bcea5b4d0 1538
sca8er 3:0c3bcea5b4d0 1539 #ifndef GL_NV_fog_distance
sca8er 3:0c3bcea5b4d0 1540 #define GL_FOG_DISTANCE_MODE_NV 0x855A
sca8er 3:0c3bcea5b4d0 1541 #define GL_EYE_RADIAL_NV 0x855B
sca8er 3:0c3bcea5b4d0 1542 #define GL_EYE_PLANE_ABSOLUTE_NV 0x855C
sca8er 3:0c3bcea5b4d0 1543 /* reuse GL_EYE_PLANE */
sca8er 3:0c3bcea5b4d0 1544 #endif
sca8er 3:0c3bcea5b4d0 1545
sca8er 3:0c3bcea5b4d0 1546 #ifndef GL_NV_texgen_emboss
sca8er 3:0c3bcea5b4d0 1547 #define GL_EMBOSS_LIGHT_NV 0x855D
sca8er 3:0c3bcea5b4d0 1548 #define GL_EMBOSS_CONSTANT_NV 0x855E
sca8er 3:0c3bcea5b4d0 1549 #define GL_EMBOSS_MAP_NV 0x855F
sca8er 3:0c3bcea5b4d0 1550 #endif
sca8er 3:0c3bcea5b4d0 1551
sca8er 3:0c3bcea5b4d0 1552 #ifndef GL_NV_blend_square
sca8er 3:0c3bcea5b4d0 1553 #endif
sca8er 3:0c3bcea5b4d0 1554
sca8er 3:0c3bcea5b4d0 1555 #ifndef GL_NV_texture_env_combine4
sca8er 3:0c3bcea5b4d0 1556 #define GL_COMBINE4_NV 0x8503
sca8er 3:0c3bcea5b4d0 1557 #define GL_SOURCE3_RGB_NV 0x8583
sca8er 3:0c3bcea5b4d0 1558 #define GL_SOURCE3_ALPHA_NV 0x858B
sca8er 3:0c3bcea5b4d0 1559 #define GL_OPERAND3_RGB_NV 0x8593
sca8er 3:0c3bcea5b4d0 1560 #define GL_OPERAND3_ALPHA_NV 0x859B
sca8er 3:0c3bcea5b4d0 1561 #endif
sca8er 3:0c3bcea5b4d0 1562
sca8er 3:0c3bcea5b4d0 1563 #ifndef GL_MESA_resize_buffers
sca8er 3:0c3bcea5b4d0 1564 #endif
sca8er 3:0c3bcea5b4d0 1565
sca8er 3:0c3bcea5b4d0 1566 #ifndef GL_MESA_window_pos
sca8er 3:0c3bcea5b4d0 1567 #endif
sca8er 3:0c3bcea5b4d0 1568
sca8er 3:0c3bcea5b4d0 1569 #ifndef GL_EXT_texture_compression_s3tc
sca8er 3:0c3bcea5b4d0 1570 #define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0
sca8er 3:0c3bcea5b4d0 1571 #define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1
sca8er 3:0c3bcea5b4d0 1572 #define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2
sca8er 3:0c3bcea5b4d0 1573 #define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3
sca8er 3:0c3bcea5b4d0 1574 #endif
sca8er 3:0c3bcea5b4d0 1575
sca8er 3:0c3bcea5b4d0 1576 #ifndef GL_IBM_cull_vertex
sca8er 3:0c3bcea5b4d0 1577 #define GL_CULL_VERTEX_IBM 103050
sca8er 3:0c3bcea5b4d0 1578 #endif
sca8er 3:0c3bcea5b4d0 1579
sca8er 3:0c3bcea5b4d0 1580 #ifndef GL_IBM_multimode_draw_arrays
sca8er 3:0c3bcea5b4d0 1581 #endif
sca8er 3:0c3bcea5b4d0 1582
sca8er 3:0c3bcea5b4d0 1583 #ifndef GL_IBM_vertex_array_lists
sca8er 3:0c3bcea5b4d0 1584 #define GL_VERTEX_ARRAY_LIST_IBM 103070
sca8er 3:0c3bcea5b4d0 1585 #define GL_NORMAL_ARRAY_LIST_IBM 103071
sca8er 3:0c3bcea5b4d0 1586 #define GL_COLOR_ARRAY_LIST_IBM 103072
sca8er 3:0c3bcea5b4d0 1587 #define GL_INDEX_ARRAY_LIST_IBM 103073
sca8er 3:0c3bcea5b4d0 1588 #define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074
sca8er 3:0c3bcea5b4d0 1589 #define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075
sca8er 3:0c3bcea5b4d0 1590 #define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076
sca8er 3:0c3bcea5b4d0 1591 #define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077
sca8er 3:0c3bcea5b4d0 1592 #define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080
sca8er 3:0c3bcea5b4d0 1593 #define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081
sca8er 3:0c3bcea5b4d0 1594 #define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082
sca8er 3:0c3bcea5b4d0 1595 #define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083
sca8er 3:0c3bcea5b4d0 1596 #define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084
sca8er 3:0c3bcea5b4d0 1597 #define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085
sca8er 3:0c3bcea5b4d0 1598 #define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086
sca8er 3:0c3bcea5b4d0 1599 #define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087
sca8er 3:0c3bcea5b4d0 1600 #endif
sca8er 3:0c3bcea5b4d0 1601
sca8er 3:0c3bcea5b4d0 1602 #ifndef GL_SGIX_subsample
sca8er 3:0c3bcea5b4d0 1603 #define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0
sca8er 3:0c3bcea5b4d0 1604 #define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1
sca8er 3:0c3bcea5b4d0 1605 #define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2
sca8er 3:0c3bcea5b4d0 1606 #define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3
sca8er 3:0c3bcea5b4d0 1607 #define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4
sca8er 3:0c3bcea5b4d0 1608 #endif
sca8er 3:0c3bcea5b4d0 1609
sca8er 3:0c3bcea5b4d0 1610 #ifndef GL_SGIX_ycrcb_subsample
sca8er 3:0c3bcea5b4d0 1611 #endif
sca8er 3:0c3bcea5b4d0 1612
sca8er 3:0c3bcea5b4d0 1613 #ifndef GL_SGIX_ycrcba
sca8er 3:0c3bcea5b4d0 1614 #define GL_YCRCB_SGIX 0x8318
sca8er 3:0c3bcea5b4d0 1615 #define GL_YCRCBA_SGIX 0x8319
sca8er 3:0c3bcea5b4d0 1616 #endif
sca8er 3:0c3bcea5b4d0 1617
sca8er 3:0c3bcea5b4d0 1618 #ifndef GL_SGI_depth_pass_instrument
sca8er 3:0c3bcea5b4d0 1619 #define GL_DEPTH_PASS_INSTRUMENT_SGIX 0x8310
sca8er 3:0c3bcea5b4d0 1620 #define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311
sca8er 3:0c3bcea5b4d0 1621 #define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312
sca8er 3:0c3bcea5b4d0 1622 #endif
sca8er 3:0c3bcea5b4d0 1623
sca8er 3:0c3bcea5b4d0 1624 #ifndef GL_3DFX_texture_compression_FXT1
sca8er 3:0c3bcea5b4d0 1625 #define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0
sca8er 3:0c3bcea5b4d0 1626 #define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1
sca8er 3:0c3bcea5b4d0 1627 #endif
sca8er 3:0c3bcea5b4d0 1628
sca8er 3:0c3bcea5b4d0 1629 #ifndef GL_3DFX_multisample
sca8er 3:0c3bcea5b4d0 1630 #define GL_MULTISAMPLE_3DFX 0x86B2
sca8er 3:0c3bcea5b4d0 1631 #define GL_SAMPLE_BUFFERS_3DFX 0x86B3
sca8er 3:0c3bcea5b4d0 1632 #define GL_SAMPLES_3DFX 0x86B4
sca8er 3:0c3bcea5b4d0 1633 #define GL_MULTISAMPLE_BIT_3DFX 0x20000000
sca8er 3:0c3bcea5b4d0 1634 #endif
sca8er 3:0c3bcea5b4d0 1635
sca8er 3:0c3bcea5b4d0 1636 #ifndef GL_3DFX_tbuffer
sca8er 3:0c3bcea5b4d0 1637 #endif
sca8er 3:0c3bcea5b4d0 1638
sca8er 3:0c3bcea5b4d0 1639 #ifndef GL_EXT_multisample
sca8er 3:0c3bcea5b4d0 1640 #define GL_MULTISAMPLE_EXT 0x809D
sca8er 3:0c3bcea5b4d0 1641 #define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E
sca8er 3:0c3bcea5b4d0 1642 #define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F
sca8er 3:0c3bcea5b4d0 1643 #define GL_SAMPLE_MASK_EXT 0x80A0
sca8er 3:0c3bcea5b4d0 1644 #define GL_1PASS_EXT 0x80A1
sca8er 3:0c3bcea5b4d0 1645 #define GL_2PASS_0_EXT 0x80A2
sca8er 3:0c3bcea5b4d0 1646 #define GL_2PASS_1_EXT 0x80A3
sca8er 3:0c3bcea5b4d0 1647 #define GL_4PASS_0_EXT 0x80A4
sca8er 3:0c3bcea5b4d0 1648 #define GL_4PASS_1_EXT 0x80A5
sca8er 3:0c3bcea5b4d0 1649 #define GL_4PASS_2_EXT 0x80A6
sca8er 3:0c3bcea5b4d0 1650 #define GL_4PASS_3_EXT 0x80A7
sca8er 3:0c3bcea5b4d0 1651 #define GL_SAMPLE_BUFFERS_EXT 0x80A8
sca8er 3:0c3bcea5b4d0 1652 #define GL_SAMPLES_EXT 0x80A9
sca8er 3:0c3bcea5b4d0 1653 #define GL_SAMPLE_MASK_VALUE_EXT 0x80AA
sca8er 3:0c3bcea5b4d0 1654 #define GL_SAMPLE_MASK_INVERT_EXT 0x80AB
sca8er 3:0c3bcea5b4d0 1655 #define GL_SAMPLE_PATTERN_EXT 0x80AC
sca8er 3:0c3bcea5b4d0 1656 #define GL_MULTISAMPLE_BIT_EXT 0x20000000
sca8er 3:0c3bcea5b4d0 1657 #endif
sca8er 3:0c3bcea5b4d0 1658
sca8er 3:0c3bcea5b4d0 1659 #ifndef GL_SGIX_vertex_preclip
sca8er 3:0c3bcea5b4d0 1660 #define GL_VERTEX_PRECLIP_SGIX 0x83EE
sca8er 3:0c3bcea5b4d0 1661 #define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF
sca8er 3:0c3bcea5b4d0 1662 #endif
sca8er 3:0c3bcea5b4d0 1663
sca8er 3:0c3bcea5b4d0 1664 #ifndef GL_SGIX_convolution_accuracy
sca8er 3:0c3bcea5b4d0 1665 #define GL_CONVOLUTION_HINT_SGIX 0x8316
sca8er 3:0c3bcea5b4d0 1666 #endif
sca8er 3:0c3bcea5b4d0 1667
sca8er 3:0c3bcea5b4d0 1668 #ifndef GL_SGIX_resample
sca8er 3:0c3bcea5b4d0 1669 #define GL_PACK_RESAMPLE_SGIX 0x842C
sca8er 3:0c3bcea5b4d0 1670 #define GL_UNPACK_RESAMPLE_SGIX 0x842D
sca8er 3:0c3bcea5b4d0 1671 #define GL_RESAMPLE_REPLICATE_SGIX 0x842E
sca8er 3:0c3bcea5b4d0 1672 #define GL_RESAMPLE_ZERO_FILL_SGIX 0x842F
sca8er 3:0c3bcea5b4d0 1673 #define GL_RESAMPLE_DECIMATE_SGIX 0x8430
sca8er 3:0c3bcea5b4d0 1674 #endif
sca8er 3:0c3bcea5b4d0 1675
sca8er 3:0c3bcea5b4d0 1676 #ifndef GL_SGIS_point_line_texgen
sca8er 3:0c3bcea5b4d0 1677 #define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0
sca8er 3:0c3bcea5b4d0 1678 #define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1
sca8er 3:0c3bcea5b4d0 1679 #define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2
sca8er 3:0c3bcea5b4d0 1680 #define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3
sca8er 3:0c3bcea5b4d0 1681 #define GL_EYE_POINT_SGIS 0x81F4
sca8er 3:0c3bcea5b4d0 1682 #define GL_OBJECT_POINT_SGIS 0x81F5
sca8er 3:0c3bcea5b4d0 1683 #define GL_EYE_LINE_SGIS 0x81F6
sca8er 3:0c3bcea5b4d0 1684 #define GL_OBJECT_LINE_SGIS 0x81F7
sca8er 3:0c3bcea5b4d0 1685 #endif
sca8er 3:0c3bcea5b4d0 1686
sca8er 3:0c3bcea5b4d0 1687 #ifndef GL_SGIS_texture_color_mask
sca8er 3:0c3bcea5b4d0 1688 #define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF
sca8er 3:0c3bcea5b4d0 1689 #endif
sca8er 3:0c3bcea5b4d0 1690
sca8er 3:0c3bcea5b4d0 1691 #ifndef GL_NV_fence
sca8er 3:0c3bcea5b4d0 1692 #define GL_ALL_COMPLETED_NV 0x84F2
sca8er 3:0c3bcea5b4d0 1693 #define GL_FENCE_STATUS_NV 0x84F3
sca8er 3:0c3bcea5b4d0 1694 #define GL_FENCE_CONDITION_NV 0x84F4
sca8er 3:0c3bcea5b4d0 1695 #endif
sca8er 3:0c3bcea5b4d0 1696
sca8er 3:0c3bcea5b4d0 1697 #ifndef GL_IBM_texture_mirrored_repeat
sca8er 3:0c3bcea5b4d0 1698 #define GL_MIRRORED_REPEAT_IBM 0x8370
sca8er 3:0c3bcea5b4d0 1699 #endif
sca8er 3:0c3bcea5b4d0 1700
sca8er 3:0c3bcea5b4d0 1701 #ifndef GL_NV_evaluators
sca8er 3:0c3bcea5b4d0 1702 #define GL_EVAL_2D_NV 0x86C0
sca8er 3:0c3bcea5b4d0 1703 #define GL_EVAL_TRIANGULAR_2D_NV 0x86C1
sca8er 3:0c3bcea5b4d0 1704 #define GL_MAP_TESSELLATION_NV 0x86C2
sca8er 3:0c3bcea5b4d0 1705 #define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3
sca8er 3:0c3bcea5b4d0 1706 #define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4
sca8er 3:0c3bcea5b4d0 1707 #define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5
sca8er 3:0c3bcea5b4d0 1708 #define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6
sca8er 3:0c3bcea5b4d0 1709 #define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7
sca8er 3:0c3bcea5b4d0 1710 #define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8
sca8er 3:0c3bcea5b4d0 1711 #define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9
sca8er 3:0c3bcea5b4d0 1712 #define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA
sca8er 3:0c3bcea5b4d0 1713 #define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB
sca8er 3:0c3bcea5b4d0 1714 #define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC
sca8er 3:0c3bcea5b4d0 1715 #define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD
sca8er 3:0c3bcea5b4d0 1716 #define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE
sca8er 3:0c3bcea5b4d0 1717 #define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF
sca8er 3:0c3bcea5b4d0 1718 #define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0
sca8er 3:0c3bcea5b4d0 1719 #define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1
sca8er 3:0c3bcea5b4d0 1720 #define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2
sca8er 3:0c3bcea5b4d0 1721 #define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3
sca8er 3:0c3bcea5b4d0 1722 #define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4
sca8er 3:0c3bcea5b4d0 1723 #define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5
sca8er 3:0c3bcea5b4d0 1724 #define GL_MAX_MAP_TESSELLATION_NV 0x86D6
sca8er 3:0c3bcea5b4d0 1725 #define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7
sca8er 3:0c3bcea5b4d0 1726 #endif
sca8er 3:0c3bcea5b4d0 1727
sca8er 3:0c3bcea5b4d0 1728 #ifndef GL_NV_packed_depth_stencil
sca8er 3:0c3bcea5b4d0 1729 #define GL_DEPTH_STENCIL_NV 0x84F9
sca8er 3:0c3bcea5b4d0 1730 #define GL_UNSIGNED_INT_24_8_NV 0x84FA
sca8er 3:0c3bcea5b4d0 1731 #endif
sca8er 3:0c3bcea5b4d0 1732
sca8er 3:0c3bcea5b4d0 1733 #ifndef GL_NV_register_combiners2
sca8er 3:0c3bcea5b4d0 1734 #define GL_PER_STAGE_CONSTANTS_NV 0x8535
sca8er 3:0c3bcea5b4d0 1735 #endif
sca8er 3:0c3bcea5b4d0 1736
sca8er 3:0c3bcea5b4d0 1737 #ifndef GL_NV_texture_compression_vtc
sca8er 3:0c3bcea5b4d0 1738 #endif
sca8er 3:0c3bcea5b4d0 1739
sca8er 3:0c3bcea5b4d0 1740 #ifndef GL_NV_texture_rectangle
sca8er 3:0c3bcea5b4d0 1741 #define GL_TEXTURE_RECTANGLE_NV 0x84F5
sca8er 3:0c3bcea5b4d0 1742 #define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6
sca8er 3:0c3bcea5b4d0 1743 #define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7
sca8er 3:0c3bcea5b4d0 1744 #define GL_MAX_TEXTURE_RECTANGLE_SIZE_NV 0x84F8
sca8er 3:0c3bcea5b4d0 1745 #endif
sca8er 3:0c3bcea5b4d0 1746
sca8er 3:0c3bcea5b4d0 1747 #ifndef GL_NV_texture_shader
sca8er 3:0c3bcea5b4d0 1748 #define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C
sca8er 3:0c3bcea5b4d0 1749 #define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D
sca8er 3:0c3bcea5b4d0 1750 #define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E
sca8er 3:0c3bcea5b4d0 1751 #define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9
sca8er 3:0c3bcea5b4d0 1752 #define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA
sca8er 3:0c3bcea5b4d0 1753 #define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB
sca8er 3:0c3bcea5b4d0 1754 #define GL_DSDT_MAG_INTENSITY_NV 0x86DC
sca8er 3:0c3bcea5b4d0 1755 #define GL_SHADER_CONSISTENT_NV 0x86DD
sca8er 3:0c3bcea5b4d0 1756 #define GL_TEXTURE_SHADER_NV 0x86DE
sca8er 3:0c3bcea5b4d0 1757 #define GL_SHADER_OPERATION_NV 0x86DF
sca8er 3:0c3bcea5b4d0 1758 #define GL_CULL_MODES_NV 0x86E0
sca8er 3:0c3bcea5b4d0 1759 #define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1
sca8er 3:0c3bcea5b4d0 1760 #define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2
sca8er 3:0c3bcea5b4d0 1761 #define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3
sca8er 3:0c3bcea5b4d0 1762 #define GL_OFFSET_TEXTURE_2D_MATRIX_NV GL_OFFSET_TEXTURE_MATRIX_NV
sca8er 3:0c3bcea5b4d0 1763 #define GL_OFFSET_TEXTURE_2D_SCALE_NV GL_OFFSET_TEXTURE_SCALE_NV
sca8er 3:0c3bcea5b4d0 1764 #define GL_OFFSET_TEXTURE_2D_BIAS_NV GL_OFFSET_TEXTURE_BIAS_NV
sca8er 3:0c3bcea5b4d0 1765 #define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4
sca8er 3:0c3bcea5b4d0 1766 #define GL_CONST_EYE_NV 0x86E5
sca8er 3:0c3bcea5b4d0 1767 #define GL_PASS_THROUGH_NV 0x86E6
sca8er 3:0c3bcea5b4d0 1768 #define GL_CULL_FRAGMENT_NV 0x86E7
sca8er 3:0c3bcea5b4d0 1769 #define GL_OFFSET_TEXTURE_2D_NV 0x86E8
sca8er 3:0c3bcea5b4d0 1770 #define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9
sca8er 3:0c3bcea5b4d0 1771 #define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA
sca8er 3:0c3bcea5b4d0 1772 #define GL_DOT_PRODUCT_NV 0x86EC
sca8er 3:0c3bcea5b4d0 1773 #define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED
sca8er 3:0c3bcea5b4d0 1774 #define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE
sca8er 3:0c3bcea5b4d0 1775 #define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0
sca8er 3:0c3bcea5b4d0 1776 #define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1
sca8er 3:0c3bcea5b4d0 1777 #define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2
sca8er 3:0c3bcea5b4d0 1778 #define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3
sca8er 3:0c3bcea5b4d0 1779 #define GL_HILO_NV 0x86F4
sca8er 3:0c3bcea5b4d0 1780 #define GL_DSDT_NV 0x86F5
sca8er 3:0c3bcea5b4d0 1781 #define GL_DSDT_MAG_NV 0x86F6
sca8er 3:0c3bcea5b4d0 1782 #define GL_DSDT_MAG_VIB_NV 0x86F7
sca8er 3:0c3bcea5b4d0 1783 #define GL_HILO16_NV 0x86F8
sca8er 3:0c3bcea5b4d0 1784 #define GL_SIGNED_HILO_NV 0x86F9
sca8er 3:0c3bcea5b4d0 1785 #define GL_SIGNED_HILO16_NV 0x86FA
sca8er 3:0c3bcea5b4d0 1786 #define GL_SIGNED_RGBA_NV 0x86FB
sca8er 3:0c3bcea5b4d0 1787 #define GL_SIGNED_RGBA8_NV 0x86FC
sca8er 3:0c3bcea5b4d0 1788 #define GL_SIGNED_RGB_NV 0x86FE
sca8er 3:0c3bcea5b4d0 1789 #define GL_SIGNED_RGB8_NV 0x86FF
sca8er 3:0c3bcea5b4d0 1790 #define GL_SIGNED_LUMINANCE_NV 0x8701
sca8er 3:0c3bcea5b4d0 1791 #define GL_SIGNED_LUMINANCE8_NV 0x8702
sca8er 3:0c3bcea5b4d0 1792 #define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703
sca8er 3:0c3bcea5b4d0 1793 #define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704
sca8er 3:0c3bcea5b4d0 1794 #define GL_SIGNED_ALPHA_NV 0x8705
sca8er 3:0c3bcea5b4d0 1795 #define GL_SIGNED_ALPHA8_NV 0x8706
sca8er 3:0c3bcea5b4d0 1796 #define GL_SIGNED_INTENSITY_NV 0x8707
sca8er 3:0c3bcea5b4d0 1797 #define GL_SIGNED_INTENSITY8_NV 0x8708
sca8er 3:0c3bcea5b4d0 1798 #define GL_DSDT8_NV 0x8709
sca8er 3:0c3bcea5b4d0 1799 #define GL_DSDT8_MAG8_NV 0x870A
sca8er 3:0c3bcea5b4d0 1800 #define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B
sca8er 3:0c3bcea5b4d0 1801 #define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C
sca8er 3:0c3bcea5b4d0 1802 #define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D
sca8er 3:0c3bcea5b4d0 1803 #define GL_HI_SCALE_NV 0x870E
sca8er 3:0c3bcea5b4d0 1804 #define GL_LO_SCALE_NV 0x870F
sca8er 3:0c3bcea5b4d0 1805 #define GL_DS_SCALE_NV 0x8710
sca8er 3:0c3bcea5b4d0 1806 #define GL_DT_SCALE_NV 0x8711
sca8er 3:0c3bcea5b4d0 1807 #define GL_MAGNITUDE_SCALE_NV 0x8712
sca8er 3:0c3bcea5b4d0 1808 #define GL_VIBRANCE_SCALE_NV 0x8713
sca8er 3:0c3bcea5b4d0 1809 #define GL_HI_BIAS_NV 0x8714
sca8er 3:0c3bcea5b4d0 1810 #define GL_LO_BIAS_NV 0x8715
sca8er 3:0c3bcea5b4d0 1811 #define GL_DS_BIAS_NV 0x8716
sca8er 3:0c3bcea5b4d0 1812 #define GL_DT_BIAS_NV 0x8717
sca8er 3:0c3bcea5b4d0 1813 #define GL_MAGNITUDE_BIAS_NV 0x8718
sca8er 3:0c3bcea5b4d0 1814 #define GL_VIBRANCE_BIAS_NV 0x8719
sca8er 3:0c3bcea5b4d0 1815 #define GL_TEXTURE_BORDER_VALUES_NV 0x871A
sca8er 3:0c3bcea5b4d0 1816 #define GL_TEXTURE_HI_SIZE_NV 0x871B
sca8er 3:0c3bcea5b4d0 1817 #define GL_TEXTURE_LO_SIZE_NV 0x871C
sca8er 3:0c3bcea5b4d0 1818 #define GL_TEXTURE_DS_SIZE_NV 0x871D
sca8er 3:0c3bcea5b4d0 1819 #define GL_TEXTURE_DT_SIZE_NV 0x871E
sca8er 3:0c3bcea5b4d0 1820 #define GL_TEXTURE_MAG_SIZE_NV 0x871F
sca8er 3:0c3bcea5b4d0 1821 #endif
sca8er 3:0c3bcea5b4d0 1822
sca8er 3:0c3bcea5b4d0 1823 #ifndef GL_NV_texture_shader2
sca8er 3:0c3bcea5b4d0 1824 #define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF
sca8er 3:0c3bcea5b4d0 1825 #endif
sca8er 3:0c3bcea5b4d0 1826
sca8er 3:0c3bcea5b4d0 1827 #ifndef GL_NV_vertex_array_range2
sca8er 3:0c3bcea5b4d0 1828 #define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533
sca8er 3:0c3bcea5b4d0 1829 #endif
sca8er 3:0c3bcea5b4d0 1830
sca8er 3:0c3bcea5b4d0 1831 #ifndef GL_NV_vertex_program
sca8er 3:0c3bcea5b4d0 1832 #define GL_VERTEX_PROGRAM_NV 0x8620
sca8er 3:0c3bcea5b4d0 1833 #define GL_VERTEX_STATE_PROGRAM_NV 0x8621
sca8er 3:0c3bcea5b4d0 1834 #define GL_ATTRIB_ARRAY_SIZE_NV 0x8623
sca8er 3:0c3bcea5b4d0 1835 #define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624
sca8er 3:0c3bcea5b4d0 1836 #define GL_ATTRIB_ARRAY_TYPE_NV 0x8625
sca8er 3:0c3bcea5b4d0 1837 #define GL_CURRENT_ATTRIB_NV 0x8626
sca8er 3:0c3bcea5b4d0 1838 #define GL_PROGRAM_LENGTH_NV 0x8627
sca8er 3:0c3bcea5b4d0 1839 #define GL_PROGRAM_STRING_NV 0x8628
sca8er 3:0c3bcea5b4d0 1840 #define GL_MODELVIEW_PROJECTION_NV 0x8629
sca8er 3:0c3bcea5b4d0 1841 #define GL_IDENTITY_NV 0x862A
sca8er 3:0c3bcea5b4d0 1842 #define GL_INVERSE_NV 0x862B
sca8er 3:0c3bcea5b4d0 1843 #define GL_TRANSPOSE_NV 0x862C
sca8er 3:0c3bcea5b4d0 1844 #define GL_INVERSE_TRANSPOSE_NV 0x862D
sca8er 3:0c3bcea5b4d0 1845 #define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E
sca8er 3:0c3bcea5b4d0 1846 #define GL_MAX_TRACK_MATRICES_NV 0x862F
sca8er 3:0c3bcea5b4d0 1847 #define GL_MATRIX0_NV 0x8630
sca8er 3:0c3bcea5b4d0 1848 #define GL_MATRIX1_NV 0x8631
sca8er 3:0c3bcea5b4d0 1849 #define GL_MATRIX2_NV 0x8632
sca8er 3:0c3bcea5b4d0 1850 #define GL_MATRIX3_NV 0x8633
sca8er 3:0c3bcea5b4d0 1851 #define GL_MATRIX4_NV 0x8634
sca8er 3:0c3bcea5b4d0 1852 #define GL_MATRIX5_NV 0x8635
sca8er 3:0c3bcea5b4d0 1853 #define GL_MATRIX6_NV 0x8636
sca8er 3:0c3bcea5b4d0 1854 #define GL_MATRIX7_NV 0x8637
sca8er 3:0c3bcea5b4d0 1855 #define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640
sca8er 3:0c3bcea5b4d0 1856 #define GL_CURRENT_MATRIX_NV 0x8641
sca8er 3:0c3bcea5b4d0 1857 #define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642
sca8er 3:0c3bcea5b4d0 1858 #define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643
sca8er 3:0c3bcea5b4d0 1859 #define GL_PROGRAM_PARAMETER_NV 0x8644
sca8er 3:0c3bcea5b4d0 1860 #define GL_ATTRIB_ARRAY_POINTER_NV 0x8645
sca8er 3:0c3bcea5b4d0 1861 #define GL_PROGRAM_TARGET_NV 0x8646
sca8er 3:0c3bcea5b4d0 1862 #define GL_PROGRAM_RESIDENT_NV 0x8647
sca8er 3:0c3bcea5b4d0 1863 #define GL_TRACK_MATRIX_NV 0x8648
sca8er 3:0c3bcea5b4d0 1864 #define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649
sca8er 3:0c3bcea5b4d0 1865 #define GL_VERTEX_PROGRAM_BINDING_NV 0x864A
sca8er 3:0c3bcea5b4d0 1866 #define GL_PROGRAM_ERROR_POSITION_NV 0x864B
sca8er 3:0c3bcea5b4d0 1867 #define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650
sca8er 3:0c3bcea5b4d0 1868 #define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651
sca8er 3:0c3bcea5b4d0 1869 #define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652
sca8er 3:0c3bcea5b4d0 1870 #define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653
sca8er 3:0c3bcea5b4d0 1871 #define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654
sca8er 3:0c3bcea5b4d0 1872 #define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655
sca8er 3:0c3bcea5b4d0 1873 #define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656
sca8er 3:0c3bcea5b4d0 1874 #define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657
sca8er 3:0c3bcea5b4d0 1875 #define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658
sca8er 3:0c3bcea5b4d0 1876 #define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659
sca8er 3:0c3bcea5b4d0 1877 #define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A
sca8er 3:0c3bcea5b4d0 1878 #define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B
sca8er 3:0c3bcea5b4d0 1879 #define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C
sca8er 3:0c3bcea5b4d0 1880 #define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D
sca8er 3:0c3bcea5b4d0 1881 #define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E
sca8er 3:0c3bcea5b4d0 1882 #define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F
sca8er 3:0c3bcea5b4d0 1883 #define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660
sca8er 3:0c3bcea5b4d0 1884 #define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661
sca8er 3:0c3bcea5b4d0 1885 #define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662
sca8er 3:0c3bcea5b4d0 1886 #define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663
sca8er 3:0c3bcea5b4d0 1887 #define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664
sca8er 3:0c3bcea5b4d0 1888 #define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665
sca8er 3:0c3bcea5b4d0 1889 #define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666
sca8er 3:0c3bcea5b4d0 1890 #define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667
sca8er 3:0c3bcea5b4d0 1891 #define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668
sca8er 3:0c3bcea5b4d0 1892 #define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669
sca8er 3:0c3bcea5b4d0 1893 #define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A
sca8er 3:0c3bcea5b4d0 1894 #define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B
sca8er 3:0c3bcea5b4d0 1895 #define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C
sca8er 3:0c3bcea5b4d0 1896 #define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D
sca8er 3:0c3bcea5b4d0 1897 #define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E
sca8er 3:0c3bcea5b4d0 1898 #define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F
sca8er 3:0c3bcea5b4d0 1899 #define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670
sca8er 3:0c3bcea5b4d0 1900 #define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671
sca8er 3:0c3bcea5b4d0 1901 #define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672
sca8er 3:0c3bcea5b4d0 1902 #define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673
sca8er 3:0c3bcea5b4d0 1903 #define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674
sca8er 3:0c3bcea5b4d0 1904 #define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675
sca8er 3:0c3bcea5b4d0 1905 #define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676
sca8er 3:0c3bcea5b4d0 1906 #define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677
sca8er 3:0c3bcea5b4d0 1907 #define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678
sca8er 3:0c3bcea5b4d0 1908 #define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679
sca8er 3:0c3bcea5b4d0 1909 #define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A
sca8er 3:0c3bcea5b4d0 1910 #define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B
sca8er 3:0c3bcea5b4d0 1911 #define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C
sca8er 3:0c3bcea5b4d0 1912 #define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D
sca8er 3:0c3bcea5b4d0 1913 #define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E
sca8er 3:0c3bcea5b4d0 1914 #define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F
sca8er 3:0c3bcea5b4d0 1915 #endif
sca8er 3:0c3bcea5b4d0 1916
sca8er 3:0c3bcea5b4d0 1917 #ifndef GL_SGIX_texture_coordinate_clamp
sca8er 3:0c3bcea5b4d0 1918 #define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369
sca8er 3:0c3bcea5b4d0 1919 #define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A
sca8er 3:0c3bcea5b4d0 1920 #define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B
sca8er 3:0c3bcea5b4d0 1921 #endif
sca8er 3:0c3bcea5b4d0 1922
sca8er 3:0c3bcea5b4d0 1923 #ifndef GL_SGIX_scalebias_hint
sca8er 3:0c3bcea5b4d0 1924 #define GL_SCALEBIAS_HINT_SGIX 0x8322
sca8er 3:0c3bcea5b4d0 1925 #endif
sca8er 3:0c3bcea5b4d0 1926
sca8er 3:0c3bcea5b4d0 1927 #ifndef GL_OML_interlace
sca8er 3:0c3bcea5b4d0 1928 #define GL_INTERLACE_OML 0x8980
sca8er 3:0c3bcea5b4d0 1929 #define GL_INTERLACE_READ_OML 0x8981
sca8er 3:0c3bcea5b4d0 1930 #endif
sca8er 3:0c3bcea5b4d0 1931
sca8er 3:0c3bcea5b4d0 1932 #ifndef GL_OML_subsample
sca8er 3:0c3bcea5b4d0 1933 #define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982
sca8er 3:0c3bcea5b4d0 1934 #define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983
sca8er 3:0c3bcea5b4d0 1935 #endif
sca8er 3:0c3bcea5b4d0 1936
sca8er 3:0c3bcea5b4d0 1937 #ifndef GL_OML_resample
sca8er 3:0c3bcea5b4d0 1938 #define GL_PACK_RESAMPLE_OML 0x8984
sca8er 3:0c3bcea5b4d0 1939 #define GL_UNPACK_RESAMPLE_OML 0x8985
sca8er 3:0c3bcea5b4d0 1940 #define GL_RESAMPLE_REPLICATE_OML 0x8986
sca8er 3:0c3bcea5b4d0 1941 #define GL_RESAMPLE_ZERO_FILL_OML 0x8987
sca8er 3:0c3bcea5b4d0 1942 #define GL_RESAMPLE_AVERAGE_OML 0x8988
sca8er 3:0c3bcea5b4d0 1943 #define GL_RESAMPLE_DECIMATE_OML 0x8989
sca8er 3:0c3bcea5b4d0 1944 #endif
sca8er 3:0c3bcea5b4d0 1945
sca8er 3:0c3bcea5b4d0 1946 #ifndef GL_NV_copy_depth_to_color
sca8er 3:0c3bcea5b4d0 1947 #define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E
sca8er 3:0c3bcea5b4d0 1948 #define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F
sca8er 3:0c3bcea5b4d0 1949 #endif
sca8er 3:0c3bcea5b4d0 1950
sca8er 3:0c3bcea5b4d0 1951 #ifndef GL_ATI_envmap_bumpmap
sca8er 3:0c3bcea5b4d0 1952 #define GL_BUMP_ROT_MATRIX_ATI 0x8775
sca8er 3:0c3bcea5b4d0 1953 #define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776
sca8er 3:0c3bcea5b4d0 1954 #define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777
sca8er 3:0c3bcea5b4d0 1955 #define GL_BUMP_TEX_UNITS_ATI 0x8778
sca8er 3:0c3bcea5b4d0 1956 #define GL_DUDV_ATI 0x8779
sca8er 3:0c3bcea5b4d0 1957 #define GL_DU8DV8_ATI 0x877A
sca8er 3:0c3bcea5b4d0 1958 #define GL_BUMP_ENVMAP_ATI 0x877B
sca8er 3:0c3bcea5b4d0 1959 #define GL_BUMP_TARGET_ATI 0x877C
sca8er 3:0c3bcea5b4d0 1960 #endif
sca8er 3:0c3bcea5b4d0 1961
sca8er 3:0c3bcea5b4d0 1962 #ifndef GL_ATI_fragment_shader
sca8er 3:0c3bcea5b4d0 1963 #define GL_FRAGMENT_SHADER_ATI 0x8920
sca8er 3:0c3bcea5b4d0 1964 #define GL_REG_0_ATI 0x8921
sca8er 3:0c3bcea5b4d0 1965 #define GL_REG_1_ATI 0x8922
sca8er 3:0c3bcea5b4d0 1966 #define GL_REG_2_ATI 0x8923
sca8er 3:0c3bcea5b4d0 1967 #define GL_REG_3_ATI 0x8924
sca8er 3:0c3bcea5b4d0 1968 #define GL_REG_4_ATI 0x8925
sca8er 3:0c3bcea5b4d0 1969 #define GL_REG_5_ATI 0x8926
sca8er 3:0c3bcea5b4d0 1970 #define GL_REG_6_ATI 0x8927
sca8er 3:0c3bcea5b4d0 1971 #define GL_REG_7_ATI 0x8928
sca8er 3:0c3bcea5b4d0 1972 #define GL_REG_8_ATI 0x8929
sca8er 3:0c3bcea5b4d0 1973 #define GL_REG_9_ATI 0x892A
sca8er 3:0c3bcea5b4d0 1974 #define GL_REG_10_ATI 0x892B
sca8er 3:0c3bcea5b4d0 1975 #define GL_REG_11_ATI 0x892C
sca8er 3:0c3bcea5b4d0 1976 #define GL_REG_12_ATI 0x892D
sca8er 3:0c3bcea5b4d0 1977 #define GL_REG_13_ATI 0x892E
sca8er 3:0c3bcea5b4d0 1978 #define GL_REG_14_ATI 0x892F
sca8er 3:0c3bcea5b4d0 1979 #define GL_REG_15_ATI 0x8930
sca8er 3:0c3bcea5b4d0 1980 #define GL_REG_16_ATI 0x8931
sca8er 3:0c3bcea5b4d0 1981 #define GL_REG_17_ATI 0x8932
sca8er 3:0c3bcea5b4d0 1982 #define GL_REG_18_ATI 0x8933
sca8er 3:0c3bcea5b4d0 1983 #define GL_REG_19_ATI 0x8934
sca8er 3:0c3bcea5b4d0 1984 #define GL_REG_20_ATI 0x8935
sca8er 3:0c3bcea5b4d0 1985 #define GL_REG_21_ATI 0x8936
sca8er 3:0c3bcea5b4d0 1986 #define GL_REG_22_ATI 0x8937
sca8er 3:0c3bcea5b4d0 1987 #define GL_REG_23_ATI 0x8938
sca8er 3:0c3bcea5b4d0 1988 #define GL_REG_24_ATI 0x8939
sca8er 3:0c3bcea5b4d0 1989 #define GL_REG_25_ATI 0x893A
sca8er 3:0c3bcea5b4d0 1990 #define GL_REG_26_ATI 0x893B
sca8er 3:0c3bcea5b4d0 1991 #define GL_REG_27_ATI 0x893C
sca8er 3:0c3bcea5b4d0 1992 #define GL_REG_28_ATI 0x893D
sca8er 3:0c3bcea5b4d0 1993 #define GL_REG_29_ATI 0x893E
sca8er 3:0c3bcea5b4d0 1994 #define GL_REG_30_ATI 0x893F
sca8er 3:0c3bcea5b4d0 1995 #define GL_REG_31_ATI 0x8940
sca8er 3:0c3bcea5b4d0 1996 #define GL_CON_0_ATI 0x8941
sca8er 3:0c3bcea5b4d0 1997 #define GL_CON_1_ATI 0x8942
sca8er 3:0c3bcea5b4d0 1998 #define GL_CON_2_ATI 0x8943
sca8er 3:0c3bcea5b4d0 1999 #define GL_CON_3_ATI 0x8944
sca8er 3:0c3bcea5b4d0 2000 #define GL_CON_4_ATI 0x8945
sca8er 3:0c3bcea5b4d0 2001 #define GL_CON_5_ATI 0x8946
sca8er 3:0c3bcea5b4d0 2002 #define GL_CON_6_ATI 0x8947
sca8er 3:0c3bcea5b4d0 2003 #define GL_CON_7_ATI 0x8948
sca8er 3:0c3bcea5b4d0 2004 #define GL_CON_8_ATI 0x8949
sca8er 3:0c3bcea5b4d0 2005 #define GL_CON_9_ATI 0x894A
sca8er 3:0c3bcea5b4d0 2006 #define GL_CON_10_ATI 0x894B
sca8er 3:0c3bcea5b4d0 2007 #define GL_CON_11_ATI 0x894C
sca8er 3:0c3bcea5b4d0 2008 #define GL_CON_12_ATI 0x894D
sca8er 3:0c3bcea5b4d0 2009 #define GL_CON_13_ATI 0x894E
sca8er 3:0c3bcea5b4d0 2010 #define GL_CON_14_ATI 0x894F
sca8er 3:0c3bcea5b4d0 2011 #define GL_CON_15_ATI 0x8950
sca8er 3:0c3bcea5b4d0 2012 #define GL_CON_16_ATI 0x8951
sca8er 3:0c3bcea5b4d0 2013 #define GL_CON_17_ATI 0x8952
sca8er 3:0c3bcea5b4d0 2014 #define GL_CON_18_ATI 0x8953
sca8er 3:0c3bcea5b4d0 2015 #define GL_CON_19_ATI 0x8954
sca8er 3:0c3bcea5b4d0 2016 #define GL_CON_20_ATI 0x8955
sca8er 3:0c3bcea5b4d0 2017 #define GL_CON_21_ATI 0x8956
sca8er 3:0c3bcea5b4d0 2018 #define GL_CON_22_ATI 0x8957
sca8er 3:0c3bcea5b4d0 2019 #define GL_CON_23_ATI 0x8958
sca8er 3:0c3bcea5b4d0 2020 #define GL_CON_24_ATI 0x8959
sca8er 3:0c3bcea5b4d0 2021 #define GL_CON_25_ATI 0x895A
sca8er 3:0c3bcea5b4d0 2022 #define GL_CON_26_ATI 0x895B
sca8er 3:0c3bcea5b4d0 2023 #define GL_CON_27_ATI 0x895C
sca8er 3:0c3bcea5b4d0 2024 #define GL_CON_28_ATI 0x895D
sca8er 3:0c3bcea5b4d0 2025 #define GL_CON_29_ATI 0x895E
sca8er 3:0c3bcea5b4d0 2026 #define GL_CON_30_ATI 0x895F
sca8er 3:0c3bcea5b4d0 2027 #define GL_CON_31_ATI 0x8960
sca8er 3:0c3bcea5b4d0 2028 #define GL_MOV_ATI 0x8961
sca8er 3:0c3bcea5b4d0 2029 #define GL_ADD_ATI 0x8963
sca8er 3:0c3bcea5b4d0 2030 #define GL_MUL_ATI 0x8964
sca8er 3:0c3bcea5b4d0 2031 #define GL_SUB_ATI 0x8965
sca8er 3:0c3bcea5b4d0 2032 #define GL_DOT3_ATI 0x8966
sca8er 3:0c3bcea5b4d0 2033 #define GL_DOT4_ATI 0x8967
sca8er 3:0c3bcea5b4d0 2034 #define GL_MAD_ATI 0x8968
sca8er 3:0c3bcea5b4d0 2035 #define GL_LERP_ATI 0x8969
sca8er 3:0c3bcea5b4d0 2036 #define GL_CND_ATI 0x896A
sca8er 3:0c3bcea5b4d0 2037 #define GL_CND0_ATI 0x896B
sca8er 3:0c3bcea5b4d0 2038 #define GL_DOT2_ADD_ATI 0x896C
sca8er 3:0c3bcea5b4d0 2039 #define GL_SECONDARY_INTERPOLATOR_ATI 0x896D
sca8er 3:0c3bcea5b4d0 2040 #define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E
sca8er 3:0c3bcea5b4d0 2041 #define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F
sca8er 3:0c3bcea5b4d0 2042 #define GL_NUM_PASSES_ATI 0x8970
sca8er 3:0c3bcea5b4d0 2043 #define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971
sca8er 3:0c3bcea5b4d0 2044 #define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972
sca8er 3:0c3bcea5b4d0 2045 #define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973
sca8er 3:0c3bcea5b4d0 2046 #define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974
sca8er 3:0c3bcea5b4d0 2047 #define GL_COLOR_ALPHA_PAIRING_ATI 0x8975
sca8er 3:0c3bcea5b4d0 2048 #define GL_SWIZZLE_STR_ATI 0x8976
sca8er 3:0c3bcea5b4d0 2049 #define GL_SWIZZLE_STQ_ATI 0x8977
sca8er 3:0c3bcea5b4d0 2050 #define GL_SWIZZLE_STR_DR_ATI 0x8978
sca8er 3:0c3bcea5b4d0 2051 #define GL_SWIZZLE_STQ_DQ_ATI 0x8979
sca8er 3:0c3bcea5b4d0 2052 #define GL_SWIZZLE_STRQ_ATI 0x897A
sca8er 3:0c3bcea5b4d0 2053 #define GL_SWIZZLE_STRQ_DQ_ATI 0x897B
sca8er 3:0c3bcea5b4d0 2054 #define GL_RED_BIT_ATI 0x00000001
sca8er 3:0c3bcea5b4d0 2055 #define GL_GREEN_BIT_ATI 0x00000002
sca8er 3:0c3bcea5b4d0 2056 #define GL_BLUE_BIT_ATI 0x00000004
sca8er 3:0c3bcea5b4d0 2057 #define GL_2X_BIT_ATI 0x00000001
sca8er 3:0c3bcea5b4d0 2058 #define GL_4X_BIT_ATI 0x00000002
sca8er 3:0c3bcea5b4d0 2059 #define GL_8X_BIT_ATI 0x00000004
sca8er 3:0c3bcea5b4d0 2060 #define GL_HALF_BIT_ATI 0x00000008
sca8er 3:0c3bcea5b4d0 2061 #define GL_QUARTER_BIT_ATI 0x00000010
sca8er 3:0c3bcea5b4d0 2062 #define GL_EIGHTH_BIT_ATI 0x00000020
sca8er 3:0c3bcea5b4d0 2063 #define GL_SATURATE_BIT_ATI 0x00000040
sca8er 3:0c3bcea5b4d0 2064 #define GL_COMP_BIT_ATI 0x00000002
sca8er 3:0c3bcea5b4d0 2065 #define GL_NEGATE_BIT_ATI 0x00000004
sca8er 3:0c3bcea5b4d0 2066 #define GL_BIAS_BIT_ATI 0x00000008
sca8er 3:0c3bcea5b4d0 2067 #endif
sca8er 3:0c3bcea5b4d0 2068
sca8er 3:0c3bcea5b4d0 2069 #ifndef GL_ATI_pn_triangles
sca8er 3:0c3bcea5b4d0 2070 #define GL_PN_TRIANGLES_ATI 0x87F0
sca8er 3:0c3bcea5b4d0 2071 #define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1
sca8er 3:0c3bcea5b4d0 2072 #define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2
sca8er 3:0c3bcea5b4d0 2073 #define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3
sca8er 3:0c3bcea5b4d0 2074 #define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4
sca8er 3:0c3bcea5b4d0 2075 #define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5
sca8er 3:0c3bcea5b4d0 2076 #define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6
sca8er 3:0c3bcea5b4d0 2077 #define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7
sca8er 3:0c3bcea5b4d0 2078 #define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8
sca8er 3:0c3bcea5b4d0 2079 #endif
sca8er 3:0c3bcea5b4d0 2080
sca8er 3:0c3bcea5b4d0 2081 #ifndef GL_ATI_vertex_array_object
sca8er 3:0c3bcea5b4d0 2082 #define GL_STATIC_ATI 0x8760
sca8er 3:0c3bcea5b4d0 2083 #define GL_DYNAMIC_ATI 0x8761
sca8er 3:0c3bcea5b4d0 2084 #define GL_PRESERVE_ATI 0x8762
sca8er 3:0c3bcea5b4d0 2085 #define GL_DISCARD_ATI 0x8763
sca8er 3:0c3bcea5b4d0 2086 #define GL_OBJECT_BUFFER_SIZE_ATI 0x8764
sca8er 3:0c3bcea5b4d0 2087 #define GL_OBJECT_BUFFER_USAGE_ATI 0x8765
sca8er 3:0c3bcea5b4d0 2088 #define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766
sca8er 3:0c3bcea5b4d0 2089 #define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767
sca8er 3:0c3bcea5b4d0 2090 #endif
sca8er 3:0c3bcea5b4d0 2091
sca8er 3:0c3bcea5b4d0 2092 #ifndef GL_EXT_vertex_shader
sca8er 3:0c3bcea5b4d0 2093 #define GL_VERTEX_SHADER_EXT 0x8780
sca8er 3:0c3bcea5b4d0 2094 #define GL_VERTEX_SHADER_BINDING_EXT 0x8781
sca8er 3:0c3bcea5b4d0 2095 #define GL_OP_INDEX_EXT 0x8782
sca8er 3:0c3bcea5b4d0 2096 #define GL_OP_NEGATE_EXT 0x8783
sca8er 3:0c3bcea5b4d0 2097 #define GL_OP_DOT3_EXT 0x8784
sca8er 3:0c3bcea5b4d0 2098 #define GL_OP_DOT4_EXT 0x8785
sca8er 3:0c3bcea5b4d0 2099 #define GL_OP_MUL_EXT 0x8786
sca8er 3:0c3bcea5b4d0 2100 #define GL_OP_ADD_EXT 0x8787
sca8er 3:0c3bcea5b4d0 2101 #define GL_OP_MADD_EXT 0x8788
sca8er 3:0c3bcea5b4d0 2102 #define GL_OP_FRAC_EXT 0x8789
sca8er 3:0c3bcea5b4d0 2103 #define GL_OP_MAX_EXT 0x878A
sca8er 3:0c3bcea5b4d0 2104 #define GL_OP_MIN_EXT 0x878B
sca8er 3:0c3bcea5b4d0 2105 #define GL_OP_SET_GE_EXT 0x878C
sca8er 3:0c3bcea5b4d0 2106 #define GL_OP_SET_LT_EXT 0x878D
sca8er 3:0c3bcea5b4d0 2107 #define GL_OP_CLAMP_EXT 0x878E
sca8er 3:0c3bcea5b4d0 2108 #define GL_OP_FLOOR_EXT 0x878F
sca8er 3:0c3bcea5b4d0 2109 #define GL_OP_ROUND_EXT 0x8790
sca8er 3:0c3bcea5b4d0 2110 #define GL_OP_EXP_BASE_2_EXT 0x8791
sca8er 3:0c3bcea5b4d0 2111 #define GL_OP_LOG_BASE_2_EXT 0x8792
sca8er 3:0c3bcea5b4d0 2112 #define GL_OP_POWER_EXT 0x8793
sca8er 3:0c3bcea5b4d0 2113 #define GL_OP_RECIP_EXT 0x8794
sca8er 3:0c3bcea5b4d0 2114 #define GL_OP_RECIP_SQRT_EXT 0x8795
sca8er 3:0c3bcea5b4d0 2115 #define GL_OP_SUB_EXT 0x8796
sca8er 3:0c3bcea5b4d0 2116 #define GL_OP_CROSS_PRODUCT_EXT 0x8797
sca8er 3:0c3bcea5b4d0 2117 #define GL_OP_MULTIPLY_MATRIX_EXT 0x8798
sca8er 3:0c3bcea5b4d0 2118 #define GL_OP_MOV_EXT 0x8799
sca8er 3:0c3bcea5b4d0 2119 #define GL_OUTPUT_VERTEX_EXT 0x879A
sca8er 3:0c3bcea5b4d0 2120 #define GL_OUTPUT_COLOR0_EXT 0x879B
sca8er 3:0c3bcea5b4d0 2121 #define GL_OUTPUT_COLOR1_EXT 0x879C
sca8er 3:0c3bcea5b4d0 2122 #define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D
sca8er 3:0c3bcea5b4d0 2123 #define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E
sca8er 3:0c3bcea5b4d0 2124 #define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F
sca8er 3:0c3bcea5b4d0 2125 #define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0
sca8er 3:0c3bcea5b4d0 2126 #define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1
sca8er 3:0c3bcea5b4d0 2127 #define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2
sca8er 3:0c3bcea5b4d0 2128 #define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3
sca8er 3:0c3bcea5b4d0 2129 #define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4
sca8er 3:0c3bcea5b4d0 2130 #define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5
sca8er 3:0c3bcea5b4d0 2131 #define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6
sca8er 3:0c3bcea5b4d0 2132 #define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7
sca8er 3:0c3bcea5b4d0 2133 #define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8
sca8er 3:0c3bcea5b4d0 2134 #define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9
sca8er 3:0c3bcea5b4d0 2135 #define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA
sca8er 3:0c3bcea5b4d0 2136 #define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB
sca8er 3:0c3bcea5b4d0 2137 #define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC
sca8er 3:0c3bcea5b4d0 2138 #define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD
sca8er 3:0c3bcea5b4d0 2139 #define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE
sca8er 3:0c3bcea5b4d0 2140 #define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF
sca8er 3:0c3bcea5b4d0 2141 #define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0
sca8er 3:0c3bcea5b4d0 2142 #define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1
sca8er 3:0c3bcea5b4d0 2143 #define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2
sca8er 3:0c3bcea5b4d0 2144 #define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3
sca8er 3:0c3bcea5b4d0 2145 #define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4
sca8er 3:0c3bcea5b4d0 2146 #define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5
sca8er 3:0c3bcea5b4d0 2147 #define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6
sca8er 3:0c3bcea5b4d0 2148 #define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7
sca8er 3:0c3bcea5b4d0 2149 #define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8
sca8er 3:0c3bcea5b4d0 2150 #define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9
sca8er 3:0c3bcea5b4d0 2151 #define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA
sca8er 3:0c3bcea5b4d0 2152 #define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB
sca8er 3:0c3bcea5b4d0 2153 #define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC
sca8er 3:0c3bcea5b4d0 2154 #define GL_OUTPUT_FOG_EXT 0x87BD
sca8er 3:0c3bcea5b4d0 2155 #define GL_SCALAR_EXT 0x87BE
sca8er 3:0c3bcea5b4d0 2156 #define GL_VECTOR_EXT 0x87BF
sca8er 3:0c3bcea5b4d0 2157 #define GL_MATRIX_EXT 0x87C0
sca8er 3:0c3bcea5b4d0 2158 #define GL_VARIANT_EXT 0x87C1
sca8er 3:0c3bcea5b4d0 2159 #define GL_INVARIANT_EXT 0x87C2
sca8er 3:0c3bcea5b4d0 2160 #define GL_LOCAL_CONSTANT_EXT 0x87C3
sca8er 3:0c3bcea5b4d0 2161 #define GL_LOCAL_EXT 0x87C4
sca8er 3:0c3bcea5b4d0 2162 #define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5
sca8er 3:0c3bcea5b4d0 2163 #define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6
sca8er 3:0c3bcea5b4d0 2164 #define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7
sca8er 3:0c3bcea5b4d0 2165 #define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8
sca8er 3:0c3bcea5b4d0 2166 #define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9
sca8er 3:0c3bcea5b4d0 2167 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA
sca8er 3:0c3bcea5b4d0 2168 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB
sca8er 3:0c3bcea5b4d0 2169 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC
sca8er 3:0c3bcea5b4d0 2170 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_INARIANTS_EXT 0x87CD
sca8er 3:0c3bcea5b4d0 2171 #define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE
sca8er 3:0c3bcea5b4d0 2172 #define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF
sca8er 3:0c3bcea5b4d0 2173 #define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0
sca8er 3:0c3bcea5b4d0 2174 #define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1
sca8er 3:0c3bcea5b4d0 2175 #define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2
sca8er 3:0c3bcea5b4d0 2176 #define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3
sca8er 3:0c3bcea5b4d0 2177 #define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4
sca8er 3:0c3bcea5b4d0 2178 #define GL_X_EXT 0x87D5
sca8er 3:0c3bcea5b4d0 2179 #define GL_Y_EXT 0x87D6
sca8er 3:0c3bcea5b4d0 2180 #define GL_Z_EXT 0x87D7
sca8er 3:0c3bcea5b4d0 2181 #define GL_W_EXT 0x87D8
sca8er 3:0c3bcea5b4d0 2182 #define GL_NEGATIVE_X_EXT 0x87D9
sca8er 3:0c3bcea5b4d0 2183 #define GL_NEGATIVE_Y_EXT 0x87DA
sca8er 3:0c3bcea5b4d0 2184 #define GL_NEGATIVE_Z_EXT 0x87DB
sca8er 3:0c3bcea5b4d0 2185 #define GL_NEGATIVE_W_EXT 0x87DC
sca8er 3:0c3bcea5b4d0 2186 #define GL_ZERO_EXT 0x87DD
sca8er 3:0c3bcea5b4d0 2187 #define GL_ONE_EXT 0x87DE
sca8er 3:0c3bcea5b4d0 2188 #define GL_NEGATIVE_ONE_EXT 0x87DF
sca8er 3:0c3bcea5b4d0 2189 #define GL_NORMALIZED_RANGE_EXT 0x87E0
sca8er 3:0c3bcea5b4d0 2190 #define GL_FULL_RANGE_EXT 0x87E1
sca8er 3:0c3bcea5b4d0 2191 #define GL_CURRENT_VERTEX_EXT 0x87E2
sca8er 3:0c3bcea5b4d0 2192 #define GL_MVP_MATRIX_EXT 0x87E3
sca8er 3:0c3bcea5b4d0 2193 #define GL_VARIANT_VALUE_EXT 0x87E4
sca8er 3:0c3bcea5b4d0 2194 #define GL_VARIANT_DATATYPE_EXT 0x87E5
sca8er 3:0c3bcea5b4d0 2195 #define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6
sca8er 3:0c3bcea5b4d0 2196 #define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7
sca8er 3:0c3bcea5b4d0 2197 #define GL_VARIANT_ARRAY_EXT 0x87E8
sca8er 3:0c3bcea5b4d0 2198 #define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9
sca8er 3:0c3bcea5b4d0 2199 #define GL_INVARIANT_VALUE_EXT 0x87EA
sca8er 3:0c3bcea5b4d0 2200 #define GL_INVARIANT_DATATYPE_EXT 0x87EB
sca8er 3:0c3bcea5b4d0 2201 #define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC
sca8er 3:0c3bcea5b4d0 2202 #define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED
sca8er 3:0c3bcea5b4d0 2203 #endif
sca8er 3:0c3bcea5b4d0 2204
sca8er 3:0c3bcea5b4d0 2205 #ifndef GL_ATI_vertex_streams
sca8er 3:0c3bcea5b4d0 2206 #define GL_MAX_VERTEX_STREAMS_ATI 0x876B
sca8er 3:0c3bcea5b4d0 2207 #define GL_VERTEX_STREAM0_ATI 0x876C
sca8er 3:0c3bcea5b4d0 2208 #define GL_VERTEX_STREAM1_ATI 0x876D
sca8er 3:0c3bcea5b4d0 2209 #define GL_VERTEX_STREAM2_ATI 0x876E
sca8er 3:0c3bcea5b4d0 2210 #define GL_VERTEX_STREAM3_ATI 0x876F
sca8er 3:0c3bcea5b4d0 2211 #define GL_VERTEX_STREAM4_ATI 0x8770
sca8er 3:0c3bcea5b4d0 2212 #define GL_VERTEX_STREAM5_ATI 0x8771
sca8er 3:0c3bcea5b4d0 2213 #define GL_VERTEX_STREAM6_ATI 0x8772
sca8er 3:0c3bcea5b4d0 2214 #define GL_VERTEX_STREAM7_ATI 0x8773
sca8er 3:0c3bcea5b4d0 2215 #define GL_VERTEX_SOURCE_ATI 0x8774
sca8er 3:0c3bcea5b4d0 2216 #endif
sca8er 3:0c3bcea5b4d0 2217
sca8er 3:0c3bcea5b4d0 2218 #ifndef GL_ATI_element_array
sca8er 3:0c3bcea5b4d0 2219 #define GL_ELEMENT_ARRAY_ATI 0x8768
sca8er 3:0c3bcea5b4d0 2220 #define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769
sca8er 3:0c3bcea5b4d0 2221 #define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A
sca8er 3:0c3bcea5b4d0 2222 #endif
sca8er 3:0c3bcea5b4d0 2223
sca8er 3:0c3bcea5b4d0 2224 #ifndef GL_SUN_mesh_array
sca8er 3:0c3bcea5b4d0 2225 #define GL_QUAD_MESH_SUN 0x8614
sca8er 3:0c3bcea5b4d0 2226 #define GL_TRIANGLE_MESH_SUN 0x8615
sca8er 3:0c3bcea5b4d0 2227 #endif
sca8er 3:0c3bcea5b4d0 2228
sca8er 3:0c3bcea5b4d0 2229 #ifndef GL_SUN_slice_accum
sca8er 3:0c3bcea5b4d0 2230 #define GL_SLICE_ACCUM_SUN 0x85CC
sca8er 3:0c3bcea5b4d0 2231 #endif
sca8er 3:0c3bcea5b4d0 2232
sca8er 3:0c3bcea5b4d0 2233 #ifndef GL_NV_multisample_filter_hint
sca8er 3:0c3bcea5b4d0 2234 #define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534
sca8er 3:0c3bcea5b4d0 2235 #endif
sca8er 3:0c3bcea5b4d0 2236
sca8er 3:0c3bcea5b4d0 2237 #ifndef GL_NV_depth_clamp
sca8er 3:0c3bcea5b4d0 2238 #define GL_DEPTH_CLAMP_NV 0x864F
sca8er 3:0c3bcea5b4d0 2239 #endif
sca8er 3:0c3bcea5b4d0 2240
sca8er 3:0c3bcea5b4d0 2241 #ifndef GL_NV_occlusion_query
sca8er 3:0c3bcea5b4d0 2242 #define GL_PIXEL_COUNTER_BITS_NV 0x8864
sca8er 3:0c3bcea5b4d0 2243 #define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865
sca8er 3:0c3bcea5b4d0 2244 #define GL_PIXEL_COUNT_NV 0x8866
sca8er 3:0c3bcea5b4d0 2245 #define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867
sca8er 3:0c3bcea5b4d0 2246 #endif
sca8er 3:0c3bcea5b4d0 2247
sca8er 3:0c3bcea5b4d0 2248 #ifndef GL_NV_point_sprite
sca8er 3:0c3bcea5b4d0 2249 #define GL_POINT_SPRITE_NV 0x8861
sca8er 3:0c3bcea5b4d0 2250 #define GL_COORD_REPLACE_NV 0x8862
sca8er 3:0c3bcea5b4d0 2251 #define GL_POINT_SPRITE_R_MODE_NV 0x8863
sca8er 3:0c3bcea5b4d0 2252 #endif
sca8er 3:0c3bcea5b4d0 2253
sca8er 3:0c3bcea5b4d0 2254 #ifndef GL_NV_texture_shader3
sca8er 3:0c3bcea5b4d0 2255 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850
sca8er 3:0c3bcea5b4d0 2256 #define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851
sca8er 3:0c3bcea5b4d0 2257 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852
sca8er 3:0c3bcea5b4d0 2258 #define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853
sca8er 3:0c3bcea5b4d0 2259 #define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854
sca8er 3:0c3bcea5b4d0 2260 #define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855
sca8er 3:0c3bcea5b4d0 2261 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856
sca8er 3:0c3bcea5b4d0 2262 #define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857
sca8er 3:0c3bcea5b4d0 2263 #define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858
sca8er 3:0c3bcea5b4d0 2264 #define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859
sca8er 3:0c3bcea5b4d0 2265 #define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A
sca8er 3:0c3bcea5b4d0 2266 #define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B
sca8er 3:0c3bcea5b4d0 2267 #define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C
sca8er 3:0c3bcea5b4d0 2268 #define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D
sca8er 3:0c3bcea5b4d0 2269 #define GL_HILO8_NV 0x885E
sca8er 3:0c3bcea5b4d0 2270 #define GL_SIGNED_HILO8_NV 0x885F
sca8er 3:0c3bcea5b4d0 2271 #define GL_FORCE_BLUE_TO_ONE_NV 0x8860
sca8er 3:0c3bcea5b4d0 2272 #endif
sca8er 3:0c3bcea5b4d0 2273
sca8er 3:0c3bcea5b4d0 2274 #ifndef GL_NV_vertex_program1_1
sca8er 3:0c3bcea5b4d0 2275 #endif
sca8er 3:0c3bcea5b4d0 2276
sca8er 3:0c3bcea5b4d0 2277
sca8er 3:0c3bcea5b4d0 2278 /*************************************************************/
sca8er 3:0c3bcea5b4d0 2279
sca8er 3:0c3bcea5b4d0 2280 #ifndef GL_VERSION_1_2
sca8er 3:0c3bcea5b4d0 2281 #define GL_VERSION_1_2 1
sca8er 3:0c3bcea5b4d0 2282 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2283 GLAPI void APIENTRY glBlendColor (GLclampf, GLclampf, GLclampf, GLclampf);
sca8er 3:0c3bcea5b4d0 2284 GLAPI void APIENTRY glBlendEquation (GLenum);
sca8er 3:0c3bcea5b4d0 2285 GLAPI void APIENTRY glDrawRangeElements (GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2286 GLAPI void APIENTRY glColorTable (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2287 GLAPI void APIENTRY glColorTableParameterfv (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2288 GLAPI void APIENTRY glColorTableParameteriv (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2289 GLAPI void APIENTRY glCopyColorTable (GLenum, GLenum, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2290 GLAPI void APIENTRY glGetColorTable (GLenum, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2291 GLAPI void APIENTRY glGetColorTableParameterfv (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2292 GLAPI void APIENTRY glGetColorTableParameteriv (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2293 GLAPI void APIENTRY glColorSubTable (GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2294 GLAPI void APIENTRY glCopyColorSubTable (GLenum, GLsizei, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2295 GLAPI void APIENTRY glConvolutionFilter1D (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2296 GLAPI void APIENTRY glConvolutionFilter2D (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2297 GLAPI void APIENTRY glConvolutionParameterf (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2298 GLAPI void APIENTRY glConvolutionParameterfv (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2299 GLAPI void APIENTRY glConvolutionParameteri (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 2300 GLAPI void APIENTRY glConvolutionParameteriv (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2301 GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum, GLenum, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2302 GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 2303 GLAPI void APIENTRY glGetConvolutionFilter (GLenum, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2304 GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2305 GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2306 GLAPI void APIENTRY glGetSeparableFilter (GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
sca8er 3:0c3bcea5b4d0 2307 GLAPI void APIENTRY glSeparableFilter2D (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2308 GLAPI void APIENTRY glGetHistogram (GLenum, GLboolean, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2309 GLAPI void APIENTRY glGetHistogramParameterfv (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2310 GLAPI void APIENTRY glGetHistogramParameteriv (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2311 GLAPI void APIENTRY glGetMinmax (GLenum, GLboolean, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2312 GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2313 GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2314 GLAPI void APIENTRY glHistogram (GLenum, GLsizei, GLenum, GLboolean);
sca8er 3:0c3bcea5b4d0 2315 GLAPI void APIENTRY glMinmax (GLenum, GLenum, GLboolean);
sca8er 3:0c3bcea5b4d0 2316 GLAPI void APIENTRY glResetHistogram (GLenum);
sca8er 3:0c3bcea5b4d0 2317 GLAPI void APIENTRY glResetMinmax (GLenum);
sca8er 3:0c3bcea5b4d0 2318 GLAPI void APIENTRY glTexImage3D (GLenum, GLint, GLint, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2319 GLAPI void APIENTRY glTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2320 GLAPI void APIENTRY glCopyTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 2321 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2322 typedef void (APIENTRY * PFNGLBLENDCOLORPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
sca8er 3:0c3bcea5b4d0 2323 typedef void (APIENTRY * PFNGLBLENDEQUATIONPROC) (GLenum mode);
sca8er 3:0c3bcea5b4d0 2324 typedef void (APIENTRY * PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
sca8er 3:0c3bcea5b4d0 2325 typedef void (APIENTRY * PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
sca8er 3:0c3bcea5b4d0 2326 typedef void (APIENTRY * PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2327 typedef void (APIENTRY * PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 2328 typedef void (APIENTRY * PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2329 typedef void (APIENTRY * PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table);
sca8er 3:0c3bcea5b4d0 2330 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2331 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2332 typedef void (APIENTRY * PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2333 typedef void (APIENTRY * PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2334 typedef void (APIENTRY * PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
sca8er 3:0c3bcea5b4d0 2335 typedef void (APIENTRY * PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
sca8er 3:0c3bcea5b4d0 2336 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params);
sca8er 3:0c3bcea5b4d0 2337 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2338 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params);
sca8er 3:0c3bcea5b4d0 2339 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 2340 typedef void (APIENTRY * PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2341 typedef void (APIENTRY * PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
sca8er 3:0c3bcea5b4d0 2342 typedef void (APIENTRY * PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image);
sca8er 3:0c3bcea5b4d0 2343 typedef void (APIENTRY * PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2344 typedef void (APIENTRY * PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2345 typedef void (APIENTRY * PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
sca8er 3:0c3bcea5b4d0 2346 typedef void (APIENTRY * PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
sca8er 3:0c3bcea5b4d0 2347 typedef void (APIENTRY * PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
sca8er 3:0c3bcea5b4d0 2348 typedef void (APIENTRY * PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2349 typedef void (APIENTRY * PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2350 typedef void (APIENTRY * PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
sca8er 3:0c3bcea5b4d0 2351 typedef void (APIENTRY * PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2352 typedef void (APIENTRY * PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2353 typedef void (APIENTRY * PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
sca8er 3:0c3bcea5b4d0 2354 typedef void (APIENTRY * PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink);
sca8er 3:0c3bcea5b4d0 2355 typedef void (APIENTRY * PFNGLRESETHISTOGRAMPROC) (GLenum target);
sca8er 3:0c3bcea5b4d0 2356 typedef void (APIENTRY * PFNGLRESETMINMAXPROC) (GLenum target);
sca8er 3:0c3bcea5b4d0 2357 typedef void (APIENTRY * PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2358 typedef void (APIENTRY * PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2359 typedef void (APIENTRY * PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
sca8er 3:0c3bcea5b4d0 2360 #endif
sca8er 3:0c3bcea5b4d0 2361
sca8er 3:0c3bcea5b4d0 2362 #ifndef GL_VERSION_1_3
sca8er 3:0c3bcea5b4d0 2363 #define GL_VERSION_1_3 1
sca8er 3:0c3bcea5b4d0 2364 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2365 GLAPI void APIENTRY glActiveTexture (GLenum);
sca8er 3:0c3bcea5b4d0 2366 GLAPI void APIENTRY glClientActiveTexture (GLenum);
sca8er 3:0c3bcea5b4d0 2367 GLAPI void APIENTRY glMultiTexCoord1d (GLenum, GLdouble);
sca8er 3:0c3bcea5b4d0 2368 GLAPI void APIENTRY glMultiTexCoord1dv (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2369 GLAPI void APIENTRY glMultiTexCoord1f (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2370 GLAPI void APIENTRY glMultiTexCoord1fv (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2371 GLAPI void APIENTRY glMultiTexCoord1i (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 2372 GLAPI void APIENTRY glMultiTexCoord1iv (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2373 GLAPI void APIENTRY glMultiTexCoord1s (GLenum, GLshort);
sca8er 3:0c3bcea5b4d0 2374 GLAPI void APIENTRY glMultiTexCoord1sv (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2375 GLAPI void APIENTRY glMultiTexCoord2d (GLenum, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2376 GLAPI void APIENTRY glMultiTexCoord2dv (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2377 GLAPI void APIENTRY glMultiTexCoord2f (GLenum, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2378 GLAPI void APIENTRY glMultiTexCoord2fv (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2379 GLAPI void APIENTRY glMultiTexCoord2i (GLenum, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2380 GLAPI void APIENTRY glMultiTexCoord2iv (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2381 GLAPI void APIENTRY glMultiTexCoord2s (GLenum, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2382 GLAPI void APIENTRY glMultiTexCoord2sv (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2383 GLAPI void APIENTRY glMultiTexCoord3d (GLenum, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2384 GLAPI void APIENTRY glMultiTexCoord3dv (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2385 GLAPI void APIENTRY glMultiTexCoord3f (GLenum, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2386 GLAPI void APIENTRY glMultiTexCoord3fv (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2387 GLAPI void APIENTRY glMultiTexCoord3i (GLenum, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2388 GLAPI void APIENTRY glMultiTexCoord3iv (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2389 GLAPI void APIENTRY glMultiTexCoord3s (GLenum, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2390 GLAPI void APIENTRY glMultiTexCoord3sv (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2391 GLAPI void APIENTRY glMultiTexCoord4d (GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2392 GLAPI void APIENTRY glMultiTexCoord4dv (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2393 GLAPI void APIENTRY glMultiTexCoord4f (GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2394 GLAPI void APIENTRY glMultiTexCoord4fv (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2395 GLAPI void APIENTRY glMultiTexCoord4i (GLenum, GLint, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2396 GLAPI void APIENTRY glMultiTexCoord4iv (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2397 GLAPI void APIENTRY glMultiTexCoord4s (GLenum, GLshort, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2398 GLAPI void APIENTRY glMultiTexCoord4sv (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2399 GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2400 GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2401 GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2402 GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2403 GLAPI void APIENTRY glSampleCoverage (GLclampf, GLboolean);
sca8er 3:0c3bcea5b4d0 2404 GLAPI void APIENTRY glCompressedTexImage3D (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2405 GLAPI void APIENTRY glCompressedTexImage2D (GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2406 GLAPI void APIENTRY glCompressedTexImage1D (GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2407 GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2408 GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2409 GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2410 GLAPI void APIENTRY glGetCompressedTexImage (GLenum, GLint, void *);
sca8er 3:0c3bcea5b4d0 2411 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2412 typedef void (APIENTRY * PFNGLACTIVETEXTUREPROC) (GLenum texture);
sca8er 3:0c3bcea5b4d0 2413 typedef void (APIENTRY * PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture);
sca8er 3:0c3bcea5b4d0 2414 typedef void (APIENTRY * PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s);
sca8er 3:0c3bcea5b4d0 2415 typedef void (APIENTRY * PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2416 typedef void (APIENTRY * PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s);
sca8er 3:0c3bcea5b4d0 2417 typedef void (APIENTRY * PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2418 typedef void (APIENTRY * PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s);
sca8er 3:0c3bcea5b4d0 2419 typedef void (APIENTRY * PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2420 typedef void (APIENTRY * PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s);
sca8er 3:0c3bcea5b4d0 2421 typedef void (APIENTRY * PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2422 typedef void (APIENTRY * PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t);
sca8er 3:0c3bcea5b4d0 2423 typedef void (APIENTRY * PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2424 typedef void (APIENTRY * PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t);
sca8er 3:0c3bcea5b4d0 2425 typedef void (APIENTRY * PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2426 typedef void (APIENTRY * PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t);
sca8er 3:0c3bcea5b4d0 2427 typedef void (APIENTRY * PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2428 typedef void (APIENTRY * PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t);
sca8er 3:0c3bcea5b4d0 2429 typedef void (APIENTRY * PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2430 typedef void (APIENTRY * PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r);
sca8er 3:0c3bcea5b4d0 2431 typedef void (APIENTRY * PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2432 typedef void (APIENTRY * PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r);
sca8er 3:0c3bcea5b4d0 2433 typedef void (APIENTRY * PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2434 typedef void (APIENTRY * PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r);
sca8er 3:0c3bcea5b4d0 2435 typedef void (APIENTRY * PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2436 typedef void (APIENTRY * PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r);
sca8er 3:0c3bcea5b4d0 2437 typedef void (APIENTRY * PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2438 typedef void (APIENTRY * PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
sca8er 3:0c3bcea5b4d0 2439 typedef void (APIENTRY * PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2440 typedef void (APIENTRY * PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
sca8er 3:0c3bcea5b4d0 2441 typedef void (APIENTRY * PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2442 typedef void (APIENTRY * PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q);
sca8er 3:0c3bcea5b4d0 2443 typedef void (APIENTRY * PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2444 typedef void (APIENTRY * PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
sca8er 3:0c3bcea5b4d0 2445 typedef void (APIENTRY * PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2446 typedef void (APIENTRY * PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m);
sca8er 3:0c3bcea5b4d0 2447 typedef void (APIENTRY * PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m);
sca8er 3:0c3bcea5b4d0 2448 typedef void (APIENTRY * PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m);
sca8er 3:0c3bcea5b4d0 2449 typedef void (APIENTRY * PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m);
sca8er 3:0c3bcea5b4d0 2450 typedef void (APIENTRY * PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert);
sca8er 3:0c3bcea5b4d0 2451 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2452 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2453 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2454 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2455 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2456 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2457 typedef void (APIENTRY * PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, void *img);
sca8er 3:0c3bcea5b4d0 2458 #endif
sca8er 3:0c3bcea5b4d0 2459
sca8er 3:0c3bcea5b4d0 2460 #ifndef GL_ARB_multitexture
sca8er 3:0c3bcea5b4d0 2461 #define GL_ARB_multitexture 1
sca8er 3:0c3bcea5b4d0 2462 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2463 GLAPI void APIENTRY glActiveTextureARB (GLenum);
sca8er 3:0c3bcea5b4d0 2464 GLAPI void APIENTRY glClientActiveTextureARB (GLenum);
sca8er 3:0c3bcea5b4d0 2465 GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum, GLdouble);
sca8er 3:0c3bcea5b4d0 2466 GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2467 GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2468 GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2469 GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 2470 GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2471 GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum, GLshort);
sca8er 3:0c3bcea5b4d0 2472 GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2473 GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2474 GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2475 GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2476 GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2477 GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2478 GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2479 GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2480 GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2481 GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2482 GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2483 GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2484 GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2485 GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2486 GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2487 GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2488 GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2489 GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2490 GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2491 GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2492 GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2493 GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum, GLint, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2494 GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2495 GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum, GLshort, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2496 GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 2497 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2498 typedef void (APIENTRY * PFNGLACTIVETEXTUREARBPROC) (GLenum texture);
sca8er 3:0c3bcea5b4d0 2499 typedef void (APIENTRY * PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture);
sca8er 3:0c3bcea5b4d0 2500 typedef void (APIENTRY * PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s);
sca8er 3:0c3bcea5b4d0 2501 typedef void (APIENTRY * PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2502 typedef void (APIENTRY * PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s);
sca8er 3:0c3bcea5b4d0 2503 typedef void (APIENTRY * PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2504 typedef void (APIENTRY * PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s);
sca8er 3:0c3bcea5b4d0 2505 typedef void (APIENTRY * PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2506 typedef void (APIENTRY * PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s);
sca8er 3:0c3bcea5b4d0 2507 typedef void (APIENTRY * PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2508 typedef void (APIENTRY * PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t);
sca8er 3:0c3bcea5b4d0 2509 typedef void (APIENTRY * PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2510 typedef void (APIENTRY * PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t);
sca8er 3:0c3bcea5b4d0 2511 typedef void (APIENTRY * PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2512 typedef void (APIENTRY * PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t);
sca8er 3:0c3bcea5b4d0 2513 typedef void (APIENTRY * PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2514 typedef void (APIENTRY * PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t);
sca8er 3:0c3bcea5b4d0 2515 typedef void (APIENTRY * PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2516 typedef void (APIENTRY * PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r);
sca8er 3:0c3bcea5b4d0 2517 typedef void (APIENTRY * PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2518 typedef void (APIENTRY * PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r);
sca8er 3:0c3bcea5b4d0 2519 typedef void (APIENTRY * PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2520 typedef void (APIENTRY * PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r);
sca8er 3:0c3bcea5b4d0 2521 typedef void (APIENTRY * PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2522 typedef void (APIENTRY * PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r);
sca8er 3:0c3bcea5b4d0 2523 typedef void (APIENTRY * PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2524 typedef void (APIENTRY * PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
sca8er 3:0c3bcea5b4d0 2525 typedef void (APIENTRY * PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2526 typedef void (APIENTRY * PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
sca8er 3:0c3bcea5b4d0 2527 typedef void (APIENTRY * PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2528 typedef void (APIENTRY * PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q);
sca8er 3:0c3bcea5b4d0 2529 typedef void (APIENTRY * PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v);
sca8er 3:0c3bcea5b4d0 2530 typedef void (APIENTRY * PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
sca8er 3:0c3bcea5b4d0 2531 typedef void (APIENTRY * PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v);
sca8er 3:0c3bcea5b4d0 2532 #endif
sca8er 3:0c3bcea5b4d0 2533
sca8er 3:0c3bcea5b4d0 2534 #ifndef GL_ARB_transpose_matrix
sca8er 3:0c3bcea5b4d0 2535 #define GL_ARB_transpose_matrix 1
sca8er 3:0c3bcea5b4d0 2536 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2537 GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2538 GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2539 GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2540 GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2541 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2542 typedef void (APIENTRY * PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m);
sca8er 3:0c3bcea5b4d0 2543 typedef void (APIENTRY * PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m);
sca8er 3:0c3bcea5b4d0 2544 typedef void (APIENTRY * PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m);
sca8er 3:0c3bcea5b4d0 2545 typedef void (APIENTRY * PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m);
sca8er 3:0c3bcea5b4d0 2546 #endif
sca8er 3:0c3bcea5b4d0 2547
sca8er 3:0c3bcea5b4d0 2548 #ifndef GL_ARB_multisample
sca8er 3:0c3bcea5b4d0 2549 #define GL_ARB_multisample 1
sca8er 3:0c3bcea5b4d0 2550 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2551 GLAPI void APIENTRY glSampleCoverageARB (GLclampf, GLboolean);
sca8er 3:0c3bcea5b4d0 2552 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2553 typedef void (APIENTRY * PFNGLSAMPLECOVERAGEARBPROC) (GLclampf value, GLboolean invert);
sca8er 3:0c3bcea5b4d0 2554 #endif
sca8er 3:0c3bcea5b4d0 2555
sca8er 3:0c3bcea5b4d0 2556 #ifndef GL_ARB_texture_env_add
sca8er 3:0c3bcea5b4d0 2557 #define GL_ARB_texture_env_add 1
sca8er 3:0c3bcea5b4d0 2558 #endif
sca8er 3:0c3bcea5b4d0 2559
sca8er 3:0c3bcea5b4d0 2560 #ifndef GL_ARB_texture_cube_map
sca8er 3:0c3bcea5b4d0 2561 #define GL_ARB_texture_cube_map 1
sca8er 3:0c3bcea5b4d0 2562 #endif
sca8er 3:0c3bcea5b4d0 2563
sca8er 3:0c3bcea5b4d0 2564 #ifndef GL_ARB_texture_compression
sca8er 3:0c3bcea5b4d0 2565 #define GL_ARB_texture_compression 1
sca8er 3:0c3bcea5b4d0 2566 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2567 GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2568 GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2569 GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2570 GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2571 GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2572 GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2573 GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum, GLint, void *);
sca8er 3:0c3bcea5b4d0 2574 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2575 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2576 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2577 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2578 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2579 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2580 typedef void (APIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 2581 typedef void (APIENTRY * PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, void *img);
sca8er 3:0c3bcea5b4d0 2582 #endif
sca8er 3:0c3bcea5b4d0 2583
sca8er 3:0c3bcea5b4d0 2584 #ifndef GL_ARB_texture_border_clamp
sca8er 3:0c3bcea5b4d0 2585 #define GL_ARB_texture_border_clamp 1
sca8er 3:0c3bcea5b4d0 2586 #endif
sca8er 3:0c3bcea5b4d0 2587
sca8er 3:0c3bcea5b4d0 2588 #ifndef GL_ARB_point_parameters
sca8er 3:0c3bcea5b4d0 2589 #define GL_ARB_point_parameters 1
sca8er 3:0c3bcea5b4d0 2590 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2591 GLAPI void APIENTRY glPointParameterfARB (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2592 GLAPI void APIENTRY glPointParameterfvARB (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2593 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2594 typedef void (APIENTRY * PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 2595 typedef void (APIENTRY * PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2596 #endif
sca8er 3:0c3bcea5b4d0 2597
sca8er 3:0c3bcea5b4d0 2598 #ifndef GL_ARB_vertex_blend
sca8er 3:0c3bcea5b4d0 2599 #define GL_ARB_vertex_blend 1
sca8er 3:0c3bcea5b4d0 2600 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2601 GLAPI void APIENTRY glWeightbvARB (GLint, const GLbyte *);
sca8er 3:0c3bcea5b4d0 2602 GLAPI void APIENTRY glWeightsvARB (GLint, const GLshort *);
sca8er 3:0c3bcea5b4d0 2603 GLAPI void APIENTRY glWeightivARB (GLint, const GLint *);
sca8er 3:0c3bcea5b4d0 2604 GLAPI void APIENTRY glWeightfvARB (GLint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2605 GLAPI void APIENTRY glWeightdvARB (GLint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 2606 GLAPI void APIENTRY glWeightubvARB (GLint, const GLubyte *);
sca8er 3:0c3bcea5b4d0 2607 GLAPI void APIENTRY glWeightusvARB (GLint, const GLushort *);
sca8er 3:0c3bcea5b4d0 2608 GLAPI void APIENTRY glWeightuivARB (GLint, const GLuint *);
sca8er 3:0c3bcea5b4d0 2609 GLAPI void APIENTRY glWeightPointerARB (GLint, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2610 GLAPI void APIENTRY glVertexBlendARB (GLint);
sca8er 3:0c3bcea5b4d0 2611 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2612 typedef void (APIENTRY * PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights);
sca8er 3:0c3bcea5b4d0 2613 typedef void (APIENTRY * PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights);
sca8er 3:0c3bcea5b4d0 2614 typedef void (APIENTRY * PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights);
sca8er 3:0c3bcea5b4d0 2615 typedef void (APIENTRY * PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights);
sca8er 3:0c3bcea5b4d0 2616 typedef void (APIENTRY * PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights);
sca8er 3:0c3bcea5b4d0 2617 typedef void (APIENTRY * PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights);
sca8er 3:0c3bcea5b4d0 2618 typedef void (APIENTRY * PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights);
sca8er 3:0c3bcea5b4d0 2619 typedef void (APIENTRY * PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights);
sca8er 3:0c3bcea5b4d0 2620 typedef void (APIENTRY * PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2621 typedef void (APIENTRY * PFNGLVERTEXBLENDARBPROC) (GLint count);
sca8er 3:0c3bcea5b4d0 2622 #endif
sca8er 3:0c3bcea5b4d0 2623
sca8er 3:0c3bcea5b4d0 2624 #ifndef GL_ARB_matrix_palette
sca8er 3:0c3bcea5b4d0 2625 #define GL_ARB_matrix_palette 1
sca8er 3:0c3bcea5b4d0 2626 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2627 GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint);
sca8er 3:0c3bcea5b4d0 2628 GLAPI void APIENTRY glMatrixIndexubvARB (GLint, const GLubyte *);
sca8er 3:0c3bcea5b4d0 2629 GLAPI void APIENTRY glMatrixIndexusvARB (GLint, const GLushort *);
sca8er 3:0c3bcea5b4d0 2630 GLAPI void APIENTRY glMatrixIndexuivARB (GLint, const GLuint *);
sca8er 3:0c3bcea5b4d0 2631 GLAPI void APIENTRY glMatrixIndexPointerARB (GLint, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2632 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2633 typedef void (APIENTRY * PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index);
sca8er 3:0c3bcea5b4d0 2634 typedef void (APIENTRY * PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices);
sca8er 3:0c3bcea5b4d0 2635 typedef void (APIENTRY * PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices);
sca8er 3:0c3bcea5b4d0 2636 typedef void (APIENTRY * PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices);
sca8er 3:0c3bcea5b4d0 2637 typedef void (APIENTRY * PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2638 #endif
sca8er 3:0c3bcea5b4d0 2639
sca8er 3:0c3bcea5b4d0 2640 #ifndef GL_ARB_texture_env_combine
sca8er 3:0c3bcea5b4d0 2641 #define GL_ARB_texture_env_combine 1
sca8er 3:0c3bcea5b4d0 2642 #endif
sca8er 3:0c3bcea5b4d0 2643
sca8er 3:0c3bcea5b4d0 2644 #ifndef GL_ARB_texture_env_crossbar
sca8er 3:0c3bcea5b4d0 2645 #define GL_ARB_texture_env_crossbar 1
sca8er 3:0c3bcea5b4d0 2646 #endif
sca8er 3:0c3bcea5b4d0 2647
sca8er 3:0c3bcea5b4d0 2648 #ifndef GL_ARB_texture_env_dot3
sca8er 3:0c3bcea5b4d0 2649 #define GL_ARB_texture_env_dot3 1
sca8er 3:0c3bcea5b4d0 2650 #endif
sca8er 3:0c3bcea5b4d0 2651
sca8er 3:0c3bcea5b4d0 2652 #ifndef GL_ARB_texture_mirror_repeat
sca8er 3:0c3bcea5b4d0 2653 #define GL_ARB_texture_mirror_repeat 1
sca8er 3:0c3bcea5b4d0 2654 #endif
sca8er 3:0c3bcea5b4d0 2655
sca8er 3:0c3bcea5b4d0 2656 #ifndef GL_ARB_depth_texture
sca8er 3:0c3bcea5b4d0 2657 #define GL_ARB_depth_texture 1
sca8er 3:0c3bcea5b4d0 2658 #endif
sca8er 3:0c3bcea5b4d0 2659
sca8er 3:0c3bcea5b4d0 2660 #ifndef GL_ARB_shadow
sca8er 3:0c3bcea5b4d0 2661 #define GL_ARB_shadow 1
sca8er 3:0c3bcea5b4d0 2662 #endif
sca8er 3:0c3bcea5b4d0 2663
sca8er 3:0c3bcea5b4d0 2664 #ifndef GL_ARB_shadow_ambient
sca8er 3:0c3bcea5b4d0 2665 #define GL_ARB_shadow_ambient 1
sca8er 3:0c3bcea5b4d0 2666 #endif
sca8er 3:0c3bcea5b4d0 2667
sca8er 3:0c3bcea5b4d0 2668 #ifndef GL_ARB_window_pos
sca8er 3:0c3bcea5b4d0 2669 #define GL_ARB_window_pos 1
sca8er 3:0c3bcea5b4d0 2670 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2671 GLAPI void APIENTRY glWindowPos2dARB (GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2672 GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2673 GLAPI void APIENTRY glWindowPos2fARB (GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2674 GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2675 GLAPI void APIENTRY glWindowPos2iARB (GLint, GLint);
sca8er 3:0c3bcea5b4d0 2676 GLAPI void APIENTRY glWindowPos2ivARB (const GLint *);
sca8er 3:0c3bcea5b4d0 2677 GLAPI void APIENTRY glWindowPos2sARB (GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2678 GLAPI void APIENTRY glWindowPos2svARB (const GLshort *);
sca8er 3:0c3bcea5b4d0 2679 GLAPI void APIENTRY glWindowPos3dARB (GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 2680 GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *);
sca8er 3:0c3bcea5b4d0 2681 GLAPI void APIENTRY glWindowPos3fARB (GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2682 GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *);
sca8er 3:0c3bcea5b4d0 2683 GLAPI void APIENTRY glWindowPos3iARB (GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 2684 GLAPI void APIENTRY glWindowPos3ivARB (const GLint *);
sca8er 3:0c3bcea5b4d0 2685 GLAPI void APIENTRY glWindowPos3sARB (GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 2686 GLAPI void APIENTRY glWindowPos3svARB (const GLshort *);
sca8er 3:0c3bcea5b4d0 2687 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2688 typedef void (APIENTRY * PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y);
sca8er 3:0c3bcea5b4d0 2689 typedef void (APIENTRY * PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2690 typedef void (APIENTRY * PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y);
sca8er 3:0c3bcea5b4d0 2691 typedef void (APIENTRY * PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2692 typedef void (APIENTRY * PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y);
sca8er 3:0c3bcea5b4d0 2693 typedef void (APIENTRY * PFNGLWINDOWPOS2IVARBPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 2694 typedef void (APIENTRY * PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y);
sca8er 3:0c3bcea5b4d0 2695 typedef void (APIENTRY * PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 2696 typedef void (APIENTRY * PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z);
sca8er 3:0c3bcea5b4d0 2697 typedef void (APIENTRY * PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 2698 typedef void (APIENTRY * PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 2699 typedef void (APIENTRY * PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 2700 typedef void (APIENTRY * PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z);
sca8er 3:0c3bcea5b4d0 2701 typedef void (APIENTRY * PFNGLWINDOWPOS3IVARBPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 2702 typedef void (APIENTRY * PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z);
sca8er 3:0c3bcea5b4d0 2703 typedef void (APIENTRY * PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 2704 #endif
sca8er 3:0c3bcea5b4d0 2705
sca8er 3:0c3bcea5b4d0 2706 #ifndef GL_EXT_abgr
sca8er 3:0c3bcea5b4d0 2707 #define GL_EXT_abgr 1
sca8er 3:0c3bcea5b4d0 2708 #endif
sca8er 3:0c3bcea5b4d0 2709
sca8er 3:0c3bcea5b4d0 2710 #ifndef GL_EXT_blend_color
sca8er 3:0c3bcea5b4d0 2711 #define GL_EXT_blend_color 1
sca8er 3:0c3bcea5b4d0 2712 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2713 GLAPI void APIENTRY glBlendColorEXT (GLclampf, GLclampf, GLclampf, GLclampf);
sca8er 3:0c3bcea5b4d0 2714 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2715 typedef void (APIENTRY * PFNGLBLENDCOLOREXTPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
sca8er 3:0c3bcea5b4d0 2716 #endif
sca8er 3:0c3bcea5b4d0 2717
sca8er 3:0c3bcea5b4d0 2718 #ifndef GL_EXT_polygon_offset
sca8er 3:0c3bcea5b4d0 2719 #define GL_EXT_polygon_offset 1
sca8er 3:0c3bcea5b4d0 2720 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2721 GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 2722 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2723 typedef void (APIENTRY * PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias);
sca8er 3:0c3bcea5b4d0 2724 #endif
sca8er 3:0c3bcea5b4d0 2725
sca8er 3:0c3bcea5b4d0 2726 #ifndef GL_EXT_texture
sca8er 3:0c3bcea5b4d0 2727 #define GL_EXT_texture 1
sca8er 3:0c3bcea5b4d0 2728 #endif
sca8er 3:0c3bcea5b4d0 2729
sca8er 3:0c3bcea5b4d0 2730 #ifndef GL_EXT_texture3D
sca8er 3:0c3bcea5b4d0 2731 #define GL_EXT_texture3D 1
sca8er 3:0c3bcea5b4d0 2732 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2733 GLAPI void APIENTRY glTexImage3DEXT (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2734 GLAPI void APIENTRY glTexSubImage3DEXT (GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2735 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2736 typedef void (APIENTRY * PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2737 typedef void (APIENTRY * PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2738 #endif
sca8er 3:0c3bcea5b4d0 2739
sca8er 3:0c3bcea5b4d0 2740 #ifndef GL_SGIS_texture_filter4
sca8er 3:0c3bcea5b4d0 2741 #define GL_SGIS_texture_filter4 1
sca8er 3:0c3bcea5b4d0 2742 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2743 GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2744 GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum, GLenum, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2745 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2746 typedef void (APIENTRY * PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights);
sca8er 3:0c3bcea5b4d0 2747 typedef void (APIENTRY * PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights);
sca8er 3:0c3bcea5b4d0 2748 #endif
sca8er 3:0c3bcea5b4d0 2749
sca8er 3:0c3bcea5b4d0 2750 #ifndef GL_EXT_subtexture
sca8er 3:0c3bcea5b4d0 2751 #define GL_EXT_subtexture 1
sca8er 3:0c3bcea5b4d0 2752 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2753 GLAPI void APIENTRY glTexSubImage1DEXT (GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2754 GLAPI void APIENTRY glTexSubImage2DEXT (GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2755 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2756 typedef void (APIENTRY * PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2757 typedef void (APIENTRY * PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2758 #endif
sca8er 3:0c3bcea5b4d0 2759
sca8er 3:0c3bcea5b4d0 2760 #ifndef GL_EXT_copy_texture
sca8er 3:0c3bcea5b4d0 2761 #define GL_EXT_copy_texture 1
sca8er 3:0c3bcea5b4d0 2762 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2763 GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
sca8er 3:0c3bcea5b4d0 2764 GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
sca8er 3:0c3bcea5b4d0 2765 GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum, GLint, GLint, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2766 GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 2767 GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 2768 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2769 typedef void (APIENTRY * PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
sca8er 3:0c3bcea5b4d0 2770 typedef void (APIENTRY * PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
sca8er 3:0c3bcea5b4d0 2771 typedef void (APIENTRY * PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2772 typedef void (APIENTRY * PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
sca8er 3:0c3bcea5b4d0 2773 typedef void (APIENTRY * PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
sca8er 3:0c3bcea5b4d0 2774 #endif
sca8er 3:0c3bcea5b4d0 2775
sca8er 3:0c3bcea5b4d0 2776 #ifndef GL_EXT_histogram
sca8er 3:0c3bcea5b4d0 2777 #define GL_EXT_histogram 1
sca8er 3:0c3bcea5b4d0 2778 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2779 GLAPI void APIENTRY glGetHistogramEXT (GLenum, GLboolean, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2780 GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2781 GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2782 GLAPI void APIENTRY glGetMinmaxEXT (GLenum, GLboolean, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2783 GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2784 GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2785 GLAPI void APIENTRY glHistogramEXT (GLenum, GLsizei, GLenum, GLboolean);
sca8er 3:0c3bcea5b4d0 2786 GLAPI void APIENTRY glMinmaxEXT (GLenum, GLenum, GLboolean);
sca8er 3:0c3bcea5b4d0 2787 GLAPI void APIENTRY glResetHistogramEXT (GLenum);
sca8er 3:0c3bcea5b4d0 2788 GLAPI void APIENTRY glResetMinmaxEXT (GLenum);
sca8er 3:0c3bcea5b4d0 2789 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2790 typedef void (APIENTRY * PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
sca8er 3:0c3bcea5b4d0 2791 typedef void (APIENTRY * PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2792 typedef void (APIENTRY * PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2793 typedef void (APIENTRY * PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
sca8er 3:0c3bcea5b4d0 2794 typedef void (APIENTRY * PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2795 typedef void (APIENTRY * PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2796 typedef void (APIENTRY * PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
sca8er 3:0c3bcea5b4d0 2797 typedef void (APIENTRY * PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink);
sca8er 3:0c3bcea5b4d0 2798 typedef void (APIENTRY * PFNGLRESETHISTOGRAMEXTPROC) (GLenum target);
sca8er 3:0c3bcea5b4d0 2799 typedef void (APIENTRY * PFNGLRESETMINMAXEXTPROC) (GLenum target);
sca8er 3:0c3bcea5b4d0 2800 #endif
sca8er 3:0c3bcea5b4d0 2801
sca8er 3:0c3bcea5b4d0 2802 #ifndef GL_EXT_convolution
sca8er 3:0c3bcea5b4d0 2803 #define GL_EXT_convolution 1
sca8er 3:0c3bcea5b4d0 2804 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2805 GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2806 GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2807 GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2808 GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2809 GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 2810 GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2811 GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum, GLenum, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2812 GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 2813 GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2814 GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2815 GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2816 GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
sca8er 3:0c3bcea5b4d0 2817 GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2818 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2819 typedef void (APIENTRY * PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
sca8er 3:0c3bcea5b4d0 2820 typedef void (APIENTRY * PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
sca8er 3:0c3bcea5b4d0 2821 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params);
sca8er 3:0c3bcea5b4d0 2822 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2823 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params);
sca8er 3:0c3bcea5b4d0 2824 typedef void (APIENTRY * PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 2825 typedef void (APIENTRY * PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2826 typedef void (APIENTRY * PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
sca8er 3:0c3bcea5b4d0 2827 typedef void (APIENTRY * PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *image);
sca8er 3:0c3bcea5b4d0 2828 typedef void (APIENTRY * PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2829 typedef void (APIENTRY * PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2830 typedef void (APIENTRY * PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
sca8er 3:0c3bcea5b4d0 2831 typedef void (APIENTRY * PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
sca8er 3:0c3bcea5b4d0 2832 #endif
sca8er 3:0c3bcea5b4d0 2833
sca8er 3:0c3bcea5b4d0 2834 #ifndef GL_EXT_color_matrix
sca8er 3:0c3bcea5b4d0 2835 #define GL_EXT_color_matrix 1
sca8er 3:0c3bcea5b4d0 2836 #endif
sca8er 3:0c3bcea5b4d0 2837
sca8er 3:0c3bcea5b4d0 2838 #ifndef GL_SGI_color_table
sca8er 3:0c3bcea5b4d0 2839 #define GL_SGI_color_table 1
sca8er 3:0c3bcea5b4d0 2840 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2841 GLAPI void APIENTRY glColorTableSGI (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2842 GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2843 GLAPI void APIENTRY glColorTableParameterivSGI (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2844 GLAPI void APIENTRY glCopyColorTableSGI (GLenum, GLenum, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2845 GLAPI void APIENTRY glGetColorTableSGI (GLenum, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 2846 GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2847 GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2848 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2849 typedef void (APIENTRY * PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
sca8er 3:0c3bcea5b4d0 2850 typedef void (APIENTRY * PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2851 typedef void (APIENTRY * PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 2852 typedef void (APIENTRY * PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 2853 typedef void (APIENTRY * PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, GLvoid *table);
sca8er 3:0c3bcea5b4d0 2854 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2855 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2856 #endif
sca8er 3:0c3bcea5b4d0 2857
sca8er 3:0c3bcea5b4d0 2858 #ifndef GL_SGIX_pixel_texture
sca8er 3:0c3bcea5b4d0 2859 #define GL_SGIX_pixel_texture 1
sca8er 3:0c3bcea5b4d0 2860 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2861 GLAPI void APIENTRY glPixelTexGenSGIX (GLenum);
sca8er 3:0c3bcea5b4d0 2862 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2863 typedef void (APIENTRY * PFNGLPIXELTEXGENSGIXPROC) (GLenum mode);
sca8er 3:0c3bcea5b4d0 2864 #endif
sca8er 3:0c3bcea5b4d0 2865
sca8er 3:0c3bcea5b4d0 2866 #ifndef GL_SGIS_pixel_texture
sca8er 3:0c3bcea5b4d0 2867 #define GL_SGIS_pixel_texture 1
sca8er 3:0c3bcea5b4d0 2868 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2869 GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 2870 GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 2871 GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 2872 GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2873 GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 2874 GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2875 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2876 typedef void (APIENTRY * PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 2877 typedef void (APIENTRY * PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 2878 typedef void (APIENTRY * PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 2879 typedef void (APIENTRY * PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 2880 typedef void (APIENTRY * PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 2881 typedef void (APIENTRY * PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 2882 #endif
sca8er 3:0c3bcea5b4d0 2883
sca8er 3:0c3bcea5b4d0 2884 #ifndef GL_SGIS_texture4D
sca8er 3:0c3bcea5b4d0 2885 #define GL_SGIS_texture4D 1
sca8er 3:0c3bcea5b4d0 2886 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2887 GLAPI void APIENTRY glTexImage4DSGIS (GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2888 GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2889 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2890 typedef void (APIENTRY * PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2891 typedef void (APIENTRY * PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const GLvoid *pixels);
sca8er 3:0c3bcea5b4d0 2892 #endif
sca8er 3:0c3bcea5b4d0 2893
sca8er 3:0c3bcea5b4d0 2894 #ifndef GL_SGI_texture_color_table
sca8er 3:0c3bcea5b4d0 2895 #define GL_SGI_texture_color_table 1
sca8er 3:0c3bcea5b4d0 2896 #endif
sca8er 3:0c3bcea5b4d0 2897
sca8er 3:0c3bcea5b4d0 2898 #ifndef GL_EXT_cmyka
sca8er 3:0c3bcea5b4d0 2899 #define GL_EXT_cmyka 1
sca8er 3:0c3bcea5b4d0 2900 #endif
sca8er 3:0c3bcea5b4d0 2901
sca8er 3:0c3bcea5b4d0 2902 #ifndef GL_EXT_texture_object
sca8er 3:0c3bcea5b4d0 2903 #define GL_EXT_texture_object 1
sca8er 3:0c3bcea5b4d0 2904 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2905 GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei, const GLuint *, GLboolean *);
sca8er 3:0c3bcea5b4d0 2906 GLAPI void APIENTRY glBindTextureEXT (GLenum, GLuint);
sca8er 3:0c3bcea5b4d0 2907 GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei, const GLuint *);
sca8er 3:0c3bcea5b4d0 2908 GLAPI void APIENTRY glGenTexturesEXT (GLsizei, GLuint *);
sca8er 3:0c3bcea5b4d0 2909 GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint);
sca8er 3:0c3bcea5b4d0 2910 GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei, const GLuint *, const GLclampf *);
sca8er 3:0c3bcea5b4d0 2911 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2912 typedef GLboolean (APIENTRY * PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences);
sca8er 3:0c3bcea5b4d0 2913 typedef void (APIENTRY * PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture);
sca8er 3:0c3bcea5b4d0 2914 typedef void (APIENTRY * PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures);
sca8er 3:0c3bcea5b4d0 2915 typedef void (APIENTRY * PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures);
sca8er 3:0c3bcea5b4d0 2916 typedef GLboolean (APIENTRY * PFNGLISTEXTUREEXTPROC) (GLuint texture);
sca8er 3:0c3bcea5b4d0 2917 typedef void (APIENTRY * PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities);
sca8er 3:0c3bcea5b4d0 2918 #endif
sca8er 3:0c3bcea5b4d0 2919
sca8er 3:0c3bcea5b4d0 2920 #ifndef GL_SGIS_detail_texture
sca8er 3:0c3bcea5b4d0 2921 #define GL_SGIS_detail_texture 1
sca8er 3:0c3bcea5b4d0 2922 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2923 GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2924 GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2925 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2926 typedef void (APIENTRY * PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points);
sca8er 3:0c3bcea5b4d0 2927 typedef void (APIENTRY * PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points);
sca8er 3:0c3bcea5b4d0 2928 #endif
sca8er 3:0c3bcea5b4d0 2929
sca8er 3:0c3bcea5b4d0 2930 #ifndef GL_SGIS_sharpen_texture
sca8er 3:0c3bcea5b4d0 2931 #define GL_SGIS_sharpen_texture 1
sca8er 3:0c3bcea5b4d0 2932 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2933 GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 2934 GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 2935 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2936 typedef void (APIENTRY * PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points);
sca8er 3:0c3bcea5b4d0 2937 typedef void (APIENTRY * PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points);
sca8er 3:0c3bcea5b4d0 2938 #endif
sca8er 3:0c3bcea5b4d0 2939
sca8er 3:0c3bcea5b4d0 2940 #ifndef GL_EXT_packed_pixels
sca8er 3:0c3bcea5b4d0 2941 #define GL_EXT_packed_pixels 1
sca8er 3:0c3bcea5b4d0 2942 #endif
sca8er 3:0c3bcea5b4d0 2943
sca8er 3:0c3bcea5b4d0 2944 #ifndef GL_SGIS_texture_lod
sca8er 3:0c3bcea5b4d0 2945 #define GL_SGIS_texture_lod 1
sca8er 3:0c3bcea5b4d0 2946 #endif
sca8er 3:0c3bcea5b4d0 2947
sca8er 3:0c3bcea5b4d0 2948 #ifndef GL_SGIS_multisample
sca8er 3:0c3bcea5b4d0 2949 #define GL_SGIS_multisample 1
sca8er 3:0c3bcea5b4d0 2950 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2951 GLAPI void APIENTRY glSampleMaskSGIS (GLclampf, GLboolean);
sca8er 3:0c3bcea5b4d0 2952 GLAPI void APIENTRY glSamplePatternSGIS (GLenum);
sca8er 3:0c3bcea5b4d0 2953 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2954 typedef void (APIENTRY * PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert);
sca8er 3:0c3bcea5b4d0 2955 typedef void (APIENTRY * PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern);
sca8er 3:0c3bcea5b4d0 2956 #endif
sca8er 3:0c3bcea5b4d0 2957
sca8er 3:0c3bcea5b4d0 2958 #ifndef GL_EXT_rescale_normal
sca8er 3:0c3bcea5b4d0 2959 #define GL_EXT_rescale_normal 1
sca8er 3:0c3bcea5b4d0 2960 #endif
sca8er 3:0c3bcea5b4d0 2961
sca8er 3:0c3bcea5b4d0 2962 #ifndef GL_EXT_vertex_array
sca8er 3:0c3bcea5b4d0 2963 #define GL_EXT_vertex_array 1
sca8er 3:0c3bcea5b4d0 2964 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 2965 GLAPI void APIENTRY glArrayElementEXT (GLint);
sca8er 3:0c3bcea5b4d0 2966 GLAPI void APIENTRY glColorPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2967 GLAPI void APIENTRY glDrawArraysEXT (GLenum, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 2968 GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei, GLsizei, const GLboolean *);
sca8er 3:0c3bcea5b4d0 2969 GLAPI void APIENTRY glGetPointervEXT (GLenum, GLvoid* *);
sca8er 3:0c3bcea5b4d0 2970 GLAPI void APIENTRY glIndexPointerEXT (GLenum, GLsizei, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2971 GLAPI void APIENTRY glNormalPointerEXT (GLenum, GLsizei, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2972 GLAPI void APIENTRY glTexCoordPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2973 GLAPI void APIENTRY glVertexPointerEXT (GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 2974 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 2975 typedef void (APIENTRY * PFNGLARRAYELEMENTEXTPROC) (GLint i);
sca8er 3:0c3bcea5b4d0 2976 typedef void (APIENTRY * PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2977 typedef void (APIENTRY * PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count);
sca8er 3:0c3bcea5b4d0 2978 typedef void (APIENTRY * PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer);
sca8er 3:0c3bcea5b4d0 2979 typedef void (APIENTRY * PFNGLGETPOINTERVEXTPROC) (GLenum pname, GLvoid* *params);
sca8er 3:0c3bcea5b4d0 2980 typedef void (APIENTRY * PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2981 typedef void (APIENTRY * PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2982 typedef void (APIENTRY * PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2983 typedef void (APIENTRY * PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 2984 #endif
sca8er 3:0c3bcea5b4d0 2985
sca8er 3:0c3bcea5b4d0 2986 #ifndef GL_EXT_misc_attribute
sca8er 3:0c3bcea5b4d0 2987 #define GL_EXT_misc_attribute 1
sca8er 3:0c3bcea5b4d0 2988 #endif
sca8er 3:0c3bcea5b4d0 2989
sca8er 3:0c3bcea5b4d0 2990 #ifndef GL_SGIS_generate_mipmap
sca8er 3:0c3bcea5b4d0 2991 #define GL_SGIS_generate_mipmap 1
sca8er 3:0c3bcea5b4d0 2992 #endif
sca8er 3:0c3bcea5b4d0 2993
sca8er 3:0c3bcea5b4d0 2994 #ifndef GL_SGIX_clipmap
sca8er 3:0c3bcea5b4d0 2995 #define GL_SGIX_clipmap 1
sca8er 3:0c3bcea5b4d0 2996 #endif
sca8er 3:0c3bcea5b4d0 2997
sca8er 3:0c3bcea5b4d0 2998 #ifndef GL_SGIX_shadow
sca8er 3:0c3bcea5b4d0 2999 #define GL_SGIX_shadow 1
sca8er 3:0c3bcea5b4d0 3000 #endif
sca8er 3:0c3bcea5b4d0 3001
sca8er 3:0c3bcea5b4d0 3002 #ifndef GL_SGIS_texture_edge_clamp
sca8er 3:0c3bcea5b4d0 3003 #define GL_SGIS_texture_edge_clamp 1
sca8er 3:0c3bcea5b4d0 3004 #endif
sca8er 3:0c3bcea5b4d0 3005
sca8er 3:0c3bcea5b4d0 3006 #ifndef GL_SGIS_texture_border_clamp
sca8er 3:0c3bcea5b4d0 3007 #define GL_SGIS_texture_border_clamp 1
sca8er 3:0c3bcea5b4d0 3008 #endif
sca8er 3:0c3bcea5b4d0 3009
sca8er 3:0c3bcea5b4d0 3010 #ifndef GL_EXT_blend_minmax
sca8er 3:0c3bcea5b4d0 3011 #define GL_EXT_blend_minmax 1
sca8er 3:0c3bcea5b4d0 3012 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3013 GLAPI void APIENTRY glBlendEquationEXT (GLenum);
sca8er 3:0c3bcea5b4d0 3014 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3015 typedef void (APIENTRY * PFNGLBLENDEQUATIONEXTPROC) (GLenum mode);
sca8er 3:0c3bcea5b4d0 3016 #endif
sca8er 3:0c3bcea5b4d0 3017
sca8er 3:0c3bcea5b4d0 3018 #ifndef GL_EXT_blend_subtract
sca8er 3:0c3bcea5b4d0 3019 #define GL_EXT_blend_subtract 1
sca8er 3:0c3bcea5b4d0 3020 #endif
sca8er 3:0c3bcea5b4d0 3021
sca8er 3:0c3bcea5b4d0 3022 #ifndef GL_EXT_blend_logic_op
sca8er 3:0c3bcea5b4d0 3023 #define GL_EXT_blend_logic_op 1
sca8er 3:0c3bcea5b4d0 3024 #endif
sca8er 3:0c3bcea5b4d0 3025
sca8er 3:0c3bcea5b4d0 3026 #ifndef GL_SGIX_interlace
sca8er 3:0c3bcea5b4d0 3027 #define GL_SGIX_interlace 1
sca8er 3:0c3bcea5b4d0 3028 #endif
sca8er 3:0c3bcea5b4d0 3029
sca8er 3:0c3bcea5b4d0 3030 #ifndef GL_SGIX_pixel_tiles
sca8er 3:0c3bcea5b4d0 3031 #define GL_SGIX_pixel_tiles 1
sca8er 3:0c3bcea5b4d0 3032 #endif
sca8er 3:0c3bcea5b4d0 3033
sca8er 3:0c3bcea5b4d0 3034 #ifndef GL_SGIX_texture_select
sca8er 3:0c3bcea5b4d0 3035 #define GL_SGIX_texture_select 1
sca8er 3:0c3bcea5b4d0 3036 #endif
sca8er 3:0c3bcea5b4d0 3037
sca8er 3:0c3bcea5b4d0 3038 #ifndef GL_SGIX_sprite
sca8er 3:0c3bcea5b4d0 3039 #define GL_SGIX_sprite 1
sca8er 3:0c3bcea5b4d0 3040 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3041 GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3042 GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3043 GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3044 GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3045 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3046 typedef void (APIENTRY * PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3047 typedef void (APIENTRY * PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3048 typedef void (APIENTRY * PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3049 typedef void (APIENTRY * PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3050 #endif
sca8er 3:0c3bcea5b4d0 3051
sca8er 3:0c3bcea5b4d0 3052 #ifndef GL_SGIX_texture_multi_buffer
sca8er 3:0c3bcea5b4d0 3053 #define GL_SGIX_texture_multi_buffer 1
sca8er 3:0c3bcea5b4d0 3054 #endif
sca8er 3:0c3bcea5b4d0 3055
sca8er 3:0c3bcea5b4d0 3056 #ifndef GL_EXT_point_parameters
sca8er 3:0c3bcea5b4d0 3057 #define GL_EXT_point_parameters 1
sca8er 3:0c3bcea5b4d0 3058 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3059 GLAPI void APIENTRY glPointParameterfEXT (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3060 GLAPI void APIENTRY glPointParameterfvEXT (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3061 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3062 typedef void (APIENTRY * PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3063 typedef void (APIENTRY * PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3064 #endif
sca8er 3:0c3bcea5b4d0 3065
sca8er 3:0c3bcea5b4d0 3066 #ifndef GL_SGIS_point_parameters
sca8er 3:0c3bcea5b4d0 3067 #define GL_SGIS_point_parameters 1
sca8er 3:0c3bcea5b4d0 3068 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3069 GLAPI void APIENTRY glPointParameterfSGIS (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3070 GLAPI void APIENTRY glPointParameterfvSGIS (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3071 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3072 typedef void (APIENTRY * PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3073 typedef void (APIENTRY * PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3074 #endif
sca8er 3:0c3bcea5b4d0 3075
sca8er 3:0c3bcea5b4d0 3076 #ifndef GL_SGIX_instruments
sca8er 3:0c3bcea5b4d0 3077 #define GL_SGIX_instruments 1
sca8er 3:0c3bcea5b4d0 3078 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3079 GLAPI GLint APIENTRY glGetInstrumentsSGIX (void);
sca8er 3:0c3bcea5b4d0 3080 GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei, GLint *);
sca8er 3:0c3bcea5b4d0 3081 GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *);
sca8er 3:0c3bcea5b4d0 3082 GLAPI void APIENTRY glReadInstrumentsSGIX (GLint);
sca8er 3:0c3bcea5b4d0 3083 GLAPI void APIENTRY glStartInstrumentsSGIX (void);
sca8er 3:0c3bcea5b4d0 3084 GLAPI void APIENTRY glStopInstrumentsSGIX (GLint);
sca8er 3:0c3bcea5b4d0 3085 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3086 typedef GLint (APIENTRY * PFNGLGETINSTRUMENTSSGIXPROC) (void);
sca8er 3:0c3bcea5b4d0 3087 typedef void (APIENTRY * PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer);
sca8er 3:0c3bcea5b4d0 3088 typedef GLint (APIENTRY * PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p);
sca8er 3:0c3bcea5b4d0 3089 typedef void (APIENTRY * PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker);
sca8er 3:0c3bcea5b4d0 3090 typedef void (APIENTRY * PFNGLSTARTINSTRUMENTSSGIXPROC) (void);
sca8er 3:0c3bcea5b4d0 3091 typedef void (APIENTRY * PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker);
sca8er 3:0c3bcea5b4d0 3092 #endif
sca8er 3:0c3bcea5b4d0 3093
sca8er 3:0c3bcea5b4d0 3094 #ifndef GL_SGIX_texture_scale_bias
sca8er 3:0c3bcea5b4d0 3095 #define GL_SGIX_texture_scale_bias 1
sca8er 3:0c3bcea5b4d0 3096 #endif
sca8er 3:0c3bcea5b4d0 3097
sca8er 3:0c3bcea5b4d0 3098 #ifndef GL_SGIX_framezoom
sca8er 3:0c3bcea5b4d0 3099 #define GL_SGIX_framezoom 1
sca8er 3:0c3bcea5b4d0 3100 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3101 GLAPI void APIENTRY glFrameZoomSGIX (GLint);
sca8er 3:0c3bcea5b4d0 3102 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3103 typedef void (APIENTRY * PFNGLFRAMEZOOMSGIXPROC) (GLint factor);
sca8er 3:0c3bcea5b4d0 3104 #endif
sca8er 3:0c3bcea5b4d0 3105
sca8er 3:0c3bcea5b4d0 3106 #ifndef GL_SGIX_tag_sample_buffer
sca8er 3:0c3bcea5b4d0 3107 #define GL_SGIX_tag_sample_buffer 1
sca8er 3:0c3bcea5b4d0 3108 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3109 GLAPI void APIENTRY glTagSampleBufferSGIX (void);
sca8er 3:0c3bcea5b4d0 3110 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3111 typedef void (APIENTRY * PFNGLTAGSAMPLEBUFFERSGIXPROC) (void);
sca8er 3:0c3bcea5b4d0 3112 #endif
sca8er 3:0c3bcea5b4d0 3113
sca8er 3:0c3bcea5b4d0 3114 #ifndef GL_SGIX_polynomial_ffd
sca8er 3:0c3bcea5b4d0 3115 #define GL_SGIX_polynomial_ffd 1
sca8er 3:0c3bcea5b4d0 3116 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3117 GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 3118 GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3119 GLAPI void APIENTRY glDeformSGIX (GLbitfield);
sca8er 3:0c3bcea5b4d0 3120 GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield);
sca8er 3:0c3bcea5b4d0 3121 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3122 typedef void (APIENTRY * PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points);
sca8er 3:0c3bcea5b4d0 3123 typedef void (APIENTRY * PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points);
sca8er 3:0c3bcea5b4d0 3124 typedef void (APIENTRY * PFNGLDEFORMSGIXPROC) (GLbitfield mask);
sca8er 3:0c3bcea5b4d0 3125 typedef void (APIENTRY * PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask);
sca8er 3:0c3bcea5b4d0 3126 #endif
sca8er 3:0c3bcea5b4d0 3127
sca8er 3:0c3bcea5b4d0 3128 #ifndef GL_SGIX_reference_plane
sca8er 3:0c3bcea5b4d0 3129 #define GL_SGIX_reference_plane 1
sca8er 3:0c3bcea5b4d0 3130 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3131 GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3132 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3133 typedef void (APIENTRY * PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation);
sca8er 3:0c3bcea5b4d0 3134 #endif
sca8er 3:0c3bcea5b4d0 3135
sca8er 3:0c3bcea5b4d0 3136 #ifndef GL_SGIX_flush_raster
sca8er 3:0c3bcea5b4d0 3137 #define GL_SGIX_flush_raster 1
sca8er 3:0c3bcea5b4d0 3138 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3139 GLAPI void APIENTRY glFlushRasterSGIX (void);
sca8er 3:0c3bcea5b4d0 3140 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3141 typedef void (APIENTRY * PFNGLFLUSHRASTERSGIXPROC) (void);
sca8er 3:0c3bcea5b4d0 3142 #endif
sca8er 3:0c3bcea5b4d0 3143
sca8er 3:0c3bcea5b4d0 3144 #ifndef GL_SGIX_depth_texture
sca8er 3:0c3bcea5b4d0 3145 #define GL_SGIX_depth_texture 1
sca8er 3:0c3bcea5b4d0 3146 #endif
sca8er 3:0c3bcea5b4d0 3147
sca8er 3:0c3bcea5b4d0 3148 #ifndef GL_SGIS_fog_function
sca8er 3:0c3bcea5b4d0 3149 #define GL_SGIS_fog_function 1
sca8er 3:0c3bcea5b4d0 3150 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3151 GLAPI void APIENTRY glFogFuncSGIS (GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3152 GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *);
sca8er 3:0c3bcea5b4d0 3153 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3154 typedef void (APIENTRY * PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points);
sca8er 3:0c3bcea5b4d0 3155 typedef void (APIENTRY * PFNGLGETFOGFUNCSGISPROC) (GLfloat *points);
sca8er 3:0c3bcea5b4d0 3156 #endif
sca8er 3:0c3bcea5b4d0 3157
sca8er 3:0c3bcea5b4d0 3158 #ifndef GL_SGIX_fog_offset
sca8er 3:0c3bcea5b4d0 3159 #define GL_SGIX_fog_offset 1
sca8er 3:0c3bcea5b4d0 3160 #endif
sca8er 3:0c3bcea5b4d0 3161
sca8er 3:0c3bcea5b4d0 3162 #ifndef GL_HP_image_transform
sca8er 3:0c3bcea5b4d0 3163 #define GL_HP_image_transform 1
sca8er 3:0c3bcea5b4d0 3164 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3165 GLAPI void APIENTRY glImageTransformParameteriHP (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3166 GLAPI void APIENTRY glImageTransformParameterfHP (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3167 GLAPI void APIENTRY glImageTransformParameterivHP (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3168 GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3169 GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3170 GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3171 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3172 typedef void (APIENTRY * PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3173 typedef void (APIENTRY * PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3174 typedef void (APIENTRY * PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3175 typedef void (APIENTRY * PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3176 typedef void (APIENTRY * PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3177 typedef void (APIENTRY * PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3178 #endif
sca8er 3:0c3bcea5b4d0 3179
sca8er 3:0c3bcea5b4d0 3180 #ifndef GL_HP_convolution_border_modes
sca8er 3:0c3bcea5b4d0 3181 #define GL_HP_convolution_border_modes 1
sca8er 3:0c3bcea5b4d0 3182 #endif
sca8er 3:0c3bcea5b4d0 3183
sca8er 3:0c3bcea5b4d0 3184 #ifndef GL_SGIX_texture_add_env
sca8er 3:0c3bcea5b4d0 3185 #define GL_SGIX_texture_add_env 1
sca8er 3:0c3bcea5b4d0 3186 #endif
sca8er 3:0c3bcea5b4d0 3187
sca8er 3:0c3bcea5b4d0 3188 #ifndef GL_EXT_color_subtable
sca8er 3:0c3bcea5b4d0 3189 #define GL_EXT_color_subtable 1
sca8er 3:0c3bcea5b4d0 3190 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3191 GLAPI void APIENTRY glColorSubTableEXT (GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3192 GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum, GLsizei, GLint, GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 3193 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3194 typedef void (APIENTRY * PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
sca8er 3:0c3bcea5b4d0 3195 typedef void (APIENTRY * PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
sca8er 3:0c3bcea5b4d0 3196 #endif
sca8er 3:0c3bcea5b4d0 3197
sca8er 3:0c3bcea5b4d0 3198 #ifndef GL_PGI_vertex_hints
sca8er 3:0c3bcea5b4d0 3199 #define GL_PGI_vertex_hints 1
sca8er 3:0c3bcea5b4d0 3200 #endif
sca8er 3:0c3bcea5b4d0 3201
sca8er 3:0c3bcea5b4d0 3202 #ifndef GL_PGI_misc_hints
sca8er 3:0c3bcea5b4d0 3203 #define GL_PGI_misc_hints 1
sca8er 3:0c3bcea5b4d0 3204 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3205 GLAPI void APIENTRY glHintPGI (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3206 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3207 typedef void (APIENTRY * PFNGLHINTPGIPROC) (GLenum target, GLint mode);
sca8er 3:0c3bcea5b4d0 3208 #endif
sca8er 3:0c3bcea5b4d0 3209
sca8er 3:0c3bcea5b4d0 3210 #ifndef GL_EXT_paletted_texture
sca8er 3:0c3bcea5b4d0 3211 #define GL_EXT_paletted_texture 1
sca8er 3:0c3bcea5b4d0 3212 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3213 GLAPI void APIENTRY glColorTableEXT (GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3214 GLAPI void APIENTRY glGetColorTableEXT (GLenum, GLenum, GLenum, GLvoid *);
sca8er 3:0c3bcea5b4d0 3215 GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3216 GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3217 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3218 typedef void (APIENTRY * PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
sca8er 3:0c3bcea5b4d0 3219 typedef void (APIENTRY * PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, GLvoid *data);
sca8er 3:0c3bcea5b4d0 3220 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3221 typedef void (APIENTRY * PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3222 #endif
sca8er 3:0c3bcea5b4d0 3223
sca8er 3:0c3bcea5b4d0 3224 #ifndef GL_EXT_clip_volume_hint
sca8er 3:0c3bcea5b4d0 3225 #define GL_EXT_clip_volume_hint 1
sca8er 3:0c3bcea5b4d0 3226 #endif
sca8er 3:0c3bcea5b4d0 3227
sca8er 3:0c3bcea5b4d0 3228 #ifndef GL_SGIX_list_priority
sca8er 3:0c3bcea5b4d0 3229 #define GL_SGIX_list_priority 1
sca8er 3:0c3bcea5b4d0 3230 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3231 GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3232 GLAPI void APIENTRY glGetListParameterivSGIX (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3233 GLAPI void APIENTRY glListParameterfSGIX (GLuint, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3234 GLAPI void APIENTRY glListParameterfvSGIX (GLuint, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3235 GLAPI void APIENTRY glListParameteriSGIX (GLuint, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3236 GLAPI void APIENTRY glListParameterivSGIX (GLuint, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3237 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3238 typedef void (APIENTRY * PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3239 typedef void (APIENTRY * PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3240 typedef void (APIENTRY * PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3241 typedef void (APIENTRY * PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3242 typedef void (APIENTRY * PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3243 typedef void (APIENTRY * PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3244 #endif
sca8er 3:0c3bcea5b4d0 3245
sca8er 3:0c3bcea5b4d0 3246 #ifndef GL_SGIX_ir_instrument1
sca8er 3:0c3bcea5b4d0 3247 #define GL_SGIX_ir_instrument1 1
sca8er 3:0c3bcea5b4d0 3248 #endif
sca8er 3:0c3bcea5b4d0 3249
sca8er 3:0c3bcea5b4d0 3250 #ifndef GL_SGIX_calligraphic_fragment
sca8er 3:0c3bcea5b4d0 3251 #define GL_SGIX_calligraphic_fragment 1
sca8er 3:0c3bcea5b4d0 3252 #endif
sca8er 3:0c3bcea5b4d0 3253
sca8er 3:0c3bcea5b4d0 3254 #ifndef GL_SGIX_texture_lod_bias
sca8er 3:0c3bcea5b4d0 3255 #define GL_SGIX_texture_lod_bias 1
sca8er 3:0c3bcea5b4d0 3256 #endif
sca8er 3:0c3bcea5b4d0 3257
sca8er 3:0c3bcea5b4d0 3258 #ifndef GL_SGIX_shadow_ambient
sca8er 3:0c3bcea5b4d0 3259 #define GL_SGIX_shadow_ambient 1
sca8er 3:0c3bcea5b4d0 3260 #endif
sca8er 3:0c3bcea5b4d0 3261
sca8er 3:0c3bcea5b4d0 3262 #ifndef GL_EXT_index_texture
sca8er 3:0c3bcea5b4d0 3263 #define GL_EXT_index_texture 1
sca8er 3:0c3bcea5b4d0 3264 #endif
sca8er 3:0c3bcea5b4d0 3265
sca8er 3:0c3bcea5b4d0 3266 #ifndef GL_EXT_index_material
sca8er 3:0c3bcea5b4d0 3267 #define GL_EXT_index_material 1
sca8er 3:0c3bcea5b4d0 3268 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3269 GLAPI void APIENTRY glIndexMaterialEXT (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3270 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3271 typedef void (APIENTRY * PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode);
sca8er 3:0c3bcea5b4d0 3272 #endif
sca8er 3:0c3bcea5b4d0 3273
sca8er 3:0c3bcea5b4d0 3274 #ifndef GL_EXT_index_func
sca8er 3:0c3bcea5b4d0 3275 #define GL_EXT_index_func 1
sca8er 3:0c3bcea5b4d0 3276 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3277 GLAPI void APIENTRY glIndexFuncEXT (GLenum, GLclampf);
sca8er 3:0c3bcea5b4d0 3278 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3279 typedef void (APIENTRY * PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref);
sca8er 3:0c3bcea5b4d0 3280 #endif
sca8er 3:0c3bcea5b4d0 3281
sca8er 3:0c3bcea5b4d0 3282 #ifndef GL_EXT_index_array_formats
sca8er 3:0c3bcea5b4d0 3283 #define GL_EXT_index_array_formats 1
sca8er 3:0c3bcea5b4d0 3284 #endif
sca8er 3:0c3bcea5b4d0 3285
sca8er 3:0c3bcea5b4d0 3286 #ifndef GL_EXT_compiled_vertex_array
sca8er 3:0c3bcea5b4d0 3287 #define GL_EXT_compiled_vertex_array 1
sca8er 3:0c3bcea5b4d0 3288 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3289 GLAPI void APIENTRY glLockArraysEXT (GLint, GLsizei);
sca8er 3:0c3bcea5b4d0 3290 GLAPI void APIENTRY glUnlockArraysEXT (void);
sca8er 3:0c3bcea5b4d0 3291 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3292 typedef void (APIENTRY * PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count);
sca8er 3:0c3bcea5b4d0 3293 typedef void (APIENTRY * PFNGLUNLOCKARRAYSEXTPROC) (void);
sca8er 3:0c3bcea5b4d0 3294 #endif
sca8er 3:0c3bcea5b4d0 3295
sca8er 3:0c3bcea5b4d0 3296 #ifndef GL_EXT_cull_vertex
sca8er 3:0c3bcea5b4d0 3297 #define GL_EXT_cull_vertex 1
sca8er 3:0c3bcea5b4d0 3298 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3299 GLAPI void APIENTRY glCullParameterdvEXT (GLenum, GLdouble *);
sca8er 3:0c3bcea5b4d0 3300 GLAPI void APIENTRY glCullParameterfvEXT (GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3301 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3302 typedef void (APIENTRY * PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params);
sca8er 3:0c3bcea5b4d0 3303 typedef void (APIENTRY * PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3304 #endif
sca8er 3:0c3bcea5b4d0 3305
sca8er 3:0c3bcea5b4d0 3306 #ifndef GL_SGIX_ycrcb
sca8er 3:0c3bcea5b4d0 3307 #define GL_SGIX_ycrcb 1
sca8er 3:0c3bcea5b4d0 3308 #endif
sca8er 3:0c3bcea5b4d0 3309
sca8er 3:0c3bcea5b4d0 3310 #ifndef GL_SGIX_fragment_lighting
sca8er 3:0c3bcea5b4d0 3311 #define GL_SGIX_fragment_lighting 1
sca8er 3:0c3bcea5b4d0 3312 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3313 GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3314 GLAPI void APIENTRY glFragmentLightfSGIX (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3315 GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3316 GLAPI void APIENTRY glFragmentLightiSGIX (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3317 GLAPI void APIENTRY glFragmentLightivSGIX (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3318 GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3319 GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3320 GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3321 GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3322 GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3323 GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3324 GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3325 GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3326 GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3327 GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3328 GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3329 GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3330 GLAPI void APIENTRY glLightEnviSGIX (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3331 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3332 typedef void (APIENTRY * PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode);
sca8er 3:0c3bcea5b4d0 3333 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3334 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3335 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3336 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3337 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3338 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3339 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3340 typedef void (APIENTRY * PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3341 typedef void (APIENTRY * PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3342 typedef void (APIENTRY * PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3343 typedef void (APIENTRY * PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3344 typedef void (APIENTRY * PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3345 typedef void (APIENTRY * PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3346 typedef void (APIENTRY * PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3347 typedef void (APIENTRY * PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3348 typedef void (APIENTRY * PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3349 typedef void (APIENTRY * PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3350 #endif
sca8er 3:0c3bcea5b4d0 3351
sca8er 3:0c3bcea5b4d0 3352 #ifndef GL_IBM_rasterpos_clip
sca8er 3:0c3bcea5b4d0 3353 #define GL_IBM_rasterpos_clip 1
sca8er 3:0c3bcea5b4d0 3354 #endif
sca8er 3:0c3bcea5b4d0 3355
sca8er 3:0c3bcea5b4d0 3356 #ifndef GL_HP_texture_lighting
sca8er 3:0c3bcea5b4d0 3357 #define GL_HP_texture_lighting 1
sca8er 3:0c3bcea5b4d0 3358 #endif
sca8er 3:0c3bcea5b4d0 3359
sca8er 3:0c3bcea5b4d0 3360 #ifndef GL_EXT_draw_range_elements
sca8er 3:0c3bcea5b4d0 3361 #define GL_EXT_draw_range_elements 1
sca8er 3:0c3bcea5b4d0 3362 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3363 GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3364 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3365 typedef void (APIENTRY * PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
sca8er 3:0c3bcea5b4d0 3366 #endif
sca8er 3:0c3bcea5b4d0 3367
sca8er 3:0c3bcea5b4d0 3368 #ifndef GL_WIN_phong_shading
sca8er 3:0c3bcea5b4d0 3369 #define GL_WIN_phong_shading 1
sca8er 3:0c3bcea5b4d0 3370 #endif
sca8er 3:0c3bcea5b4d0 3371
sca8er 3:0c3bcea5b4d0 3372 #ifndef GL_WIN_specular_fog
sca8er 3:0c3bcea5b4d0 3373 #define GL_WIN_specular_fog 1
sca8er 3:0c3bcea5b4d0 3374 #endif
sca8er 3:0c3bcea5b4d0 3375
sca8er 3:0c3bcea5b4d0 3376 #ifndef GL_EXT_light_texture
sca8er 3:0c3bcea5b4d0 3377 #define GL_EXT_light_texture 1
sca8er 3:0c3bcea5b4d0 3378 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3379 GLAPI void APIENTRY glApplyTextureEXT (GLenum);
sca8er 3:0c3bcea5b4d0 3380 GLAPI void APIENTRY glTextureLightEXT (GLenum);
sca8er 3:0c3bcea5b4d0 3381 GLAPI void APIENTRY glTextureMaterialEXT (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3382 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3383 typedef void (APIENTRY * PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode);
sca8er 3:0c3bcea5b4d0 3384 typedef void (APIENTRY * PFNGLTEXTURELIGHTEXTPROC) (GLenum pname);
sca8er 3:0c3bcea5b4d0 3385 typedef void (APIENTRY * PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode);
sca8er 3:0c3bcea5b4d0 3386 #endif
sca8er 3:0c3bcea5b4d0 3387
sca8er 3:0c3bcea5b4d0 3388 #ifndef GL_SGIX_blend_alpha_minmax
sca8er 3:0c3bcea5b4d0 3389 #define GL_SGIX_blend_alpha_minmax 1
sca8er 3:0c3bcea5b4d0 3390 #endif
sca8er 3:0c3bcea5b4d0 3391
sca8er 3:0c3bcea5b4d0 3392 #ifndef GL_EXT_bgra
sca8er 3:0c3bcea5b4d0 3393 #define GL_EXT_bgra 1
sca8er 3:0c3bcea5b4d0 3394 #endif
sca8er 3:0c3bcea5b4d0 3395
sca8er 3:0c3bcea5b4d0 3396 #ifndef GL_SGIX_async
sca8er 3:0c3bcea5b4d0 3397 #define GL_SGIX_async 1
sca8er 3:0c3bcea5b4d0 3398 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3399 GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint);
sca8er 3:0c3bcea5b4d0 3400 GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *);
sca8er 3:0c3bcea5b4d0 3401 GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *);
sca8er 3:0c3bcea5b4d0 3402 GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei);
sca8er 3:0c3bcea5b4d0 3403 GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint, GLsizei);
sca8er 3:0c3bcea5b4d0 3404 GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint);
sca8er 3:0c3bcea5b4d0 3405 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3406 typedef void (APIENTRY * PFNGLASYNCMARKERSGIXPROC) (GLuint marker);
sca8er 3:0c3bcea5b4d0 3407 typedef GLint (APIENTRY * PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp);
sca8er 3:0c3bcea5b4d0 3408 typedef GLint (APIENTRY * PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp);
sca8er 3:0c3bcea5b4d0 3409 typedef GLuint (APIENTRY * PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range);
sca8er 3:0c3bcea5b4d0 3410 typedef void (APIENTRY * PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range);
sca8er 3:0c3bcea5b4d0 3411 typedef GLboolean (APIENTRY * PFNGLISASYNCMARKERSGIXPROC) (GLuint marker);
sca8er 3:0c3bcea5b4d0 3412 #endif
sca8er 3:0c3bcea5b4d0 3413
sca8er 3:0c3bcea5b4d0 3414 #ifndef GL_SGIX_async_pixel
sca8er 3:0c3bcea5b4d0 3415 #define GL_SGIX_async_pixel 1
sca8er 3:0c3bcea5b4d0 3416 #endif
sca8er 3:0c3bcea5b4d0 3417
sca8er 3:0c3bcea5b4d0 3418 #ifndef GL_SGIX_async_histogram
sca8er 3:0c3bcea5b4d0 3419 #define GL_SGIX_async_histogram 1
sca8er 3:0c3bcea5b4d0 3420 #endif
sca8er 3:0c3bcea5b4d0 3421
sca8er 3:0c3bcea5b4d0 3422 #ifndef GL_INTEL_parallel_arrays
sca8er 3:0c3bcea5b4d0 3423 #define GL_INTEL_parallel_arrays 1
sca8er 3:0c3bcea5b4d0 3424 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3425 GLAPI void APIENTRY glVertexPointervINTEL (GLint, GLenum, const GLvoid* *);
sca8er 3:0c3bcea5b4d0 3426 GLAPI void APIENTRY glNormalPointervINTEL (GLenum, const GLvoid* *);
sca8er 3:0c3bcea5b4d0 3427 GLAPI void APIENTRY glColorPointervINTEL (GLint, GLenum, const GLvoid* *);
sca8er 3:0c3bcea5b4d0 3428 GLAPI void APIENTRY glTexCoordPointervINTEL (GLint, GLenum, const GLvoid* *);
sca8er 3:0c3bcea5b4d0 3429 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3430 typedef void (APIENTRY * PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 3431 typedef void (APIENTRY * PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 3432 typedef void (APIENTRY * PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 3433 typedef void (APIENTRY * PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 3434 #endif
sca8er 3:0c3bcea5b4d0 3435
sca8er 3:0c3bcea5b4d0 3436 #ifndef GL_HP_occlusion_test
sca8er 3:0c3bcea5b4d0 3437 #define GL_HP_occlusion_test 1
sca8er 3:0c3bcea5b4d0 3438 #endif
sca8er 3:0c3bcea5b4d0 3439
sca8er 3:0c3bcea5b4d0 3440 #ifndef GL_EXT_pixel_transform
sca8er 3:0c3bcea5b4d0 3441 #define GL_EXT_pixel_transform 1
sca8er 3:0c3bcea5b4d0 3442 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3443 GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum, GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3444 GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum, GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3445 GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3446 GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3447 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3448 typedef void (APIENTRY * PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3449 typedef void (APIENTRY * PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3450 typedef void (APIENTRY * PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3451 typedef void (APIENTRY * PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3452 #endif
sca8er 3:0c3bcea5b4d0 3453
sca8er 3:0c3bcea5b4d0 3454 #ifndef GL_EXT_pixel_transform_color_table
sca8er 3:0c3bcea5b4d0 3455 #define GL_EXT_pixel_transform_color_table 1
sca8er 3:0c3bcea5b4d0 3456 #endif
sca8er 3:0c3bcea5b4d0 3457
sca8er 3:0c3bcea5b4d0 3458 #ifndef GL_EXT_shared_texture_palette
sca8er 3:0c3bcea5b4d0 3459 #define GL_EXT_shared_texture_palette 1
sca8er 3:0c3bcea5b4d0 3460 #endif
sca8er 3:0c3bcea5b4d0 3461
sca8er 3:0c3bcea5b4d0 3462 #ifndef GL_EXT_separate_specular_color
sca8er 3:0c3bcea5b4d0 3463 #define GL_EXT_separate_specular_color 1
sca8er 3:0c3bcea5b4d0 3464 #endif
sca8er 3:0c3bcea5b4d0 3465
sca8er 3:0c3bcea5b4d0 3466 #ifndef GL_EXT_secondary_color
sca8er 3:0c3bcea5b4d0 3467 #define GL_EXT_secondary_color 1
sca8er 3:0c3bcea5b4d0 3468 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3469 GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte, GLbyte, GLbyte);
sca8er 3:0c3bcea5b4d0 3470 GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *);
sca8er 3:0c3bcea5b4d0 3471 GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3472 GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3473 GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3474 GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3475 GLAPI void APIENTRY glSecondaryColor3iEXT (GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 3476 GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *);
sca8er 3:0c3bcea5b4d0 3477 GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3478 GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *);
sca8er 3:0c3bcea5b4d0 3479 GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte, GLubyte, GLubyte);
sca8er 3:0c3bcea5b4d0 3480 GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *);
sca8er 3:0c3bcea5b4d0 3481 GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 3482 GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *);
sca8er 3:0c3bcea5b4d0 3483 GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort, GLushort, GLushort);
sca8er 3:0c3bcea5b4d0 3484 GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *);
sca8er 3:0c3bcea5b4d0 3485 GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3486 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3487 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue);
sca8er 3:0c3bcea5b4d0 3488 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v);
sca8er 3:0c3bcea5b4d0 3489 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue);
sca8er 3:0c3bcea5b4d0 3490 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3491 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue);
sca8er 3:0c3bcea5b4d0 3492 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3493 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue);
sca8er 3:0c3bcea5b4d0 3494 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3495 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue);
sca8er 3:0c3bcea5b4d0 3496 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3497 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue);
sca8er 3:0c3bcea5b4d0 3498 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v);
sca8er 3:0c3bcea5b4d0 3499 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue);
sca8er 3:0c3bcea5b4d0 3500 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v);
sca8er 3:0c3bcea5b4d0 3501 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue);
sca8er 3:0c3bcea5b4d0 3502 typedef void (APIENTRY * PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v);
sca8er 3:0c3bcea5b4d0 3503 typedef void (APIENTRY * PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3504 #endif
sca8er 3:0c3bcea5b4d0 3505
sca8er 3:0c3bcea5b4d0 3506 #ifndef GL_EXT_texture_perturb_normal
sca8er 3:0c3bcea5b4d0 3507 #define GL_EXT_texture_perturb_normal 1
sca8er 3:0c3bcea5b4d0 3508 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3509 GLAPI void APIENTRY glTextureNormalEXT (GLenum);
sca8er 3:0c3bcea5b4d0 3510 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3511 typedef void (APIENTRY * PFNGLTEXTURENORMALEXTPROC) (GLenum mode);
sca8er 3:0c3bcea5b4d0 3512 #endif
sca8er 3:0c3bcea5b4d0 3513
sca8er 3:0c3bcea5b4d0 3514 #ifndef GL_EXT_multi_draw_arrays
sca8er 3:0c3bcea5b4d0 3515 #define GL_EXT_multi_draw_arrays 1
sca8er 3:0c3bcea5b4d0 3516 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3517 GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum, GLint *, GLsizei *, GLsizei);
sca8er 3:0c3bcea5b4d0 3518 GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum, const GLsizei *, GLenum, const GLvoid* *, GLsizei);
sca8er 3:0c3bcea5b4d0 3519 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3520 typedef void (APIENTRY * PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, GLint *first, GLsizei *count, GLsizei primcount);
sca8er 3:0c3bcea5b4d0 3521 typedef void (APIENTRY * PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
sca8er 3:0c3bcea5b4d0 3522 #endif
sca8er 3:0c3bcea5b4d0 3523
sca8er 3:0c3bcea5b4d0 3524 #ifndef GL_EXT_fog_coord
sca8er 3:0c3bcea5b4d0 3525 #define GL_EXT_fog_coord 1
sca8er 3:0c3bcea5b4d0 3526 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3527 GLAPI void APIENTRY glFogCoordfEXT (GLfloat);
sca8er 3:0c3bcea5b4d0 3528 GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3529 GLAPI void APIENTRY glFogCoorddEXT (GLdouble);
sca8er 3:0c3bcea5b4d0 3530 GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3531 GLAPI void APIENTRY glFogCoordPointerEXT (GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3532 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3533 typedef void (APIENTRY * PFNGLFOGCOORDFEXTPROC) (GLfloat coord);
sca8er 3:0c3bcea5b4d0 3534 typedef void (APIENTRY * PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord);
sca8er 3:0c3bcea5b4d0 3535 typedef void (APIENTRY * PFNGLFOGCOORDDEXTPROC) (GLdouble coord);
sca8er 3:0c3bcea5b4d0 3536 typedef void (APIENTRY * PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord);
sca8er 3:0c3bcea5b4d0 3537 typedef void (APIENTRY * PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3538 #endif
sca8er 3:0c3bcea5b4d0 3539
sca8er 3:0c3bcea5b4d0 3540 #ifndef GL_REND_screen_coordinates
sca8er 3:0c3bcea5b4d0 3541 #define GL_REND_screen_coordinates 1
sca8er 3:0c3bcea5b4d0 3542 #endif
sca8er 3:0c3bcea5b4d0 3543
sca8er 3:0c3bcea5b4d0 3544 #ifndef GL_EXT_coordinate_frame
sca8er 3:0c3bcea5b4d0 3545 #define GL_EXT_coordinate_frame 1
sca8er 3:0c3bcea5b4d0 3546 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3547 GLAPI void APIENTRY glTangent3bEXT (GLbyte, GLbyte, GLbyte);
sca8er 3:0c3bcea5b4d0 3548 GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *);
sca8er 3:0c3bcea5b4d0 3549 GLAPI void APIENTRY glTangent3dEXT (GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3550 GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3551 GLAPI void APIENTRY glTangent3fEXT (GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3552 GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3553 GLAPI void APIENTRY glTangent3iEXT (GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 3554 GLAPI void APIENTRY glTangent3ivEXT (const GLint *);
sca8er 3:0c3bcea5b4d0 3555 GLAPI void APIENTRY glTangent3sEXT (GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3556 GLAPI void APIENTRY glTangent3svEXT (const GLshort *);
sca8er 3:0c3bcea5b4d0 3557 GLAPI void APIENTRY glBinormal3bEXT (GLbyte, GLbyte, GLbyte);
sca8er 3:0c3bcea5b4d0 3558 GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *);
sca8er 3:0c3bcea5b4d0 3559 GLAPI void APIENTRY glBinormal3dEXT (GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3560 GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3561 GLAPI void APIENTRY glBinormal3fEXT (GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3562 GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3563 GLAPI void APIENTRY glBinormal3iEXT (GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 3564 GLAPI void APIENTRY glBinormal3ivEXT (const GLint *);
sca8er 3:0c3bcea5b4d0 3565 GLAPI void APIENTRY glBinormal3sEXT (GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3566 GLAPI void APIENTRY glBinormal3svEXT (const GLshort *);
sca8er 3:0c3bcea5b4d0 3567 GLAPI void APIENTRY glTangentPointerEXT (GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3568 GLAPI void APIENTRY glBinormalPointerEXT (GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3569 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3570 typedef void (APIENTRY * PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz);
sca8er 3:0c3bcea5b4d0 3571 typedef void (APIENTRY * PFNGLTANGENT3BVEXTPROC) (const GLbyte *v);
sca8er 3:0c3bcea5b4d0 3572 typedef void (APIENTRY * PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz);
sca8er 3:0c3bcea5b4d0 3573 typedef void (APIENTRY * PFNGLTANGENT3DVEXTPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3574 typedef void (APIENTRY * PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz);
sca8er 3:0c3bcea5b4d0 3575 typedef void (APIENTRY * PFNGLTANGENT3FVEXTPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3576 typedef void (APIENTRY * PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz);
sca8er 3:0c3bcea5b4d0 3577 typedef void (APIENTRY * PFNGLTANGENT3IVEXTPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3578 typedef void (APIENTRY * PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz);
sca8er 3:0c3bcea5b4d0 3579 typedef void (APIENTRY * PFNGLTANGENT3SVEXTPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3580 typedef void (APIENTRY * PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz);
sca8er 3:0c3bcea5b4d0 3581 typedef void (APIENTRY * PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v);
sca8er 3:0c3bcea5b4d0 3582 typedef void (APIENTRY * PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz);
sca8er 3:0c3bcea5b4d0 3583 typedef void (APIENTRY * PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3584 typedef void (APIENTRY * PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz);
sca8er 3:0c3bcea5b4d0 3585 typedef void (APIENTRY * PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3586 typedef void (APIENTRY * PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz);
sca8er 3:0c3bcea5b4d0 3587 typedef void (APIENTRY * PFNGLBINORMAL3IVEXTPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3588 typedef void (APIENTRY * PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz);
sca8er 3:0c3bcea5b4d0 3589 typedef void (APIENTRY * PFNGLBINORMAL3SVEXTPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3590 typedef void (APIENTRY * PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3591 typedef void (APIENTRY * PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3592 #endif
sca8er 3:0c3bcea5b4d0 3593
sca8er 3:0c3bcea5b4d0 3594 #ifndef GL_EXT_texture_env_combine
sca8er 3:0c3bcea5b4d0 3595 #define GL_EXT_texture_env_combine 1
sca8er 3:0c3bcea5b4d0 3596 #endif
sca8er 3:0c3bcea5b4d0 3597
sca8er 3:0c3bcea5b4d0 3598 #ifndef GL_APPLE_specular_vector
sca8er 3:0c3bcea5b4d0 3599 #define GL_APPLE_specular_vector 1
sca8er 3:0c3bcea5b4d0 3600 #endif
sca8er 3:0c3bcea5b4d0 3601
sca8er 3:0c3bcea5b4d0 3602 #ifndef GL_APPLE_transform_hint
sca8er 3:0c3bcea5b4d0 3603 #define GL_APPLE_transform_hint 1
sca8er 3:0c3bcea5b4d0 3604 #endif
sca8er 3:0c3bcea5b4d0 3605
sca8er 3:0c3bcea5b4d0 3606 #ifndef GL_SGIX_fog_scale
sca8er 3:0c3bcea5b4d0 3607 #define GL_SGIX_fog_scale 1
sca8er 3:0c3bcea5b4d0 3608 #endif
sca8er 3:0c3bcea5b4d0 3609
sca8er 3:0c3bcea5b4d0 3610 #ifndef GL_SUNX_constant_data
sca8er 3:0c3bcea5b4d0 3611 #define GL_SUNX_constant_data 1
sca8er 3:0c3bcea5b4d0 3612 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3613 GLAPI void APIENTRY glFinishTextureSUNX (void);
sca8er 3:0c3bcea5b4d0 3614 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3615 typedef void (APIENTRY * PFNGLFINISHTEXTURESUNXPROC) (void);
sca8er 3:0c3bcea5b4d0 3616 #endif
sca8er 3:0c3bcea5b4d0 3617
sca8er 3:0c3bcea5b4d0 3618 #ifndef GL_SUN_global_alpha
sca8er 3:0c3bcea5b4d0 3619 #define GL_SUN_global_alpha 1
sca8er 3:0c3bcea5b4d0 3620 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3621 GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte);
sca8er 3:0c3bcea5b4d0 3622 GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort);
sca8er 3:0c3bcea5b4d0 3623 GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint);
sca8er 3:0c3bcea5b4d0 3624 GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat);
sca8er 3:0c3bcea5b4d0 3625 GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble);
sca8er 3:0c3bcea5b4d0 3626 GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte);
sca8er 3:0c3bcea5b4d0 3627 GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort);
sca8er 3:0c3bcea5b4d0 3628 GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint);
sca8er 3:0c3bcea5b4d0 3629 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3630 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor);
sca8er 3:0c3bcea5b4d0 3631 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor);
sca8er 3:0c3bcea5b4d0 3632 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor);
sca8er 3:0c3bcea5b4d0 3633 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor);
sca8er 3:0c3bcea5b4d0 3634 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor);
sca8er 3:0c3bcea5b4d0 3635 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor);
sca8er 3:0c3bcea5b4d0 3636 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor);
sca8er 3:0c3bcea5b4d0 3637 typedef void (APIENTRY * PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor);
sca8er 3:0c3bcea5b4d0 3638 #endif
sca8er 3:0c3bcea5b4d0 3639
sca8er 3:0c3bcea5b4d0 3640 #ifndef GL_SUN_triangle_list
sca8er 3:0c3bcea5b4d0 3641 #define GL_SUN_triangle_list 1
sca8er 3:0c3bcea5b4d0 3642 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3643 GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint);
sca8er 3:0c3bcea5b4d0 3644 GLAPI void APIENTRY glReplacementCodeusSUN (GLushort);
sca8er 3:0c3bcea5b4d0 3645 GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte);
sca8er 3:0c3bcea5b4d0 3646 GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *);
sca8er 3:0c3bcea5b4d0 3647 GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *);
sca8er 3:0c3bcea5b4d0 3648 GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *);
sca8er 3:0c3bcea5b4d0 3649 GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum, GLsizei, const GLvoid* *);
sca8er 3:0c3bcea5b4d0 3650 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3651 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code);
sca8er 3:0c3bcea5b4d0 3652 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code);
sca8er 3:0c3bcea5b4d0 3653 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code);
sca8er 3:0c3bcea5b4d0 3654 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code);
sca8er 3:0c3bcea5b4d0 3655 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code);
sca8er 3:0c3bcea5b4d0 3656 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code);
sca8er 3:0c3bcea5b4d0 3657 typedef void (APIENTRY * PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 3658 #endif
sca8er 3:0c3bcea5b4d0 3659
sca8er 3:0c3bcea5b4d0 3660 #ifndef GL_SUN_vertex
sca8er 3:0c3bcea5b4d0 3661 #define GL_SUN_vertex 1
sca8er 3:0c3bcea5b4d0 3662 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3663 GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3664 GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3665 GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3666 GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3667 GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3668 GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3669 GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3670 GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3671 GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3672 GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3673 GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3674 GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3675 GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3676 GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3677 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3678 GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *, const GLubyte *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3679 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3680 GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3681 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3682 GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3683 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3684 GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3685 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3686 GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3687 GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3688 GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLenum *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3689 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3690 GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLenum *, const GLubyte *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3691 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3692 GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3693 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3694 GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3695 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3696 GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3697 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3698 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3699 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3700 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3701 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3702 GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3703 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3704 typedef void (APIENTRY * PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y);
sca8er 3:0c3bcea5b4d0 3705 typedef void (APIENTRY * PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3706 typedef void (APIENTRY * PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3707 typedef void (APIENTRY * PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3708 typedef void (APIENTRY * PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3709 typedef void (APIENTRY * PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3710 typedef void (APIENTRY * PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3711 typedef void (APIENTRY * PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3712 typedef void (APIENTRY * PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3713 typedef void (APIENTRY * PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3714 typedef void (APIENTRY * PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3715 typedef void (APIENTRY * PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3716 typedef void (APIENTRY * PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 3717 typedef void (APIENTRY * PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3718 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3719 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3720 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3721 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3722 typedef void (APIENTRY * PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3723 typedef void (APIENTRY * PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3724 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3725 typedef void (APIENTRY * PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3726 typedef void (APIENTRY * PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 3727 typedef void (APIENTRY * PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3728 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLenum rc, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3729 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3730 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLenum rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3731 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLenum *rc, const GLubyte *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3732 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLenum rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3733 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *c, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3734 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLenum rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3735 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3736 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLenum rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3737 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3738 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLenum rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3739 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *tc, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3740 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLenum rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3741 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3742 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLenum rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3743 typedef void (APIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLenum *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3744 #endif
sca8er 3:0c3bcea5b4d0 3745
sca8er 3:0c3bcea5b4d0 3746 #ifndef GL_EXT_blend_func_separate
sca8er 3:0c3bcea5b4d0 3747 #define GL_EXT_blend_func_separate 1
sca8er 3:0c3bcea5b4d0 3748 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3749 GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3750 GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3751 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3752 typedef void (APIENTRY * PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
sca8er 3:0c3bcea5b4d0 3753 typedef void (APIENTRY * PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
sca8er 3:0c3bcea5b4d0 3754 #endif
sca8er 3:0c3bcea5b4d0 3755
sca8er 3:0c3bcea5b4d0 3756 #ifndef GL_INGR_color_clamp
sca8er 3:0c3bcea5b4d0 3757 #define GL_INGR_color_clamp 1
sca8er 3:0c3bcea5b4d0 3758 #endif
sca8er 3:0c3bcea5b4d0 3759
sca8er 3:0c3bcea5b4d0 3760 #ifndef GL_INGR_interlace_read
sca8er 3:0c3bcea5b4d0 3761 #define GL_INGR_interlace_read 1
sca8er 3:0c3bcea5b4d0 3762 #endif
sca8er 3:0c3bcea5b4d0 3763
sca8er 3:0c3bcea5b4d0 3764 #ifndef GL_EXT_stencil_wrap
sca8er 3:0c3bcea5b4d0 3765 #define GL_EXT_stencil_wrap 1
sca8er 3:0c3bcea5b4d0 3766 #endif
sca8er 3:0c3bcea5b4d0 3767
sca8er 3:0c3bcea5b4d0 3768 #ifndef GL_EXT_422_pixels
sca8er 3:0c3bcea5b4d0 3769 #define GL_EXT_422_pixels 1
sca8er 3:0c3bcea5b4d0 3770 #endif
sca8er 3:0c3bcea5b4d0 3771
sca8er 3:0c3bcea5b4d0 3772 #ifndef GL_NV_texgen_reflection
sca8er 3:0c3bcea5b4d0 3773 #define GL_NV_texgen_reflection 1
sca8er 3:0c3bcea5b4d0 3774 #endif
sca8er 3:0c3bcea5b4d0 3775
sca8er 3:0c3bcea5b4d0 3776 #ifndef GL_SUN_convolution_border_modes
sca8er 3:0c3bcea5b4d0 3777 #define GL_SUN_convolution_border_modes 1
sca8er 3:0c3bcea5b4d0 3778 #endif
sca8er 3:0c3bcea5b4d0 3779
sca8er 3:0c3bcea5b4d0 3780 #ifndef GL_EXT_texture_env_add
sca8er 3:0c3bcea5b4d0 3781 #define GL_EXT_texture_env_add 1
sca8er 3:0c3bcea5b4d0 3782 #endif
sca8er 3:0c3bcea5b4d0 3783
sca8er 3:0c3bcea5b4d0 3784 #ifndef GL_EXT_texture_lod_bias
sca8er 3:0c3bcea5b4d0 3785 #define GL_EXT_texture_lod_bias 1
sca8er 3:0c3bcea5b4d0 3786 #endif
sca8er 3:0c3bcea5b4d0 3787
sca8er 3:0c3bcea5b4d0 3788 #ifndef GL_EXT_texture_filter_anisotropic
sca8er 3:0c3bcea5b4d0 3789 #define GL_EXT_texture_filter_anisotropic 1
sca8er 3:0c3bcea5b4d0 3790 #endif
sca8er 3:0c3bcea5b4d0 3791
sca8er 3:0c3bcea5b4d0 3792 #ifndef GL_EXT_vertex_weighting
sca8er 3:0c3bcea5b4d0 3793 #define GL_EXT_vertex_weighting 1
sca8er 3:0c3bcea5b4d0 3794 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3795 GLAPI void APIENTRY glVertexWeightfEXT (GLfloat);
sca8er 3:0c3bcea5b4d0 3796 GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3797 GLAPI void APIENTRY glVertexWeightPointerEXT (GLsizei, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3798 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3799 typedef void (APIENTRY * PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight);
sca8er 3:0c3bcea5b4d0 3800 typedef void (APIENTRY * PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight);
sca8er 3:0c3bcea5b4d0 3801 typedef void (APIENTRY * PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLsizei size, GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3802 #endif
sca8er 3:0c3bcea5b4d0 3803
sca8er 3:0c3bcea5b4d0 3804 #ifndef GL_NV_light_max_exponent
sca8er 3:0c3bcea5b4d0 3805 #define GL_NV_light_max_exponent 1
sca8er 3:0c3bcea5b4d0 3806 #endif
sca8er 3:0c3bcea5b4d0 3807
sca8er 3:0c3bcea5b4d0 3808 #ifndef GL_NV_vertex_array_range
sca8er 3:0c3bcea5b4d0 3809 #define GL_NV_vertex_array_range 1
sca8er 3:0c3bcea5b4d0 3810 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3811 GLAPI void APIENTRY glFlushVertexArrayRangeNV (void);
sca8er 3:0c3bcea5b4d0 3812 GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 3813 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3814 typedef void (APIENTRY * PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void);
sca8er 3:0c3bcea5b4d0 3815 typedef void (APIENTRY * PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 3816 #endif
sca8er 3:0c3bcea5b4d0 3817
sca8er 3:0c3bcea5b4d0 3818 #ifndef GL_NV_register_combiners
sca8er 3:0c3bcea5b4d0 3819 #define GL_NV_register_combiners 1
sca8er 3:0c3bcea5b4d0 3820 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3821 GLAPI void APIENTRY glCombinerParameterfvNV (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 3822 GLAPI void APIENTRY glCombinerParameterfNV (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 3823 GLAPI void APIENTRY glCombinerParameterivNV (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 3824 GLAPI void APIENTRY glCombinerParameteriNV (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 3825 GLAPI void APIENTRY glCombinerInputNV (GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3826 GLAPI void APIENTRY glCombinerOutputNV (GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
sca8er 3:0c3bcea5b4d0 3827 GLAPI void APIENTRY glFinalCombinerInputNV (GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 3828 GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum, GLenum, GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3829 GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum, GLenum, GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3830 GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum, GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3831 GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum, GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3832 GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 3833 GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 3834 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3835 typedef void (APIENTRY * PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 3836 typedef void (APIENTRY * PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 3837 typedef void (APIENTRY * PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 3838 typedef void (APIENTRY * PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 3839 typedef void (APIENTRY * PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
sca8er 3:0c3bcea5b4d0 3840 typedef void (APIENTRY * PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum);
sca8er 3:0c3bcea5b4d0 3841 typedef void (APIENTRY * PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
sca8er 3:0c3bcea5b4d0 3842 typedef void (APIENTRY * PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3843 typedef void (APIENTRY * PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3844 typedef void (APIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3845 typedef void (APIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3846 typedef void (APIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 3847 typedef void (APIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 3848 #endif
sca8er 3:0c3bcea5b4d0 3849
sca8er 3:0c3bcea5b4d0 3850 #ifndef GL_NV_fog_distance
sca8er 3:0c3bcea5b4d0 3851 #define GL_NV_fog_distance 1
sca8er 3:0c3bcea5b4d0 3852 #endif
sca8er 3:0c3bcea5b4d0 3853
sca8er 3:0c3bcea5b4d0 3854 #ifndef GL_NV_texgen_emboss
sca8er 3:0c3bcea5b4d0 3855 #define GL_NV_texgen_emboss 1
sca8er 3:0c3bcea5b4d0 3856 #endif
sca8er 3:0c3bcea5b4d0 3857
sca8er 3:0c3bcea5b4d0 3858 #ifndef GL_NV_blend_square
sca8er 3:0c3bcea5b4d0 3859 #define GL_NV_blend_square 1
sca8er 3:0c3bcea5b4d0 3860 #endif
sca8er 3:0c3bcea5b4d0 3861
sca8er 3:0c3bcea5b4d0 3862 #ifndef GL_NV_texture_env_combine4
sca8er 3:0c3bcea5b4d0 3863 #define GL_NV_texture_env_combine4 1
sca8er 3:0c3bcea5b4d0 3864 #endif
sca8er 3:0c3bcea5b4d0 3865
sca8er 3:0c3bcea5b4d0 3866 #ifndef GL_MESA_resize_buffers
sca8er 3:0c3bcea5b4d0 3867 #define GL_MESA_resize_buffers 1
sca8er 3:0c3bcea5b4d0 3868 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3869 GLAPI void APIENTRY glResizeBuffersMESA (void);
sca8er 3:0c3bcea5b4d0 3870 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3871 typedef void (APIENTRY * PFNGLRESIZEBUFFERSMESAPROC) (void);
sca8er 3:0c3bcea5b4d0 3872 #endif
sca8er 3:0c3bcea5b4d0 3873
sca8er 3:0c3bcea5b4d0 3874 #ifndef GL_MESA_window_pos
sca8er 3:0c3bcea5b4d0 3875 #define GL_MESA_window_pos 1
sca8er 3:0c3bcea5b4d0 3876 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3877 GLAPI void APIENTRY glWindowPos2dMESA (GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3878 GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3879 GLAPI void APIENTRY glWindowPos2fMESA (GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3880 GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3881 GLAPI void APIENTRY glWindowPos2iMESA (GLint, GLint);
sca8er 3:0c3bcea5b4d0 3882 GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *);
sca8er 3:0c3bcea5b4d0 3883 GLAPI void APIENTRY glWindowPos2sMESA (GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3884 GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *);
sca8er 3:0c3bcea5b4d0 3885 GLAPI void APIENTRY glWindowPos3dMESA (GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3886 GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3887 GLAPI void APIENTRY glWindowPos3fMESA (GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3888 GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3889 GLAPI void APIENTRY glWindowPos3iMESA (GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 3890 GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *);
sca8er 3:0c3bcea5b4d0 3891 GLAPI void APIENTRY glWindowPos3sMESA (GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3892 GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *);
sca8er 3:0c3bcea5b4d0 3893 GLAPI void APIENTRY glWindowPos4dMESA (GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 3894 GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *);
sca8er 3:0c3bcea5b4d0 3895 GLAPI void APIENTRY glWindowPos4fMESA (GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 3896 GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *);
sca8er 3:0c3bcea5b4d0 3897 GLAPI void APIENTRY glWindowPos4iMESA (GLint, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 3898 GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *);
sca8er 3:0c3bcea5b4d0 3899 GLAPI void APIENTRY glWindowPos4sMESA (GLshort, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 3900 GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *);
sca8er 3:0c3bcea5b4d0 3901 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3902 typedef void (APIENTRY * PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y);
sca8er 3:0c3bcea5b4d0 3903 typedef void (APIENTRY * PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3904 typedef void (APIENTRY * PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y);
sca8er 3:0c3bcea5b4d0 3905 typedef void (APIENTRY * PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3906 typedef void (APIENTRY * PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y);
sca8er 3:0c3bcea5b4d0 3907 typedef void (APIENTRY * PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3908 typedef void (APIENTRY * PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y);
sca8er 3:0c3bcea5b4d0 3909 typedef void (APIENTRY * PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3910 typedef void (APIENTRY * PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z);
sca8er 3:0c3bcea5b4d0 3911 typedef void (APIENTRY * PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3912 typedef void (APIENTRY * PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 3913 typedef void (APIENTRY * PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3914 typedef void (APIENTRY * PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z);
sca8er 3:0c3bcea5b4d0 3915 typedef void (APIENTRY * PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3916 typedef void (APIENTRY * PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z);
sca8er 3:0c3bcea5b4d0 3917 typedef void (APIENTRY * PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3918 typedef void (APIENTRY * PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w);
sca8er 3:0c3bcea5b4d0 3919 typedef void (APIENTRY * PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v);
sca8er 3:0c3bcea5b4d0 3920 typedef void (APIENTRY * PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 3921 typedef void (APIENTRY * PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v);
sca8er 3:0c3bcea5b4d0 3922 typedef void (APIENTRY * PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w);
sca8er 3:0c3bcea5b4d0 3923 typedef void (APIENTRY * PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v);
sca8er 3:0c3bcea5b4d0 3924 typedef void (APIENTRY * PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w);
sca8er 3:0c3bcea5b4d0 3925 typedef void (APIENTRY * PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v);
sca8er 3:0c3bcea5b4d0 3926 #endif
sca8er 3:0c3bcea5b4d0 3927
sca8er 3:0c3bcea5b4d0 3928 #ifndef GL_IBM_cull_vertex
sca8er 3:0c3bcea5b4d0 3929 #define GL_IBM_cull_vertex 1
sca8er 3:0c3bcea5b4d0 3930 #endif
sca8er 3:0c3bcea5b4d0 3931
sca8er 3:0c3bcea5b4d0 3932 #ifndef GL_IBM_multimode_draw_arrays
sca8er 3:0c3bcea5b4d0 3933 #define GL_IBM_multimode_draw_arrays 1
sca8er 3:0c3bcea5b4d0 3934 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3935 GLAPI void APIENTRY glMultiModeDrawArraysIBM (GLenum, const GLint *, const GLsizei *, GLsizei, GLint);
sca8er 3:0c3bcea5b4d0 3936 GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *, const GLsizei *, GLenum, const GLvoid* *, GLsizei, GLint);
sca8er 3:0c3bcea5b4d0 3937 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3938 typedef void (APIENTRY * PFNGLMULTIMODEDRAWARRAYSIBMPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride);
sca8er 3:0c3bcea5b4d0 3939 typedef void (APIENTRY * PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount, GLint modestride);
sca8er 3:0c3bcea5b4d0 3940 #endif
sca8er 3:0c3bcea5b4d0 3941
sca8er 3:0c3bcea5b4d0 3942 #ifndef GL_IBM_vertex_array_lists
sca8er 3:0c3bcea5b4d0 3943 #define GL_IBM_vertex_array_lists 1
sca8er 3:0c3bcea5b4d0 3944 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3945 GLAPI void APIENTRY glColorPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3946 GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3947 GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint, const GLboolean* *, GLint);
sca8er 3:0c3bcea5b4d0 3948 GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3949 GLAPI void APIENTRY glIndexPointerListIBM (GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3950 GLAPI void APIENTRY glNormalPointerListIBM (GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3951 GLAPI void APIENTRY glTexCoordPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3952 GLAPI void APIENTRY glVertexPointerListIBM (GLint, GLenum, GLint, const GLvoid* *, GLint);
sca8er 3:0c3bcea5b4d0 3953 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3954 typedef void (APIENTRY * PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3955 typedef void (APIENTRY * PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3956 typedef void (APIENTRY * PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3957 typedef void (APIENTRY * PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3958 typedef void (APIENTRY * PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3959 typedef void (APIENTRY * PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3960 typedef void (APIENTRY * PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3961 typedef void (APIENTRY * PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const GLvoid* *pointer, GLint ptrstride);
sca8er 3:0c3bcea5b4d0 3962 #endif
sca8er 3:0c3bcea5b4d0 3963
sca8er 3:0c3bcea5b4d0 3964 #ifndef GL_SGIX_subsample
sca8er 3:0c3bcea5b4d0 3965 #define GL_SGIX_subsample 1
sca8er 3:0c3bcea5b4d0 3966 #endif
sca8er 3:0c3bcea5b4d0 3967
sca8er 3:0c3bcea5b4d0 3968 #ifndef GL_SGIX_ycrcba
sca8er 3:0c3bcea5b4d0 3969 #define GL_SGIX_ycrcba 1
sca8er 3:0c3bcea5b4d0 3970 #endif
sca8er 3:0c3bcea5b4d0 3971
sca8er 3:0c3bcea5b4d0 3972 #ifndef GL_SGIX_ycrcb_subsample
sca8er 3:0c3bcea5b4d0 3973 #define GL_SGIX_ycrcb_subsample 1
sca8er 3:0c3bcea5b4d0 3974 #endif
sca8er 3:0c3bcea5b4d0 3975
sca8er 3:0c3bcea5b4d0 3976 #ifndef GL_SGIX_depth_pass_instrument
sca8er 3:0c3bcea5b4d0 3977 #define GL_SGIX_depth_pass_instrument 1
sca8er 3:0c3bcea5b4d0 3978 #endif
sca8er 3:0c3bcea5b4d0 3979
sca8er 3:0c3bcea5b4d0 3980 #ifndef GL_3DFX_texture_compression_FXT1
sca8er 3:0c3bcea5b4d0 3981 #define GL_3DFX_texture_compression_FXT1 1
sca8er 3:0c3bcea5b4d0 3982 #endif
sca8er 3:0c3bcea5b4d0 3983
sca8er 3:0c3bcea5b4d0 3984 #ifndef GL_3DFX_multisample
sca8er 3:0c3bcea5b4d0 3985 #define GL_3DFX_multisample 1
sca8er 3:0c3bcea5b4d0 3986 #endif
sca8er 3:0c3bcea5b4d0 3987
sca8er 3:0c3bcea5b4d0 3988 #ifndef GL_3DFX_tbuffer
sca8er 3:0c3bcea5b4d0 3989 #define GL_3DFX_tbuffer 1
sca8er 3:0c3bcea5b4d0 3990 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3991 GLAPI void APIENTRY glTbufferMask3DFX (GLuint);
sca8er 3:0c3bcea5b4d0 3992 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 3993 typedef void (APIENTRY * PFNGLTBUFFERMASK3DFXPROC) (GLuint mask);
sca8er 3:0c3bcea5b4d0 3994 #endif
sca8er 3:0c3bcea5b4d0 3995
sca8er 3:0c3bcea5b4d0 3996 #ifndef GL_EXT_multisample
sca8er 3:0c3bcea5b4d0 3997 #define GL_EXT_multisample 1
sca8er 3:0c3bcea5b4d0 3998 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 3999 GLAPI void APIENTRY glSampleMaskEXT (GLclampf, GLboolean);
sca8er 3:0c3bcea5b4d0 4000 GLAPI void APIENTRY glSamplePatternEXT (GLenum);
sca8er 3:0c3bcea5b4d0 4001 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4002 typedef void (APIENTRY * PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert);
sca8er 3:0c3bcea5b4d0 4003 typedef void (APIENTRY * PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern);
sca8er 3:0c3bcea5b4d0 4004 #endif
sca8er 3:0c3bcea5b4d0 4005
sca8er 3:0c3bcea5b4d0 4006 #ifndef GL_SGIX_vertex_preclip
sca8er 3:0c3bcea5b4d0 4007 #define GL_SGIX_vertex_preclip 1
sca8er 3:0c3bcea5b4d0 4008 #endif
sca8er 3:0c3bcea5b4d0 4009
sca8er 3:0c3bcea5b4d0 4010 #ifndef GL_SGIX_convolution_accuracy
sca8er 3:0c3bcea5b4d0 4011 #define GL_SGIX_convolution_accuracy 1
sca8er 3:0c3bcea5b4d0 4012 #endif
sca8er 3:0c3bcea5b4d0 4013
sca8er 3:0c3bcea5b4d0 4014 #ifndef GL_SGIX_resample
sca8er 3:0c3bcea5b4d0 4015 #define GL_SGIX_resample 1
sca8er 3:0c3bcea5b4d0 4016 #endif
sca8er 3:0c3bcea5b4d0 4017
sca8er 3:0c3bcea5b4d0 4018 #ifndef GL_SGIS_point_line_texgen
sca8er 3:0c3bcea5b4d0 4019 #define GL_SGIS_point_line_texgen 1
sca8er 3:0c3bcea5b4d0 4020 #endif
sca8er 3:0c3bcea5b4d0 4021
sca8er 3:0c3bcea5b4d0 4022 #ifndef GL_SGIS_texture_color_mask
sca8er 3:0c3bcea5b4d0 4023 #define GL_SGIS_texture_color_mask 1
sca8er 3:0c3bcea5b4d0 4024 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4025 GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean, GLboolean, GLboolean, GLboolean);
sca8er 3:0c3bcea5b4d0 4026 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4027 typedef void (APIENTRY * PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
sca8er 3:0c3bcea5b4d0 4028 #endif
sca8er 3:0c3bcea5b4d0 4029
sca8er 3:0c3bcea5b4d0 4030 #ifndef GL_SGIX_igloo_interface
sca8er 3:0c3bcea5b4d0 4031 #define GL_SGIX_igloo_interface 1
sca8er 3:0c3bcea5b4d0 4032 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4033 GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 4034 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4035 typedef void (APIENTRY * PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const GLvoid *params);
sca8er 3:0c3bcea5b4d0 4036 #endif
sca8er 3:0c3bcea5b4d0 4037
sca8er 3:0c3bcea5b4d0 4038 #ifndef GL_NV_fence
sca8er 3:0c3bcea5b4d0 4039 #define GL_NV_fence 1
sca8er 3:0c3bcea5b4d0 4040 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4041 GLAPI void APIENTRY glDeleteFencesNV (GLsizei, const GLuint *);
sca8er 3:0c3bcea5b4d0 4042 GLAPI void APIENTRY glGenFencesNV (GLsizei, GLuint *);
sca8er 3:0c3bcea5b4d0 4043 GLAPI GLboolean APIENTRY glIsFenceNV (GLuint);
sca8er 3:0c3bcea5b4d0 4044 GLAPI GLboolean APIENTRY glTestFenceNV (GLuint);
sca8er 3:0c3bcea5b4d0 4045 GLAPI void APIENTRY glGetFenceivNV (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4046 GLAPI void APIENTRY glFinishFenceNV (GLuint);
sca8er 3:0c3bcea5b4d0 4047 GLAPI void APIENTRY glSetFenceNV (GLuint, GLenum);
sca8er 3:0c3bcea5b4d0 4048 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4049 typedef void (APIENTRY * PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences);
sca8er 3:0c3bcea5b4d0 4050 typedef void (APIENTRY * PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences);
sca8er 3:0c3bcea5b4d0 4051 typedef GLboolean (APIENTRY * PFNGLISFENCENVPROC) (GLuint fence);
sca8er 3:0c3bcea5b4d0 4052 typedef GLboolean (APIENTRY * PFNGLTESTFENCENVPROC) (GLuint fence);
sca8er 3:0c3bcea5b4d0 4053 typedef void (APIENTRY * PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4054 typedef void (APIENTRY * PFNGLFINISHFENCENVPROC) (GLuint fence);
sca8er 3:0c3bcea5b4d0 4055 typedef void (APIENTRY * PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
sca8er 3:0c3bcea5b4d0 4056 #endif
sca8er 3:0c3bcea5b4d0 4057
sca8er 3:0c3bcea5b4d0 4058 #ifndef GL_NV_evaluators
sca8er 3:0c3bcea5b4d0 4059 #define GL_NV_evaluators 1
sca8er 3:0c3bcea5b4d0 4060 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4061 GLAPI void APIENTRY glMapControlPointsNV (GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *);
sca8er 3:0c3bcea5b4d0 4062 GLAPI void APIENTRY glMapParameterivNV (GLenum, GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4063 GLAPI void APIENTRY glMapParameterfvNV (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4064 GLAPI void APIENTRY glGetMapControlPointsNV (GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *);
sca8er 3:0c3bcea5b4d0 4065 GLAPI void APIENTRY glGetMapParameterivNV (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4066 GLAPI void APIENTRY glGetMapParameterfvNV (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4067 GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum, GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4068 GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum, GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4069 GLAPI void APIENTRY glEvalMapsNV (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4070 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4071 typedef void (APIENTRY * PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const GLvoid *points);
sca8er 3:0c3bcea5b4d0 4072 typedef void (APIENTRY * PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 4073 typedef void (APIENTRY * PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 4074 typedef void (APIENTRY * PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, GLvoid *points);
sca8er 3:0c3bcea5b4d0 4075 typedef void (APIENTRY * PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4076 typedef void (APIENTRY * PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4077 typedef void (APIENTRY * PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4078 typedef void (APIENTRY * PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4079 typedef void (APIENTRY * PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode);
sca8er 3:0c3bcea5b4d0 4080 #endif
sca8er 3:0c3bcea5b4d0 4081
sca8er 3:0c3bcea5b4d0 4082 #ifndef GL_NV_packed_depth_stencil
sca8er 3:0c3bcea5b4d0 4083 #define GL_NV_packed_depth_stencil 1
sca8er 3:0c3bcea5b4d0 4084 #endif
sca8er 3:0c3bcea5b4d0 4085
sca8er 3:0c3bcea5b4d0 4086 #ifndef GL_NV_register_combiners2
sca8er 3:0c3bcea5b4d0 4087 #define GL_NV_register_combiners2 1
sca8er 3:0c3bcea5b4d0 4088 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4089 GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum, GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4090 GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4091 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4092 typedef void (APIENTRY * PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 4093 typedef void (APIENTRY * PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4094 #endif
sca8er 3:0c3bcea5b4d0 4095
sca8er 3:0c3bcea5b4d0 4096 #ifndef GL_NV_texture_compression_vtc
sca8er 3:0c3bcea5b4d0 4097 #define GL_NV_texture_compression_vtc 1
sca8er 3:0c3bcea5b4d0 4098 #endif
sca8er 3:0c3bcea5b4d0 4099
sca8er 3:0c3bcea5b4d0 4100 #ifndef GL_NV_texture_rectangle
sca8er 3:0c3bcea5b4d0 4101 #define GL_NV_texture_rectangle 1
sca8er 3:0c3bcea5b4d0 4102 #endif
sca8er 3:0c3bcea5b4d0 4103
sca8er 3:0c3bcea5b4d0 4104 #ifndef GL_NV_texture_shader
sca8er 3:0c3bcea5b4d0 4105 #define GL_NV_texture_shader 1
sca8er 3:0c3bcea5b4d0 4106 #endif
sca8er 3:0c3bcea5b4d0 4107
sca8er 3:0c3bcea5b4d0 4108 #ifndef GL_NV_texture_shader2
sca8er 3:0c3bcea5b4d0 4109 #define GL_NV_texture_shader2 1
sca8er 3:0c3bcea5b4d0 4110 #endif
sca8er 3:0c3bcea5b4d0 4111
sca8er 3:0c3bcea5b4d0 4112 #ifndef GL_NV_vertex_array_range2
sca8er 3:0c3bcea5b4d0 4113 #define GL_NV_vertex_array_range2 1
sca8er 3:0c3bcea5b4d0 4114 #endif
sca8er 3:0c3bcea5b4d0 4115
sca8er 3:0c3bcea5b4d0 4116 #ifndef GL_NV_vertex_program
sca8er 3:0c3bcea5b4d0 4117 #define GL_NV_vertex_program 1
sca8er 3:0c3bcea5b4d0 4118 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4119 GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei, const GLuint *, GLboolean *);
sca8er 3:0c3bcea5b4d0 4120 GLAPI void APIENTRY glBindProgramNV (GLenum, GLuint);
sca8er 3:0c3bcea5b4d0 4121 GLAPI void APIENTRY glDeleteProgramsNV (GLsizei, const GLuint *);
sca8er 3:0c3bcea5b4d0 4122 GLAPI void APIENTRY glExecuteProgramNV (GLenum, GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4123 GLAPI void APIENTRY glGenProgramsNV (GLsizei, GLuint *);
sca8er 3:0c3bcea5b4d0 4124 GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum, GLuint, GLenum, GLdouble *);
sca8er 3:0c3bcea5b4d0 4125 GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum, GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4126 GLAPI void APIENTRY glGetProgramivNV (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4127 GLAPI void APIENTRY glGetProgramStringNV (GLuint, GLenum, GLubyte *);
sca8er 3:0c3bcea5b4d0 4128 GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum, GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4129 GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint, GLenum, GLdouble *);
sca8er 3:0c3bcea5b4d0 4130 GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4131 GLAPI void APIENTRY glGetVertexAttribivNV (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4132 GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint, GLenum, GLvoid* *);
sca8er 3:0c3bcea5b4d0 4133 GLAPI GLboolean APIENTRY glIsProgramNV (GLuint);
sca8er 3:0c3bcea5b4d0 4134 GLAPI void APIENTRY glLoadProgramNV (GLenum, GLuint, GLsizei, const GLubyte *);
sca8er 3:0c3bcea5b4d0 4135 GLAPI void APIENTRY glProgramParameter4dNV (GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4136 GLAPI void APIENTRY glProgramParameter4dvNV (GLenum, GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4137 GLAPI void APIENTRY glProgramParameter4fNV (GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4138 GLAPI void APIENTRY glProgramParameter4fvNV (GLenum, GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4139 GLAPI void APIENTRY glProgramParameters4dvNV (GLenum, GLuint, GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4140 GLAPI void APIENTRY glProgramParameters4fvNV (GLenum, GLuint, GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4141 GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei, const GLuint *);
sca8er 3:0c3bcea5b4d0 4142 GLAPI void APIENTRY glTrackMatrixNV (GLenum, GLuint, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4143 GLAPI void APIENTRY glVertexAttribPointerNV (GLuint, GLint, GLenum, GLsizei, const GLvoid *);
sca8er 3:0c3bcea5b4d0 4144 GLAPI void APIENTRY glVertexAttrib1dNV (GLuint, GLdouble);
sca8er 3:0c3bcea5b4d0 4145 GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4146 GLAPI void APIENTRY glVertexAttrib1fNV (GLuint, GLfloat);
sca8er 3:0c3bcea5b4d0 4147 GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4148 GLAPI void APIENTRY glVertexAttrib1sNV (GLuint, GLshort);
sca8er 3:0c3bcea5b4d0 4149 GLAPI void APIENTRY glVertexAttrib1svNV (GLuint, const GLshort *);
sca8er 3:0c3bcea5b4d0 4150 GLAPI void APIENTRY glVertexAttrib2dNV (GLuint, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4151 GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4152 GLAPI void APIENTRY glVertexAttrib2fNV (GLuint, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4153 GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4154 GLAPI void APIENTRY glVertexAttrib2sNV (GLuint, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4155 GLAPI void APIENTRY glVertexAttrib2svNV (GLuint, const GLshort *);
sca8er 3:0c3bcea5b4d0 4156 GLAPI void APIENTRY glVertexAttrib3dNV (GLuint, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4157 GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4158 GLAPI void APIENTRY glVertexAttrib3fNV (GLuint, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4159 GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4160 GLAPI void APIENTRY glVertexAttrib3sNV (GLuint, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4161 GLAPI void APIENTRY glVertexAttrib3svNV (GLuint, const GLshort *);
sca8er 3:0c3bcea5b4d0 4162 GLAPI void APIENTRY glVertexAttrib4dNV (GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4163 GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4164 GLAPI void APIENTRY glVertexAttrib4fNV (GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4165 GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4166 GLAPI void APIENTRY glVertexAttrib4sNV (GLuint, GLshort, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4167 GLAPI void APIENTRY glVertexAttrib4svNV (GLuint, const GLshort *);
sca8er 3:0c3bcea5b4d0 4168 GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
sca8er 3:0c3bcea5b4d0 4169 GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint, const GLubyte *);
sca8er 3:0c3bcea5b4d0 4170 GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint, GLsizei, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4171 GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4172 GLAPI void APIENTRY glVertexAttribs1svNV (GLuint, GLsizei, const GLshort *);
sca8er 3:0c3bcea5b4d0 4173 GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint, GLsizei, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4174 GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4175 GLAPI void APIENTRY glVertexAttribs2svNV (GLuint, GLsizei, const GLshort *);
sca8er 3:0c3bcea5b4d0 4176 GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint, GLsizei, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4177 GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4178 GLAPI void APIENTRY glVertexAttribs3svNV (GLuint, GLsizei, const GLshort *);
sca8er 3:0c3bcea5b4d0 4179 GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint, GLsizei, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4180 GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint, GLsizei, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4181 GLAPI void APIENTRY glVertexAttribs4svNV (GLuint, GLsizei, const GLshort *);
sca8er 3:0c3bcea5b4d0 4182 GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint, GLsizei, const GLubyte *);
sca8er 3:0c3bcea5b4d0 4183 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4184 typedef GLboolean (APIENTRY * PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences);
sca8er 3:0c3bcea5b4d0 4185 typedef void (APIENTRY * PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id);
sca8er 3:0c3bcea5b4d0 4186 typedef void (APIENTRY * PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs);
sca8er 3:0c3bcea5b4d0 4187 typedef void (APIENTRY * PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params);
sca8er 3:0c3bcea5b4d0 4188 typedef void (APIENTRY * PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs);
sca8er 3:0c3bcea5b4d0 4189 typedef void (APIENTRY * PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params);
sca8er 3:0c3bcea5b4d0 4190 typedef void (APIENTRY * PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4191 typedef void (APIENTRY * PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4192 typedef void (APIENTRY * PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program);
sca8er 3:0c3bcea5b4d0 4193 typedef void (APIENTRY * PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4194 typedef void (APIENTRY * PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params);
sca8er 3:0c3bcea5b4d0 4195 typedef void (APIENTRY * PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4196 typedef void (APIENTRY * PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4197 typedef void (APIENTRY * PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, GLvoid* *pointer);
sca8er 3:0c3bcea5b4d0 4198 typedef GLboolean (APIENTRY * PFNGLISPROGRAMNVPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4199 typedef void (APIENTRY * PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program);
sca8er 3:0c3bcea5b4d0 4200 typedef void (APIENTRY * PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
sca8er 3:0c3bcea5b4d0 4201 typedef void (APIENTRY * PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4202 typedef void (APIENTRY * PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 4203 typedef void (APIENTRY * PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4204 typedef void (APIENTRY * PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLuint count, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4205 typedef void (APIENTRY * PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLuint count, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4206 typedef void (APIENTRY * PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs);
sca8er 3:0c3bcea5b4d0 4207 typedef void (APIENTRY * PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform);
sca8er 3:0c3bcea5b4d0 4208 typedef void (APIENTRY * PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 4209 typedef void (APIENTRY * PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x);
sca8er 3:0c3bcea5b4d0 4210 typedef void (APIENTRY * PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4211 typedef void (APIENTRY * PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x);
sca8er 3:0c3bcea5b4d0 4212 typedef void (APIENTRY * PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4213 typedef void (APIENTRY * PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x);
sca8er 3:0c3bcea5b4d0 4214 typedef void (APIENTRY * PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4215 typedef void (APIENTRY * PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y);
sca8er 3:0c3bcea5b4d0 4216 typedef void (APIENTRY * PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4217 typedef void (APIENTRY * PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y);
sca8er 3:0c3bcea5b4d0 4218 typedef void (APIENTRY * PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4219 typedef void (APIENTRY * PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y);
sca8er 3:0c3bcea5b4d0 4220 typedef void (APIENTRY * PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4221 typedef void (APIENTRY * PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z);
sca8er 3:0c3bcea5b4d0 4222 typedef void (APIENTRY * PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4223 typedef void (APIENTRY * PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 4224 typedef void (APIENTRY * PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4225 typedef void (APIENTRY * PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z);
sca8er 3:0c3bcea5b4d0 4226 typedef void (APIENTRY * PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4227 typedef void (APIENTRY * PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
sca8er 3:0c3bcea5b4d0 4228 typedef void (APIENTRY * PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4229 typedef void (APIENTRY * PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 4230 typedef void (APIENTRY * PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4231 typedef void (APIENTRY * PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
sca8er 3:0c3bcea5b4d0 4232 typedef void (APIENTRY * PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4233 typedef void (APIENTRY * PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
sca8er 3:0c3bcea5b4d0 4234 typedef void (APIENTRY * PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v);
sca8er 3:0c3bcea5b4d0 4235 typedef void (APIENTRY * PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4236 typedef void (APIENTRY * PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4237 typedef void (APIENTRY * PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4238 typedef void (APIENTRY * PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4239 typedef void (APIENTRY * PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4240 typedef void (APIENTRY * PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4241 typedef void (APIENTRY * PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4242 typedef void (APIENTRY * PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4243 typedef void (APIENTRY * PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4244 typedef void (APIENTRY * PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v);
sca8er 3:0c3bcea5b4d0 4245 typedef void (APIENTRY * PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v);
sca8er 3:0c3bcea5b4d0 4246 typedef void (APIENTRY * PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v);
sca8er 3:0c3bcea5b4d0 4247 typedef void (APIENTRY * PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v);
sca8er 3:0c3bcea5b4d0 4248 #endif
sca8er 3:0c3bcea5b4d0 4249
sca8er 3:0c3bcea5b4d0 4250 #ifndef GL_SGIX_texture_coordinate_clamp
sca8er 3:0c3bcea5b4d0 4251 #define GL_SGIX_texture_coordinate_clamp 1
sca8er 3:0c3bcea5b4d0 4252 #endif
sca8er 3:0c3bcea5b4d0 4253
sca8er 3:0c3bcea5b4d0 4254 #ifndef GL_SGIX_scalebias_hint
sca8er 3:0c3bcea5b4d0 4255 #define GL_SGIX_scalebias_hint 1
sca8er 3:0c3bcea5b4d0 4256 #endif
sca8er 3:0c3bcea5b4d0 4257
sca8er 3:0c3bcea5b4d0 4258 #ifndef GL_OML_interlace
sca8er 3:0c3bcea5b4d0 4259 #define GL_OML_interlace 1
sca8er 3:0c3bcea5b4d0 4260 #endif
sca8er 3:0c3bcea5b4d0 4261
sca8er 3:0c3bcea5b4d0 4262 #ifndef GL_OML_subsample
sca8er 3:0c3bcea5b4d0 4263 #define GL_OML_subsample 1
sca8er 3:0c3bcea5b4d0 4264 #endif
sca8er 3:0c3bcea5b4d0 4265
sca8er 3:0c3bcea5b4d0 4266 #ifndef GL_OML_resample
sca8er 3:0c3bcea5b4d0 4267 #define GL_OML_resample 1
sca8er 3:0c3bcea5b4d0 4268 #endif
sca8er 3:0c3bcea5b4d0 4269
sca8er 3:0c3bcea5b4d0 4270 #ifndef GL_NV_copy_depth_to_color
sca8er 3:0c3bcea5b4d0 4271 #define GL_NV_copy_depth_to_color 1
sca8er 3:0c3bcea5b4d0 4272 #endif
sca8er 3:0c3bcea5b4d0 4273
sca8er 3:0c3bcea5b4d0 4274 #ifndef GL_ATI_envmap_bumpmap
sca8er 3:0c3bcea5b4d0 4275 #define GL_ATI_envmap_bumpmap 1
sca8er 3:0c3bcea5b4d0 4276 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4277 GLAPI void APIENTRY glTexBumpParameterivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4278 GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4279 GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4280 GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4281 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4282 typedef void (APIENTRY * PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param);
sca8er 3:0c3bcea5b4d0 4283 typedef void (APIENTRY * PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param);
sca8er 3:0c3bcea5b4d0 4284 typedef void (APIENTRY * PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param);
sca8er 3:0c3bcea5b4d0 4285 typedef void (APIENTRY * PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param);
sca8er 3:0c3bcea5b4d0 4286 #endif
sca8er 3:0c3bcea5b4d0 4287
sca8er 3:0c3bcea5b4d0 4288 #ifndef GL_ATI_fragment_shader
sca8er 3:0c3bcea5b4d0 4289 #define GL_ATI_fragment_shader 1
sca8er 3:0c3bcea5b4d0 4290 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4291 GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint);
sca8er 3:0c3bcea5b4d0 4292 GLAPI void APIENTRY glBindFragmentShaderATI (GLuint);
sca8er 3:0c3bcea5b4d0 4293 GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint);
sca8er 3:0c3bcea5b4d0 4294 GLAPI void APIENTRY glBeginFragmentShaderATI (void);
sca8er 3:0c3bcea5b4d0 4295 GLAPI void APIENTRY glEndFragmentShaderATI (void);
sca8er 3:0c3bcea5b4d0 4296 GLAPI void APIENTRY glPassTexCoordATI (GLuint, GLuint, GLenum);
sca8er 3:0c3bcea5b4d0 4297 GLAPI void APIENTRY glSampleMapATI (GLuint, GLuint, GLenum);
sca8er 3:0c3bcea5b4d0 4298 GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4299 GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4300 GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4301 GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4302 GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4303 GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4304 GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4305 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4306 typedef GLuint (APIENTRY * PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range);
sca8er 3:0c3bcea5b4d0 4307 typedef void (APIENTRY * PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4308 typedef void (APIENTRY * PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4309 typedef void (APIENTRY * PFNGLBEGINFRAGMENTSHADERATIPROC) (void);
sca8er 3:0c3bcea5b4d0 4310 typedef void (APIENTRY * PFNGLENDFRAGMENTSHADERATIPROC) (void);
sca8er 3:0c3bcea5b4d0 4311 typedef void (APIENTRY * PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle);
sca8er 3:0c3bcea5b4d0 4312 typedef void (APIENTRY * PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle);
sca8er 3:0c3bcea5b4d0 4313 typedef void (APIENTRY * PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
sca8er 3:0c3bcea5b4d0 4314 typedef void (APIENTRY * PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
sca8er 3:0c3bcea5b4d0 4315 typedef void (APIENTRY * PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
sca8er 3:0c3bcea5b4d0 4316 typedef void (APIENTRY * PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod);
sca8er 3:0c3bcea5b4d0 4317 typedef void (APIENTRY * PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod);
sca8er 3:0c3bcea5b4d0 4318 typedef void (APIENTRY * PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod);
sca8er 3:0c3bcea5b4d0 4319 typedef void (APIENTRY * PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value);
sca8er 3:0c3bcea5b4d0 4320 #endif
sca8er 3:0c3bcea5b4d0 4321
sca8er 3:0c3bcea5b4d0 4322 #ifndef GL_ATI_pn_triangles
sca8er 3:0c3bcea5b4d0 4323 #define GL_ATI_pn_triangles 1
sca8er 3:0c3bcea5b4d0 4324 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4325 GLAPI void APIENTRY glPNTrianglesiATI (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 4326 GLAPI void APIENTRY glPNTrianglesfATI (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 4327 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4328 typedef void (APIENTRY * PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 4329 typedef void (APIENTRY * PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 4330 #endif
sca8er 3:0c3bcea5b4d0 4331
sca8er 3:0c3bcea5b4d0 4332 #ifndef GL_ATI_vertex_array_object
sca8er 3:0c3bcea5b4d0 4333 #define GL_ATI_vertex_array_object 1
sca8er 3:0c3bcea5b4d0 4334 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4335 GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei, const GLvoid *, GLenum);
sca8er 3:0c3bcea5b4d0 4336 GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint);
sca8er 3:0c3bcea5b4d0 4337 GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint, GLuint, GLsizei, const GLvoid *, GLenum);
sca8er 3:0c3bcea5b4d0 4338 GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4339 GLAPI void APIENTRY glGetObjectBufferivATI (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4340 GLAPI void APIENTRY glDeleteObjectBufferATI (GLuint);
sca8er 3:0c3bcea5b4d0 4341 GLAPI void APIENTRY glArrayObjectATI (GLenum, GLint, GLenum, GLsizei, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4342 GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4343 GLAPI void APIENTRY glGetArrayObjectivATI (GLenum, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4344 GLAPI void APIENTRY glVariantArrayObjectATI (GLuint, GLenum, GLsizei, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4345 GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4346 GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4347 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4348 typedef GLuint (APIENTRY * PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const GLvoid *pointer, GLenum usage);
sca8er 3:0c3bcea5b4d0 4349 typedef GLboolean (APIENTRY * PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer);
sca8er 3:0c3bcea5b4d0 4350 typedef void (APIENTRY * PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve);
sca8er 3:0c3bcea5b4d0 4351 typedef void (APIENTRY * PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4352 typedef void (APIENTRY * PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4353 typedef void (APIENTRY * PFNGLDELETEOBJECTBUFFERATIPROC) (GLuint buffer);
sca8er 3:0c3bcea5b4d0 4354 typedef void (APIENTRY * PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
sca8er 3:0c3bcea5b4d0 4355 typedef void (APIENTRY * PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4356 typedef void (APIENTRY * PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4357 typedef void (APIENTRY * PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset);
sca8er 3:0c3bcea5b4d0 4358 typedef void (APIENTRY * PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params);
sca8er 3:0c3bcea5b4d0 4359 typedef void (APIENTRY * PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4360 #endif
sca8er 3:0c3bcea5b4d0 4361
sca8er 3:0c3bcea5b4d0 4362 #ifndef GL_EXT_vertex_shader
sca8er 3:0c3bcea5b4d0 4363 #define GL_EXT_vertex_shader 1
sca8er 3:0c3bcea5b4d0 4364 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4365 GLAPI void APIENTRY glBeginVertexShaderEXT (void);
sca8er 3:0c3bcea5b4d0 4366 GLAPI void APIENTRY glEndVertexShaderEXT (void);
sca8er 3:0c3bcea5b4d0 4367 GLAPI void APIENTRY glBindVertexShaderEXT (GLuint);
sca8er 3:0c3bcea5b4d0 4368 GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint);
sca8er 3:0c3bcea5b4d0 4369 GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint);
sca8er 3:0c3bcea5b4d0 4370 GLAPI void APIENTRY glShaderOp1EXT (GLenum, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4371 GLAPI void APIENTRY glShaderOp2EXT (GLenum, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4372 GLAPI void APIENTRY glShaderOp3EXT (GLenum, GLuint, GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4373 GLAPI void APIENTRY glSwizzleEXT (GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4374 GLAPI void APIENTRY glWriteMaskEXT (GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4375 GLAPI void APIENTRY glInsertComponentEXT (GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4376 GLAPI void APIENTRY glExtractComponentEXT (GLuint, GLuint, GLuint);
sca8er 3:0c3bcea5b4d0 4377 GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum, GLenum, GLenum, GLuint);
sca8er 3:0c3bcea5b4d0 4378 GLAPI void APIENTRY glSetInvariantEXT (GLuint, GLenum, const void *);
sca8er 3:0c3bcea5b4d0 4379 GLAPI void APIENTRY glSetLocalConstantEXT (GLuint, GLenum, const void *);
sca8er 3:0c3bcea5b4d0 4380 GLAPI void APIENTRY glVariantbvEXT (GLuint, const GLbyte *);
sca8er 3:0c3bcea5b4d0 4381 GLAPI void APIENTRY glVariantsvEXT (GLuint, const GLshort *);
sca8er 3:0c3bcea5b4d0 4382 GLAPI void APIENTRY glVariantivEXT (GLuint, const GLint *);
sca8er 3:0c3bcea5b4d0 4383 GLAPI void APIENTRY glVariantfvEXT (GLuint, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4384 GLAPI void APIENTRY glVariantdvEXT (GLuint, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4385 GLAPI void APIENTRY glVariantubvEXT (GLuint, const GLubyte *);
sca8er 3:0c3bcea5b4d0 4386 GLAPI void APIENTRY glVariantusvEXT (GLuint, const GLushort *);
sca8er 3:0c3bcea5b4d0 4387 GLAPI void APIENTRY glVariantuivEXT (GLuint, const GLuint *);
sca8er 3:0c3bcea5b4d0 4388 GLAPI void APIENTRY glVariantPointerEXT (GLuint, GLenum, GLuint, const void *);
sca8er 3:0c3bcea5b4d0 4389 GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint);
sca8er 3:0c3bcea5b4d0 4390 GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint);
sca8er 3:0c3bcea5b4d0 4391 GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4392 GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4393 GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum, GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4394 GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum, GLenum);
sca8er 3:0c3bcea5b4d0 4395 GLAPI GLuint APIENTRY glBindParameterEXT (GLenum);
sca8er 3:0c3bcea5b4d0 4396 GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint, GLenum);
sca8er 3:0c3bcea5b4d0 4397 GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint, GLenum, GLboolean *);
sca8er 3:0c3bcea5b4d0 4398 GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4399 GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4400 GLAPI void APIENTRY glGetVariantPointervEXT (GLuint, GLenum, GLvoid* *);
sca8er 3:0c3bcea5b4d0 4401 GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint, GLenum, GLboolean *);
sca8er 3:0c3bcea5b4d0 4402 GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4403 GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4404 GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint, GLenum, GLboolean *);
sca8er 3:0c3bcea5b4d0 4405 GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4406 GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint, GLenum, GLfloat *);
sca8er 3:0c3bcea5b4d0 4407 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4408 typedef void (APIENTRY * PFNGLBEGINVERTEXSHADEREXTPROC) (void);
sca8er 3:0c3bcea5b4d0 4409 typedef void (APIENTRY * PFNGLENDVERTEXSHADEREXTPROC) (void);
sca8er 3:0c3bcea5b4d0 4410 typedef void (APIENTRY * PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4411 typedef GLuint (APIENTRY * PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range);
sca8er 3:0c3bcea5b4d0 4412 typedef void (APIENTRY * PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4413 typedef void (APIENTRY * PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1);
sca8er 3:0c3bcea5b4d0 4414 typedef void (APIENTRY * PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2);
sca8er 3:0c3bcea5b4d0 4415 typedef void (APIENTRY * PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3);
sca8er 3:0c3bcea5b4d0 4416 typedef void (APIENTRY * PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
sca8er 3:0c3bcea5b4d0 4417 typedef void (APIENTRY * PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW);
sca8er 3:0c3bcea5b4d0 4418 typedef void (APIENTRY * PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num);
sca8er 3:0c3bcea5b4d0 4419 typedef void (APIENTRY * PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num);
sca8er 3:0c3bcea5b4d0 4420 typedef GLuint (APIENTRY * PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components);
sca8er 3:0c3bcea5b4d0 4421 typedef void (APIENTRY * PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const void *addr);
sca8er 3:0c3bcea5b4d0 4422 typedef void (APIENTRY * PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const void *addr);
sca8er 3:0c3bcea5b4d0 4423 typedef void (APIENTRY * PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr);
sca8er 3:0c3bcea5b4d0 4424 typedef void (APIENTRY * PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr);
sca8er 3:0c3bcea5b4d0 4425 typedef void (APIENTRY * PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr);
sca8er 3:0c3bcea5b4d0 4426 typedef void (APIENTRY * PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr);
sca8er 3:0c3bcea5b4d0 4427 typedef void (APIENTRY * PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr);
sca8er 3:0c3bcea5b4d0 4428 typedef void (APIENTRY * PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr);
sca8er 3:0c3bcea5b4d0 4429 typedef void (APIENTRY * PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr);
sca8er 3:0c3bcea5b4d0 4430 typedef void (APIENTRY * PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr);
sca8er 3:0c3bcea5b4d0 4431 typedef void (APIENTRY * PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const void *addr);
sca8er 3:0c3bcea5b4d0 4432 typedef void (APIENTRY * PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4433 typedef void (APIENTRY * PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4434 typedef GLuint (APIENTRY * PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value);
sca8er 3:0c3bcea5b4d0 4435 typedef GLuint (APIENTRY * PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value);
sca8er 3:0c3bcea5b4d0 4436 typedef GLuint (APIENTRY * PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value);
sca8er 3:0c3bcea5b4d0 4437 typedef GLuint (APIENTRY * PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value);
sca8er 3:0c3bcea5b4d0 4438 typedef GLuint (APIENTRY * PFNGLBINDPARAMETEREXTPROC) (GLenum value);
sca8er 3:0c3bcea5b4d0 4439 typedef GLboolean (APIENTRY * PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap);
sca8er 3:0c3bcea5b4d0 4440 typedef void (APIENTRY * PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
sca8er 3:0c3bcea5b4d0 4441 typedef void (APIENTRY * PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
sca8er 3:0c3bcea5b4d0 4442 typedef void (APIENTRY * PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
sca8er 3:0c3bcea5b4d0 4443 typedef void (APIENTRY * PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, GLvoid* *data);
sca8er 3:0c3bcea5b4d0 4444 typedef void (APIENTRY * PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
sca8er 3:0c3bcea5b4d0 4445 typedef void (APIENTRY * PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
sca8er 3:0c3bcea5b4d0 4446 typedef void (APIENTRY * PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
sca8er 3:0c3bcea5b4d0 4447 typedef void (APIENTRY * PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data);
sca8er 3:0c3bcea5b4d0 4448 typedef void (APIENTRY * PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data);
sca8er 3:0c3bcea5b4d0 4449 typedef void (APIENTRY * PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data);
sca8er 3:0c3bcea5b4d0 4450 #endif
sca8er 3:0c3bcea5b4d0 4451
sca8er 3:0c3bcea5b4d0 4452 #ifndef GL_ATI_vertex_streams
sca8er 3:0c3bcea5b4d0 4453 #define GL_ATI_vertex_streams 1
sca8er 3:0c3bcea5b4d0 4454 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4455 GLAPI void APIENTRY glVertexStream1sATI (GLenum, GLshort);
sca8er 3:0c3bcea5b4d0 4456 GLAPI void APIENTRY glVertexStream1svATI (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 4457 GLAPI void APIENTRY glVertexStream1iATI (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 4458 GLAPI void APIENTRY glVertexStream1ivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4459 GLAPI void APIENTRY glVertexStream1fATI (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 4460 GLAPI void APIENTRY glVertexStream1fvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4461 GLAPI void APIENTRY glVertexStream1dATI (GLenum, GLdouble);
sca8er 3:0c3bcea5b4d0 4462 GLAPI void APIENTRY glVertexStream1dvATI (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4463 GLAPI void APIENTRY glVertexStream2sATI (GLenum, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4464 GLAPI void APIENTRY glVertexStream2svATI (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 4465 GLAPI void APIENTRY glVertexStream2iATI (GLenum, GLint, GLint);
sca8er 3:0c3bcea5b4d0 4466 GLAPI void APIENTRY glVertexStream2ivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4467 GLAPI void APIENTRY glVertexStream2fATI (GLenum, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4468 GLAPI void APIENTRY glVertexStream2fvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4469 GLAPI void APIENTRY glVertexStream2dATI (GLenum, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4470 GLAPI void APIENTRY glVertexStream2dvATI (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4471 GLAPI void APIENTRY glVertexStream3sATI (GLenum, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4472 GLAPI void APIENTRY glVertexStream3svATI (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 4473 GLAPI void APIENTRY glVertexStream3iATI (GLenum, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 4474 GLAPI void APIENTRY glVertexStream3ivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4475 GLAPI void APIENTRY glVertexStream3fATI (GLenum, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4476 GLAPI void APIENTRY glVertexStream3fvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4477 GLAPI void APIENTRY glVertexStream3dATI (GLenum, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4478 GLAPI void APIENTRY glVertexStream3dvATI (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4479 GLAPI void APIENTRY glVertexStream4sATI (GLenum, GLshort, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4480 GLAPI void APIENTRY glVertexStream4svATI (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 4481 GLAPI void APIENTRY glVertexStream4iATI (GLenum, GLint, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 4482 GLAPI void APIENTRY glVertexStream4ivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4483 GLAPI void APIENTRY glVertexStream4fATI (GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4484 GLAPI void APIENTRY glVertexStream4fvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4485 GLAPI void APIENTRY glVertexStream4dATI (GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4486 GLAPI void APIENTRY glVertexStream4dvATI (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4487 GLAPI void APIENTRY glNormalStream3bATI (GLenum, GLbyte, GLbyte, GLbyte);
sca8er 3:0c3bcea5b4d0 4488 GLAPI void APIENTRY glNormalStream3bvATI (GLenum, const GLbyte *);
sca8er 3:0c3bcea5b4d0 4489 GLAPI void APIENTRY glNormalStream3sATI (GLenum, GLshort, GLshort, GLshort);
sca8er 3:0c3bcea5b4d0 4490 GLAPI void APIENTRY glNormalStream3svATI (GLenum, const GLshort *);
sca8er 3:0c3bcea5b4d0 4491 GLAPI void APIENTRY glNormalStream3iATI (GLenum, GLint, GLint, GLint);
sca8er 3:0c3bcea5b4d0 4492 GLAPI void APIENTRY glNormalStream3ivATI (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4493 GLAPI void APIENTRY glNormalStream3fATI (GLenum, GLfloat, GLfloat, GLfloat);
sca8er 3:0c3bcea5b4d0 4494 GLAPI void APIENTRY glNormalStream3fvATI (GLenum, const GLfloat *);
sca8er 3:0c3bcea5b4d0 4495 GLAPI void APIENTRY glNormalStream3dATI (GLenum, GLdouble, GLdouble, GLdouble);
sca8er 3:0c3bcea5b4d0 4496 GLAPI void APIENTRY glNormalStream3dvATI (GLenum, const GLdouble *);
sca8er 3:0c3bcea5b4d0 4497 GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum);
sca8er 3:0c3bcea5b4d0 4498 GLAPI void APIENTRY glVertexBlendEnviATI (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 4499 GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum, GLfloat);
sca8er 3:0c3bcea5b4d0 4500 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4501 typedef void (APIENTRY * PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x);
sca8er 3:0c3bcea5b4d0 4502 typedef void (APIENTRY * PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords);
sca8er 3:0c3bcea5b4d0 4503 typedef void (APIENTRY * PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x);
sca8er 3:0c3bcea5b4d0 4504 typedef void (APIENTRY * PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords);
sca8er 3:0c3bcea5b4d0 4505 typedef void (APIENTRY * PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x);
sca8er 3:0c3bcea5b4d0 4506 typedef void (APIENTRY * PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords);
sca8er 3:0c3bcea5b4d0 4507 typedef void (APIENTRY * PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x);
sca8er 3:0c3bcea5b4d0 4508 typedef void (APIENTRY * PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords);
sca8er 3:0c3bcea5b4d0 4509 typedef void (APIENTRY * PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y);
sca8er 3:0c3bcea5b4d0 4510 typedef void (APIENTRY * PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords);
sca8er 3:0c3bcea5b4d0 4511 typedef void (APIENTRY * PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y);
sca8er 3:0c3bcea5b4d0 4512 typedef void (APIENTRY * PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords);
sca8er 3:0c3bcea5b4d0 4513 typedef void (APIENTRY * PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y);
sca8er 3:0c3bcea5b4d0 4514 typedef void (APIENTRY * PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords);
sca8er 3:0c3bcea5b4d0 4515 typedef void (APIENTRY * PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y);
sca8er 3:0c3bcea5b4d0 4516 typedef void (APIENTRY * PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords);
sca8er 3:0c3bcea5b4d0 4517 typedef void (APIENTRY * PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z);
sca8er 3:0c3bcea5b4d0 4518 typedef void (APIENTRY * PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords);
sca8er 3:0c3bcea5b4d0 4519 typedef void (APIENTRY * PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z);
sca8er 3:0c3bcea5b4d0 4520 typedef void (APIENTRY * PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords);
sca8er 3:0c3bcea5b4d0 4521 typedef void (APIENTRY * PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z);
sca8er 3:0c3bcea5b4d0 4522 typedef void (APIENTRY * PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords);
sca8er 3:0c3bcea5b4d0 4523 typedef void (APIENTRY * PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z);
sca8er 3:0c3bcea5b4d0 4524 typedef void (APIENTRY * PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords);
sca8er 3:0c3bcea5b4d0 4525 typedef void (APIENTRY * PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w);
sca8er 3:0c3bcea5b4d0 4526 typedef void (APIENTRY * PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords);
sca8er 3:0c3bcea5b4d0 4527 typedef void (APIENTRY * PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w);
sca8er 3:0c3bcea5b4d0 4528 typedef void (APIENTRY * PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords);
sca8er 3:0c3bcea5b4d0 4529 typedef void (APIENTRY * PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
sca8er 3:0c3bcea5b4d0 4530 typedef void (APIENTRY * PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords);
sca8er 3:0c3bcea5b4d0 4531 typedef void (APIENTRY * PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
sca8er 3:0c3bcea5b4d0 4532 typedef void (APIENTRY * PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords);
sca8er 3:0c3bcea5b4d0 4533 typedef void (APIENTRY * PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz);
sca8er 3:0c3bcea5b4d0 4534 typedef void (APIENTRY * PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords);
sca8er 3:0c3bcea5b4d0 4535 typedef void (APIENTRY * PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz);
sca8er 3:0c3bcea5b4d0 4536 typedef void (APIENTRY * PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords);
sca8er 3:0c3bcea5b4d0 4537 typedef void (APIENTRY * PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz);
sca8er 3:0c3bcea5b4d0 4538 typedef void (APIENTRY * PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords);
sca8er 3:0c3bcea5b4d0 4539 typedef void (APIENTRY * PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz);
sca8er 3:0c3bcea5b4d0 4540 typedef void (APIENTRY * PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords);
sca8er 3:0c3bcea5b4d0 4541 typedef void (APIENTRY * PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz);
sca8er 3:0c3bcea5b4d0 4542 typedef void (APIENTRY * PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords);
sca8er 3:0c3bcea5b4d0 4543 typedef void (APIENTRY * PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream);
sca8er 3:0c3bcea5b4d0 4544 typedef void (APIENTRY * PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 4545 typedef void (APIENTRY * PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param);
sca8er 3:0c3bcea5b4d0 4546 #endif
sca8er 3:0c3bcea5b4d0 4547
sca8er 3:0c3bcea5b4d0 4548 #ifndef GL_ATI_element_array
sca8er 3:0c3bcea5b4d0 4549 #define GL_ATI_element_array 1
sca8er 3:0c3bcea5b4d0 4550 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4551 GLAPI void APIENTRY glElementPointerATI (GLenum, const GLvoid *);
sca8er 3:0c3bcea5b4d0 4552 GLAPI void APIENTRY glDrawElementArrayATI (GLenum, GLsizei);
sca8er 3:0c3bcea5b4d0 4553 GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum, GLuint, GLuint, GLsizei);
sca8er 3:0c3bcea5b4d0 4554 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4555 typedef void (APIENTRY * PFNGLELEMENTPOINTERATIPROC) (GLenum type, const GLvoid *pointer);
sca8er 3:0c3bcea5b4d0 4556 typedef void (APIENTRY * PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count);
sca8er 3:0c3bcea5b4d0 4557 typedef void (APIENTRY * PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count);
sca8er 3:0c3bcea5b4d0 4558 #endif
sca8er 3:0c3bcea5b4d0 4559
sca8er 3:0c3bcea5b4d0 4560 #ifndef GL_SUN_mesh_array
sca8er 3:0c3bcea5b4d0 4561 #define GL_SUN_mesh_array 1
sca8er 3:0c3bcea5b4d0 4562 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4563 GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum, GLint, GLsizei, GLsizei);
sca8er 3:0c3bcea5b4d0 4564 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4565 typedef void (APIENTRY * PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width);
sca8er 3:0c3bcea5b4d0 4566 #endif
sca8er 3:0c3bcea5b4d0 4567
sca8er 3:0c3bcea5b4d0 4568 #ifndef GL_SUN_slice_accum
sca8er 3:0c3bcea5b4d0 4569 #define GL_SUN_slice_accum 1
sca8er 3:0c3bcea5b4d0 4570 #endif
sca8er 3:0c3bcea5b4d0 4571
sca8er 3:0c3bcea5b4d0 4572 #ifndef GL_NV_multisample_filter_hint
sca8er 3:0c3bcea5b4d0 4573 #define GL_NV_multisample_filter_hint 1
sca8er 3:0c3bcea5b4d0 4574 #endif
sca8er 3:0c3bcea5b4d0 4575
sca8er 3:0c3bcea5b4d0 4576 #ifndef GL_NV_depth_clamp
sca8er 3:0c3bcea5b4d0 4577 #define GL_NV_depth_clamp 1
sca8er 3:0c3bcea5b4d0 4578 #endif
sca8er 3:0c3bcea5b4d0 4579
sca8er 3:0c3bcea5b4d0 4580 #ifndef GL_NV_occlusion_query
sca8er 3:0c3bcea5b4d0 4581 #define GL_NV_occlusion_query 1
sca8er 3:0c3bcea5b4d0 4582 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4583 GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei, GLuint *);
sca8er 3:0c3bcea5b4d0 4584 GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei, const GLuint *);
sca8er 3:0c3bcea5b4d0 4585 GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint);
sca8er 3:0c3bcea5b4d0 4586 GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint);
sca8er 3:0c3bcea5b4d0 4587 GLAPI void APIENTRY glEndOcclusionQueryNV (void);
sca8er 3:0c3bcea5b4d0 4588 GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint, GLenum, GLint *);
sca8er 3:0c3bcea5b4d0 4589 GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint, GLenum, GLuint *);
sca8er 3:0c3bcea5b4d0 4590 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4591 typedef void (APIENTRY * PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids);
sca8er 3:0c3bcea5b4d0 4592 typedef void (APIENTRY * PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids);
sca8er 3:0c3bcea5b4d0 4593 typedef GLboolean (APIENTRY * PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4594 typedef void (APIENTRY * PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id);
sca8er 3:0c3bcea5b4d0 4595 typedef void (APIENTRY * PFNGLENDOCCLUSIONQUERYNVPROC) (void);
sca8er 3:0c3bcea5b4d0 4596 typedef void (APIENTRY * PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params);
sca8er 3:0c3bcea5b4d0 4597 typedef void (APIENTRY * PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params);
sca8er 3:0c3bcea5b4d0 4598 #endif
sca8er 3:0c3bcea5b4d0 4599
sca8er 3:0c3bcea5b4d0 4600 #ifndef GL_NV_point_sprite
sca8er 3:0c3bcea5b4d0 4601 #define GL_NV_point_sprite 1
sca8er 3:0c3bcea5b4d0 4602 #ifdef GL_GLEXT_PROTOTYPES
sca8er 3:0c3bcea5b4d0 4603 GLAPI void APIENTRY glPointParameteriNV (GLenum, GLint);
sca8er 3:0c3bcea5b4d0 4604 GLAPI void APIENTRY glPointParameterivNV (GLenum, const GLint *);
sca8er 3:0c3bcea5b4d0 4605 #endif /* GL_GLEXT_PROTOTYPES */
sca8er 3:0c3bcea5b4d0 4606 typedef void (APIENTRY * PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param);
sca8er 3:0c3bcea5b4d0 4607 typedef void (APIENTRY * PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params);
sca8er 3:0c3bcea5b4d0 4608 #endif
sca8er 3:0c3bcea5b4d0 4609
sca8er 3:0c3bcea5b4d0 4610 #ifndef GL_NV_texture_shader3
sca8er 3:0c3bcea5b4d0 4611 #define GL_NV_texture_shader3 1
sca8er 3:0c3bcea5b4d0 4612 #endif
sca8er 3:0c3bcea5b4d0 4613
sca8er 3:0c3bcea5b4d0 4614 #ifndef GL_NV_vertex_program1_1
sca8er 3:0c3bcea5b4d0 4615 #define GL_NV_vertex_program1_1 1
sca8er 3:0c3bcea5b4d0 4616 #endif
sca8er 3:0c3bcea5b4d0 4617
sca8er 3:0c3bcea5b4d0 4618
sca8er 3:0c3bcea5b4d0 4619 #ifdef __cplusplus
sca8er 3:0c3bcea5b4d0 4620 }
sca8er 3:0c3bcea5b4d0 4621 #endif
sca8er 3:0c3bcea5b4d0 4622
sca8er 3:0c3bcea5b4d0 4623 #endif