sl@0
|
1 |
#ifndef __glext_h_
|
sl@0
|
2 |
#define __glext_h_
|
sl@0
|
3 |
|
sl@0
|
4 |
/* differences from the actual sample implemtation provided by Khronos:
|
sl@0
|
5 |
- this comment
|
sl@0
|
6 |
- the Doxygen comment with tag 'publishedAll', and tag 'released'
|
sl@0
|
7 |
- added __SOFTFP decorations for call-by-value float functions
|
sl@0
|
8 |
*/
|
sl@0
|
9 |
|
sl@0
|
10 |
/**
|
sl@0
|
11 |
@publishedAll
|
sl@0
|
12 |
@released
|
sl@0
|
13 |
*/
|
sl@0
|
14 |
|
sl@0
|
15 |
#ifdef __cplusplus
|
sl@0
|
16 |
extern "C" {
|
sl@0
|
17 |
#endif
|
sl@0
|
18 |
|
sl@0
|
19 |
/*
|
sl@0
|
20 |
** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
|
sl@0
|
21 |
** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
|
sl@0
|
22 |
**
|
sl@0
|
23 |
** Permission is hereby granted, free of charge, to any person obtaining
|
sl@0
|
24 |
** a copy of this software and associated documentation files
|
sl@0
|
25 |
** (the "Software"), to deal in the Software without restriction,
|
sl@0
|
26 |
** including without limitation the rights to use, copy, modify, merge,
|
sl@0
|
27 |
** publish, distribute, sublicense, and/or sell copies of the Software,
|
sl@0
|
28 |
** and to permit persons to whom the Software is furnished to do so,
|
sl@0
|
29 |
** subject to the following conditions:
|
sl@0
|
30 |
**
|
sl@0
|
31 |
** The above copyright notice including the dates of first
|
sl@0
|
32 |
** publication and either this permission notice or a reference to
|
sl@0
|
33 |
** http://oss.sgi.com/projects/FreeB/ shall be included in all copies
|
sl@0
|
34 |
** or substantial portions of the Software.
|
sl@0
|
35 |
**
|
sl@0
|
36 |
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
sl@0
|
37 |
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
sl@0
|
38 |
** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
sl@0
|
39 |
** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,
|
sl@0
|
40 |
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
sl@0
|
41 |
** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
sl@0
|
42 |
** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
sl@0
|
43 |
**
|
sl@0
|
44 |
** Except as contained in this notice, the name of Silicon Graphics, Inc.
|
sl@0
|
45 |
** shall not be used in advertising or otherwise to promote the sale, use
|
sl@0
|
46 |
** or other dealings in this Software without prior written authorization
|
sl@0
|
47 |
** from Silicon Graphics, Inc.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
|
sl@0
|
50 |
#ifndef GL_APIENTRYP
|
sl@0
|
51 |
# define GL_APIENTRYP GL_APIENTRY*
|
sl@0
|
52 |
#endif
|
sl@0
|
53 |
|
sl@0
|
54 |
/*------------------------------------------------------------------------*
|
sl@0
|
55 |
* OES extension tokens
|
sl@0
|
56 |
*------------------------------------------------------------------------*/
|
sl@0
|
57 |
|
sl@0
|
58 |
/* GL_OES_blend_equation_separate */
|
sl@0
|
59 |
#ifndef GL_OES_blend_equation_separate
|
sl@0
|
60 |
/* BLEND_EQUATION_RGB_OES same as BLEND_EQUATION_OES */
|
sl@0
|
61 |
#define GL_BLEND_EQUATION_RGB_OES 0x8009
|
sl@0
|
62 |
#define GL_BLEND_EQUATION_ALPHA_OES 0x883D
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
|
sl@0
|
65 |
/* GL_OES_blend_func_separate */
|
sl@0
|
66 |
#ifndef GL_OES_blend_func_separate
|
sl@0
|
67 |
#define GL_BLEND_DST_RGB_OES 0x80C8
|
sl@0
|
68 |
#define GL_BLEND_SRC_RGB_OES 0x80C9
|
sl@0
|
69 |
#define GL_BLEND_DST_ALPHA_OES 0x80CA
|
sl@0
|
70 |
#define GL_BLEND_SRC_ALPHA_OES 0x80CB
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
|
sl@0
|
73 |
/* GL_OES_blend_subtract */
|
sl@0
|
74 |
#ifndef GL_OES_blend_subtract
|
sl@0
|
75 |
#define GL_BLEND_EQUATION_OES 0x8009
|
sl@0
|
76 |
#define GL_FUNC_ADD_OES 0x8006
|
sl@0
|
77 |
#define GL_FUNC_SUBTRACT_OES 0x800A
|
sl@0
|
78 |
#define GL_FUNC_REVERSE_SUBTRACT_OES 0x800B
|
sl@0
|
79 |
#endif
|
sl@0
|
80 |
|
sl@0
|
81 |
/* GL_OES_compressed_ETC1_RGB8_texture */
|
sl@0
|
82 |
#ifndef GL_OES_compressed_ETC1_RGB8_texture
|
sl@0
|
83 |
#define GL_ETC1_RGB8_OES 0x8D64
|
sl@0
|
84 |
#endif
|
sl@0
|
85 |
|
sl@0
|
86 |
/* OES_draw_texture */
|
sl@0
|
87 |
#ifndef GL_OES_draw_texture
|
sl@0
|
88 |
#define GL_TEXTURE_CROP_RECT_OES 0x8B9D
|
sl@0
|
89 |
#endif
|
sl@0
|
90 |
|
sl@0
|
91 |
/* OES_fixed_point */
|
sl@0
|
92 |
#ifndef GL_OES_fixed_point
|
sl@0
|
93 |
#define GL_FIXED_OES 0x140C
|
sl@0
|
94 |
#endif
|
sl@0
|
95 |
|
sl@0
|
96 |
/* OES_framebuffer_object */
|
sl@0
|
97 |
#ifndef GL_OES_framebuffer_object
|
sl@0
|
98 |
#define GL_FRAMEBUFFER_OES 0x8D40
|
sl@0
|
99 |
#define GL_RENDERBUFFER_OES 0x8D41
|
sl@0
|
100 |
#define GL_RGBA4_OES 0x8056
|
sl@0
|
101 |
#define GL_RGB5_A1_OES 0x8057
|
sl@0
|
102 |
#define GL_RGB565_OES 0x8D62
|
sl@0
|
103 |
#define GL_DEPTH_COMPONENT16_OES 0x81A5
|
sl@0
|
104 |
#define GL_RENDERBUFFER_WIDTH_OES 0x8D42
|
sl@0
|
105 |
#define GL_RENDERBUFFER_HEIGHT_OES 0x8D43
|
sl@0
|
106 |
#define GL_RENDERBUFFER_INTERNAL_FORMAT_OES 0x8D44
|
sl@0
|
107 |
#define GL_RENDERBUFFER_RED_SIZE_OES 0x8D50
|
sl@0
|
108 |
#define GL_RENDERBUFFER_GREEN_SIZE_OES 0x8D51
|
sl@0
|
109 |
#define GL_RENDERBUFFER_BLUE_SIZE_OES 0x8D52
|
sl@0
|
110 |
#define GL_RENDERBUFFER_ALPHA_SIZE_OES 0x8D53
|
sl@0
|
111 |
#define GL_RENDERBUFFER_DEPTH_SIZE_OES 0x8D54
|
sl@0
|
112 |
#define GL_RENDERBUFFER_STENCIL_SIZE_OES 0x8D55
|
sl@0
|
113 |
#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES 0x8CD0
|
sl@0
|
114 |
#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES 0x8CD1
|
sl@0
|
115 |
#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES 0x8CD2
|
sl@0
|
116 |
#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES 0x8CD3
|
sl@0
|
117 |
#define GL_COLOR_ATTACHMENT0_OES 0x8CE0
|
sl@0
|
118 |
#define GL_DEPTH_ATTACHMENT_OES 0x8D00
|
sl@0
|
119 |
#define GL_STENCIL_ATTACHMENT_OES 0x8D20
|
sl@0
|
120 |
#define GL_FRAMEBUFFER_COMPLETE_OES 0x8CD5
|
sl@0
|
121 |
#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES 0x8CD6
|
sl@0
|
122 |
#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES 0x8CD7
|
sl@0
|
123 |
#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES 0x8CD9
|
sl@0
|
124 |
#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES 0x8CDA
|
sl@0
|
125 |
#define GL_FRAMEBUFFER_UNSUPPORTED_OES 0x8CDD
|
sl@0
|
126 |
#define GL_FRAMEBUFFER_BINDING_OES 0x8CA6
|
sl@0
|
127 |
#define GL_RENDERBUFFER_BINDING_OES 0x8CA7
|
sl@0
|
128 |
#define GL_MAX_RENDERBUFFER_SIZE_OES 0x84E8
|
sl@0
|
129 |
#define GL_INVALID_FRAMEBUFFER_OPERATION_OES 0x0506
|
sl@0
|
130 |
#endif
|
sl@0
|
131 |
|
sl@0
|
132 |
/* OES_matrix_get */
|
sl@0
|
133 |
#ifndef GL_OES_matrix_get
|
sl@0
|
134 |
#define GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES 0x898D
|
sl@0
|
135 |
#define GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES 0x898E
|
sl@0
|
136 |
#define GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES 0x898F
|
sl@0
|
137 |
#endif
|
sl@0
|
138 |
|
sl@0
|
139 |
/* OES_matrix_palette */
|
sl@0
|
140 |
#ifndef GL_OES_matrix_palette
|
sl@0
|
141 |
#define GL_MAX_VERTEX_UNITS_OES 0x86A4
|
sl@0
|
142 |
#define GL_MAX_PALETTE_MATRICES_OES 0x8842
|
sl@0
|
143 |
#define GL_MATRIX_PALETTE_OES 0x8840
|
sl@0
|
144 |
#define GL_MATRIX_INDEX_ARRAY_OES 0x8844
|
sl@0
|
145 |
#define GL_WEIGHT_ARRAY_OES 0x86AD
|
sl@0
|
146 |
#define GL_CURRENT_PALETTE_MATRIX_OES 0x8843
|
sl@0
|
147 |
#define GL_MATRIX_INDEX_ARRAY_SIZE_OES 0x8846
|
sl@0
|
148 |
#define GL_MATRIX_INDEX_ARRAY_TYPE_OES 0x8847
|
sl@0
|
149 |
#define GL_MATRIX_INDEX_ARRAY_STRIDE_OES 0x8848
|
sl@0
|
150 |
#define GL_MATRIX_INDEX_ARRAY_POINTER_OES 0x8849
|
sl@0
|
151 |
#define GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES 0x8B9E
|
sl@0
|
152 |
#define GL_WEIGHT_ARRAY_SIZE_OES 0x86AB
|
sl@0
|
153 |
#define GL_WEIGHT_ARRAY_TYPE_OES 0x86A9
|
sl@0
|
154 |
#define GL_WEIGHT_ARRAY_STRIDE_OES 0x86AA
|
sl@0
|
155 |
#define GL_WEIGHT_ARRAY_POINTER_OES 0x86AC
|
sl@0
|
156 |
#define GL_WEIGHT_ARRAY_BUFFER_BINDING_OES 0x889E
|
sl@0
|
157 |
#endif
|
sl@0
|
158 |
|
sl@0
|
159 |
/* GL_OES_stencil_wrap */
|
sl@0
|
160 |
#ifndef GL_OES_stencil_wrap
|
sl@0
|
161 |
#define GL_INCR_WRAP_OES 0x8507
|
sl@0
|
162 |
#define GL_DECR_WRAP_OES 0x8508
|
sl@0
|
163 |
#endif
|
sl@0
|
164 |
|
sl@0
|
165 |
/* GL_OES_texture_cube_map */
|
sl@0
|
166 |
#ifndef GL_OES_texture_cube_map
|
sl@0
|
167 |
#define GL_NORMAL_MAP_OES 0x8511
|
sl@0
|
168 |
#define GL_REFLECTION_MAP_OES 0x8512
|
sl@0
|
169 |
#define GL_TEXTURE_CUBE_MAP_OES 0x8513
|
sl@0
|
170 |
#define GL_TEXTURE_BINDING_CUBE_MAP_OES 0x8514
|
sl@0
|
171 |
#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES 0x8515
|
sl@0
|
172 |
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES 0x8516
|
sl@0
|
173 |
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES 0x8517
|
sl@0
|
174 |
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES 0x8518
|
sl@0
|
175 |
#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES 0x8519
|
sl@0
|
176 |
#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES 0x851A
|
sl@0
|
177 |
#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES 0x851C
|
sl@0
|
178 |
#define GL_TEXTURE_GEN_MODE_OES 0x2500
|
sl@0
|
179 |
#define GL_TEXTURE_GEN_STR_OES 0x8D60
|
sl@0
|
180 |
#endif
|
sl@0
|
181 |
|
sl@0
|
182 |
/* GL_OES_texture_mirrored_repeat */
|
sl@0
|
183 |
#ifndef GL_OES_texture_mirrored_repeat
|
sl@0
|
184 |
#define GL_MIRRORED_REPEAT_OES 0x8370
|
sl@0
|
185 |
#endif
|
sl@0
|
186 |
|
sl@0
|
187 |
/* GL_OES_EGL_image */
|
sl@0
|
188 |
#ifndef GL_OES_EGL_image
|
sl@0
|
189 |
typedef void* GLeglImageOES;
|
sl@0
|
190 |
#endif
|
sl@0
|
191 |
|
sl@0
|
192 |
/* GL_OES_depth24 */
|
sl@0
|
193 |
#ifndef GL_OES_depth24
|
sl@0
|
194 |
#define GL_DEPTH_COMPONENT24_OES 0x81A6
|
sl@0
|
195 |
#endif
|
sl@0
|
196 |
|
sl@0
|
197 |
/* GL_OES_depth32 */
|
sl@0
|
198 |
#ifndef GL_OES_depth32
|
sl@0
|
199 |
#define GL_DEPTH_COMPONENT32_OES 0x81A7
|
sl@0
|
200 |
#endif
|
sl@0
|
201 |
|
sl@0
|
202 |
/* GL_OES_mapbuffer */
|
sl@0
|
203 |
#ifndef GL_OES_mapbuffer
|
sl@0
|
204 |
#define GL_WRITE_ONLY_OES 0x88B9
|
sl@0
|
205 |
#define GL_BUFFER_ACCESS_OES 0x88BB
|
sl@0
|
206 |
#define GL_BUFFER_MAPPED_OES 0x88BC
|
sl@0
|
207 |
#define GL_BUFFER_MAP_POINTER_OES 0x88BD
|
sl@0
|
208 |
#endif
|
sl@0
|
209 |
|
sl@0
|
210 |
/* GL_OES_rgb8_rgba8 */
|
sl@0
|
211 |
#ifndef GL_OES_rgb8_rgba8
|
sl@0
|
212 |
#define GL_RGB8_OES 0x8051
|
sl@0
|
213 |
#define GL_RGBA8_OES 0x8058
|
sl@0
|
214 |
#endif
|
sl@0
|
215 |
|
sl@0
|
216 |
/* GL_OES_stencil1 */
|
sl@0
|
217 |
#ifndef GL_OES_stencil1
|
sl@0
|
218 |
#define GL_STENCIL_INDEX1_OES 0x8D46
|
sl@0
|
219 |
#endif
|
sl@0
|
220 |
|
sl@0
|
221 |
/* GL_OES_stencil4 */
|
sl@0
|
222 |
#ifndef GL_OES_stencil4
|
sl@0
|
223 |
#define GL_STENCIL_INDEX4_OES 0x8D47
|
sl@0
|
224 |
#endif
|
sl@0
|
225 |
|
sl@0
|
226 |
/* GL_OES_stencil8 */
|
sl@0
|
227 |
#ifndef GL_OES_stencil8
|
sl@0
|
228 |
#define GL_STENCIL_INDEX8_OES 0x8D48
|
sl@0
|
229 |
#endif
|
sl@0
|
230 |
|
sl@0
|
231 |
/* GL_AMD_compressed_3DC_texture */
|
sl@0
|
232 |
#ifndef GL_AMD_compressed_3DC_texture
|
sl@0
|
233 |
#define GL_3DC_X_AMD 0x87F9
|
sl@0
|
234 |
#define GL_3DC_XY_AMD 0x87FA
|
sl@0
|
235 |
#endif
|
sl@0
|
236 |
|
sl@0
|
237 |
/* GL_AMD_compressed_ATC_texture */
|
sl@0
|
238 |
#ifndef GL_AMD_compressed_ATC_texture
|
sl@0
|
239 |
#define GL_ATC_RGB_AMD 0x8C92
|
sl@0
|
240 |
#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93
|
sl@0
|
241 |
#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE
|
sl@0
|
242 |
#endif
|
sl@0
|
243 |
|
sl@0
|
244 |
/* GL_EXT_texture_filter_anisotropic */
|
sl@0
|
245 |
#ifndef GL_EXT_texture_filter_anisotropic
|
sl@0
|
246 |
#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
|
sl@0
|
247 |
#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
|
sl@0
|
248 |
#endif
|
sl@0
|
249 |
|
sl@0
|
250 |
/*------------------------------------------------------------------------*
|
sl@0
|
251 |
* OES extension functions
|
sl@0
|
252 |
*------------------------------------------------------------------------*/
|
sl@0
|
253 |
|
sl@0
|
254 |
/* GL_OES_blend_equation_separate */
|
sl@0
|
255 |
#ifndef GL_OES_blend_equation_separate
|
sl@0
|
256 |
#define GL_OES_blend_equation_separate 1
|
sl@0
|
257 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
258 |
GL_API void GL_APIENTRY glBlendEquationSeparateOES (GLenum modeRGB, GLenum modeAlpha);
|
sl@0
|
259 |
#endif
|
sl@0
|
260 |
typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEOESPROC) (GLenum modeRGB, GLenum modeAlpha);
|
sl@0
|
261 |
#endif
|
sl@0
|
262 |
|
sl@0
|
263 |
/* GL_OES_blend_func_separate */
|
sl@0
|
264 |
#ifndef GL_OES_blend_func_separate
|
sl@0
|
265 |
#define GL_OES_blend_func_separate 1
|
sl@0
|
266 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
267 |
GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
sl@0
|
268 |
#endif
|
sl@0
|
269 |
typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
sl@0
|
270 |
#endif
|
sl@0
|
271 |
|
sl@0
|
272 |
/* GL_OES_blend_subtract */
|
sl@0
|
273 |
#ifndef GL_OES_blend_subtract
|
sl@0
|
274 |
#define GL_OES_blend_subtract 1
|
sl@0
|
275 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
276 |
GL_API void GL_APIENTRY glBlendEquationOES (GLenum mode);
|
sl@0
|
277 |
#endif
|
sl@0
|
278 |
typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONOESPROC) (GLenum mode);
|
sl@0
|
279 |
#endif
|
sl@0
|
280 |
|
sl@0
|
281 |
/* GL_OES_byte_coordinates */
|
sl@0
|
282 |
#ifndef GL_OES_byte_coordinates
|
sl@0
|
283 |
#define GL_OES_byte_coordinates 1
|
sl@0
|
284 |
#endif
|
sl@0
|
285 |
|
sl@0
|
286 |
/* GL_OES_compressed_ETC1_RGB8_texture */
|
sl@0
|
287 |
#ifndef GL_OES_compressed_ETC1_RGB8_texture
|
sl@0
|
288 |
#define GL_OES_compressed_ETC1_RGB8_texture 1
|
sl@0
|
289 |
#endif
|
sl@0
|
290 |
|
sl@0
|
291 |
/* GL_OES_draw_texture */
|
sl@0
|
292 |
#ifndef GL_OES_draw_texture
|
sl@0
|
293 |
#define GL_OES_draw_texture 1
|
sl@0
|
294 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
295 |
GL_API void GL_APIENTRY glDrawTexsOES (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
|
sl@0
|
296 |
GL_API void GL_APIENTRY glDrawTexiOES (GLint x, GLint y, GLint z, GLint width, GLint height);
|
sl@0
|
297 |
GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
|
sl@0
|
298 |
GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
|
sl@0
|
299 |
GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
|
sl@0
|
300 |
GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
|
sl@0
|
301 |
GL_API void GL_APIENTRY glDrawTexfOES (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
|
sl@0
|
302 |
GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
|
sl@0
|
303 |
#endif
|
sl@0
|
304 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXSOESPROC) (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
|
sl@0
|
305 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXIOESPROC) (GLint x, GLint y, GLint z, GLint width, GLint height);
|
sl@0
|
306 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXXOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
|
sl@0
|
307 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXSVOESPROC) (const GLshort *coords);
|
sl@0
|
308 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXIVOESPROC) (const GLint *coords);
|
sl@0
|
309 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords);
|
sl@0
|
310 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXFOESPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
|
sl@0
|
311 |
typedef void (GL_APIENTRYP PFNGLDRAWTEXFVOESPROC) (const GLfloat *coords);
|
sl@0
|
312 |
#endif
|
sl@0
|
313 |
|
sl@0
|
314 |
/* GL_OES_extended_matrix_palette */
|
sl@0
|
315 |
#ifndef GL_OES_extended_matrix_palette
|
sl@0
|
316 |
#define GL_OES_extended_matrix_palette 1
|
sl@0
|
317 |
#endif
|
sl@0
|
318 |
|
sl@0
|
319 |
/* GL_OES_fixed_point */
|
sl@0
|
320 |
#ifndef GL_OES_fixed_point
|
sl@0
|
321 |
#define GL_OES_fixed_point 1
|
sl@0
|
322 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
323 |
GL_API void GL_APIENTRY glAlphaFuncxOES (GLenum func, GLclampx ref);
|
sl@0
|
324 |
GL_API void GL_APIENTRY glClearColorxOES (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
|
sl@0
|
325 |
GL_API void GL_APIENTRY glClearDepthxOES (GLclampx depth);
|
sl@0
|
326 |
GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
|
sl@0
|
327 |
GL_API void GL_APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
|
sl@0
|
328 |
GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar);
|
sl@0
|
329 |
GL_API void GL_APIENTRY glFogxOES (GLenum pname, GLfixed param);
|
sl@0
|
330 |
GL_API void GL_APIENTRY glFogxvOES (GLenum pname, const GLfixed *params);
|
sl@0
|
331 |
GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
sl@0
|
332 |
GL_API void GL_APIENTRY glGetClipPlanexOES (GLenum pname, GLfixed eqn[4]);
|
sl@0
|
333 |
GL_API void GL_APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params);
|
sl@0
|
334 |
GL_API void GL_APIENTRY glGetLightxvOES (GLenum light, GLenum pname, GLfixed *params);
|
sl@0
|
335 |
GL_API void GL_APIENTRY glGetMaterialxvOES (GLenum face, GLenum pname, GLfixed *params);
|
sl@0
|
336 |
GL_API void GL_APIENTRY glGetTexEnvxvOES (GLenum env, GLenum pname, GLfixed *params);
|
sl@0
|
337 |
GL_API void GL_APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params);
|
sl@0
|
338 |
GL_API void GL_APIENTRY glLightModelxOES (GLenum pname, GLfixed param);
|
sl@0
|
339 |
GL_API void GL_APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *params);
|
sl@0
|
340 |
GL_API void GL_APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param);
|
sl@0
|
341 |
GL_API void GL_APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params);
|
sl@0
|
342 |
GL_API void GL_APIENTRY glLineWidthxOES (GLfixed width);
|
sl@0
|
343 |
GL_API void GL_APIENTRY glLoadMatrixxOES (const GLfixed *m);
|
sl@0
|
344 |
GL_API void GL_APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param);
|
sl@0
|
345 |
GL_API void GL_APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *params);
|
sl@0
|
346 |
GL_API void GL_APIENTRY glMultMatrixxOES (const GLfixed *m);
|
sl@0
|
347 |
GL_API void GL_APIENTRY glMultiTexCoord4xOES (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
|
sl@0
|
348 |
GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz);
|
sl@0
|
349 |
GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
sl@0
|
350 |
GL_API void GL_APIENTRY glPointParameterxOES (GLenum pname, GLfixed param);
|
sl@0
|
351 |
GL_API void GL_APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params);
|
sl@0
|
352 |
GL_API void GL_APIENTRY glPointSizexOES (GLfixed size);
|
sl@0
|
353 |
GL_API void GL_APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units);
|
sl@0
|
354 |
GL_API void GL_APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
355 |
GL_API void GL_APIENTRY glSampleCoveragexOES (GLclampx value, GLboolean invert);
|
sl@0
|
356 |
GL_API void GL_APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
357 |
GL_API void GL_APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param);
|
sl@0
|
358 |
GL_API void GL_APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params);
|
sl@0
|
359 |
GL_API void GL_APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param);
|
sl@0
|
360 |
GL_API void GL_APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params);
|
sl@0
|
361 |
GL_API void GL_APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
362 |
#endif
|
sl@0
|
363 |
typedef void (GL_APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLclampx ref);
|
sl@0
|
364 |
typedef void (GL_APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
|
sl@0
|
365 |
typedef void (GL_APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLclampx depth);
|
sl@0
|
366 |
typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
|
sl@0
|
367 |
typedef void (GL_APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
|
sl@0
|
368 |
typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar);
|
sl@0
|
369 |
typedef void (GL_APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param);
|
sl@0
|
370 |
typedef void (GL_APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *params);
|
sl@0
|
371 |
typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
sl@0
|
372 |
typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum pname, GLfixed eqn[4]);
|
sl@0
|
373 |
typedef void (GL_APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params);
|
sl@0
|
374 |
typedef void (GL_APIENTRYP PFNGLGETLIGHTXVOESPROC) (GLenum light, GLenum pname, GLfixed *params);
|
sl@0
|
375 |
typedef void (GL_APIENTRYP PFNGLGETMATERIALXVOESPROC) (GLenum face, GLenum pname, GLfixed *params);
|
sl@0
|
376 |
typedef void (GL_APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum env, GLenum pname, GLfixed *params);
|
sl@0
|
377 |
typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params);
|
sl@0
|
378 |
typedef void (GL_APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param);
|
sl@0
|
379 |
typedef void (GL_APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *params);
|
sl@0
|
380 |
typedef void (GL_APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param);
|
sl@0
|
381 |
typedef void (GL_APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params);
|
sl@0
|
382 |
typedef void (GL_APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width);
|
sl@0
|
383 |
typedef void (GL_APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m);
|
sl@0
|
384 |
typedef void (GL_APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param);
|
sl@0
|
385 |
typedef void (GL_APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *params);
|
sl@0
|
386 |
typedef void (GL_APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m);
|
sl@0
|
387 |
typedef void (GL_APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
|
sl@0
|
388 |
typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
|
sl@0
|
389 |
typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
|
sl@0
|
390 |
typedef void (GL_APIENTRYP PFNGLPOINTPARAMETERXOESPROC) (GLenum pname, GLfixed param);
|
sl@0
|
391 |
typedef void (GL_APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params);
|
sl@0
|
392 |
typedef void (GL_APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size);
|
sl@0
|
393 |
typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units);
|
sl@0
|
394 |
typedef void (GL_APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
395 |
typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEXOESPROC) (GLclampx value, GLboolean invert);
|
sl@0
|
396 |
typedef void (GL_APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
397 |
typedef void (GL_APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param);
|
sl@0
|
398 |
typedef void (GL_APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params);
|
sl@0
|
399 |
typedef void (GL_APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param);
|
sl@0
|
400 |
typedef void (GL_APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params);
|
sl@0
|
401 |
typedef void (GL_APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z);
|
sl@0
|
402 |
#endif
|
sl@0
|
403 |
|
sl@0
|
404 |
/* GL_OES_framebuffer_object */
|
sl@0
|
405 |
#ifndef GL_OES_framebuffer_object
|
sl@0
|
406 |
#define GL_OES_framebuffer_object 1
|
sl@0
|
407 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
408 |
GL_API GLboolean GL_APIENTRY glIsRenderbufferOES (GLuint renderbuffer);
|
sl@0
|
409 |
GL_API void GL_APIENTRY glBindRenderbufferOES (GLenum target, GLuint renderbuffer);
|
sl@0
|
410 |
GL_API void GL_APIENTRY glDeleteRenderbuffersOES (GLsizei n, const GLuint* renderbuffers);
|
sl@0
|
411 |
GL_API void GL_APIENTRY glGenRenderbuffersOES (GLsizei n, GLuint* renderbuffers);
|
sl@0
|
412 |
GL_API void GL_APIENTRY glRenderbufferStorageOES (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
|
sl@0
|
413 |
GL_API void GL_APIENTRY glGetRenderbufferParameterivOES (GLenum target, GLenum pname, GLint* params);
|
sl@0
|
414 |
GL_API GLboolean GL_APIENTRY glIsFramebufferOES (GLuint framebuffer);
|
sl@0
|
415 |
GL_API void GL_APIENTRY glBindFramebufferOES (GLenum target, GLuint framebuffer);
|
sl@0
|
416 |
GL_API void GL_APIENTRY glDeleteFramebuffersOES (GLsizei n, const GLuint* framebuffers);
|
sl@0
|
417 |
GL_API void GL_APIENTRY glGenFramebuffersOES (GLsizei n, GLuint* framebuffers);
|
sl@0
|
418 |
GL_API GLenum GL_APIENTRY glCheckFramebufferStatusOES (GLenum target);
|
sl@0
|
419 |
GL_API void GL_APIENTRY glFramebufferRenderbufferOES (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
|
sl@0
|
420 |
GL_API void GL_APIENTRY glFramebufferTexture2DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
|
sl@0
|
421 |
GL_API void GL_APIENTRY glGetFramebufferAttachmentParameterivOES (GLenum target, GLenum attachment, GLenum pname, GLint* params);
|
sl@0
|
422 |
GL_API void GL_APIENTRY glGenerateMipmapOES (GLenum target);
|
sl@0
|
423 |
#endif
|
sl@0
|
424 |
typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFEROESPROC) (GLuint renderbuffer);
|
sl@0
|
425 |
typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFEROESPROC) (GLenum target, GLuint renderbuffer);
|
sl@0
|
426 |
typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSOESPROC) (GLsizei n, const GLuint* renderbuffers);
|
sl@0
|
427 |
typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSOESPROC) (GLsizei n, GLuint* renderbuffers);
|
sl@0
|
428 |
typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
|
sl@0
|
429 |
typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVOESPROC) (GLenum target, GLenum pname, GLint* params);
|
sl@0
|
430 |
typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFEROESPROC) (GLuint framebuffer);
|
sl@0
|
431 |
typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFEROESPROC) (GLenum target, GLuint framebuffer);
|
sl@0
|
432 |
typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSOESPROC) (GLsizei n, const GLuint* framebuffers);
|
sl@0
|
433 |
typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSOESPROC) (GLsizei n, GLuint* framebuffers);
|
sl@0
|
434 |
typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSOESPROC) (GLenum target);
|
sl@0
|
435 |
typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEROESPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
|
sl@0
|
436 |
typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
|
sl@0
|
437 |
typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVOESPROC) (GLenum target, GLenum attachment, GLenum pname, GLint* params);
|
sl@0
|
438 |
typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPOESPROC) (GLenum target);
|
sl@0
|
439 |
#endif
|
sl@0
|
440 |
|
sl@0
|
441 |
/* GL_OES_matrix_get */
|
sl@0
|
442 |
#ifndef GL_OES_matrix_get
|
sl@0
|
443 |
#define GL_OES_matrix_get 1
|
sl@0
|
444 |
#endif
|
sl@0
|
445 |
|
sl@0
|
446 |
/* GL_OES_matrix_palette */
|
sl@0
|
447 |
#ifndef GL_OES_matrix_palette
|
sl@0
|
448 |
#define GL_OES_matrix_palette 1
|
sl@0
|
449 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
450 |
GL_API void GL_APIENTRY glCurrentPaletteMatrixOES (GLuint matrixpaletteindex);
|
sl@0
|
451 |
GL_API void GL_APIENTRY glLoadPaletteFromModelViewMatrixOES (void);
|
sl@0
|
452 |
GL_API void GL_APIENTRY glMatrixIndexPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
453 |
GL_API void GL_APIENTRY glWeightPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
454 |
#endif
|
sl@0
|
455 |
typedef void (GL_APIENTRYP PFNGLCURRENTPALETTEMATRIXOESPROC) (GLuint matrixpaletteindex);
|
sl@0
|
456 |
typedef void (GL_APIENTRYP PFNGLLOADPALETTEFROMMODELVIEWMATRIXOESPROC) (void);
|
sl@0
|
457 |
typedef void (GL_APIENTRYP PFNGLMATRIXINDEXPOINTEROESPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
458 |
typedef void (GL_APIENTRYP PFNGLWEIGHTPOINTEROESPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
459 |
#endif
|
sl@0
|
460 |
|
sl@0
|
461 |
/* GL_OES_query_matrix */
|
sl@0
|
462 |
#ifndef GL_OES_query_matrix
|
sl@0
|
463 |
#define GL_OES_query_matrix 1
|
sl@0
|
464 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
465 |
GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
|
sl@0
|
466 |
#endif
|
sl@0
|
467 |
typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
|
sl@0
|
468 |
#endif
|
sl@0
|
469 |
|
sl@0
|
470 |
/* GL_OES_single_precision */
|
sl@0
|
471 |
#ifndef GL_OES_single_precision
|
sl@0
|
472 |
#define GL_OES_single_precision 1
|
sl@0
|
473 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
474 |
GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar) __SOFTFP;
|
sl@0
|
475 |
GL_API void GL_APIENTRY glFrustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
|
sl@0
|
476 |
GL_API void GL_APIENTRY glOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
|
sl@0
|
477 |
GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
|
sl@0
|
478 |
GL_API void GL_APIENTRY glGetClipPlanefOES (GLenum pname, GLfloat eqn[4]);
|
sl@0
|
479 |
GL_API void GL_APIENTRY glClearDepthfOES (GLclampf depth) __SOFTFP;
|
sl@0
|
480 |
#endif
|
sl@0
|
481 |
typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf zNear, GLclampf zFar) __SOFTFP;
|
sl@0
|
482 |
typedef void (GL_APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
|
sl@0
|
483 |
typedef void (GL_APIENTRYP PFNGLORTHOFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
|
sl@0
|
484 |
typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
|
sl@0
|
485 |
typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum pname, GLfloat eqn[4]);
|
sl@0
|
486 |
typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth) __SOFTFP;
|
sl@0
|
487 |
#endif
|
sl@0
|
488 |
|
sl@0
|
489 |
/* GL_OES_stencil_wrap */
|
sl@0
|
490 |
#ifndef GL_OES_stencil_wrap
|
sl@0
|
491 |
#define GL_OES_stencil_wrap 1
|
sl@0
|
492 |
#endif
|
sl@0
|
493 |
|
sl@0
|
494 |
/* GL_OES_texture_cube_map */
|
sl@0
|
495 |
#ifndef GL_OES_texture_cube_map
|
sl@0
|
496 |
#define GL_OES_texture_cube_map 1
|
sl@0
|
497 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
498 |
GL_API void GL_APIENTRY glTexGenfOES (GLenum coord, GLenum pname, GLfloat param) __SOFTFP;
|
sl@0
|
499 |
GL_API void GL_APIENTRY glTexGenfvOES (GLenum coord, GLenum pname, const GLfloat *params);
|
sl@0
|
500 |
GL_API void GL_APIENTRY glTexGeniOES (GLenum coord, GLenum pname, GLint param);
|
sl@0
|
501 |
GL_API void GL_APIENTRY glTexGenivOES (GLenum coord, GLenum pname, const GLint *params);
|
sl@0
|
502 |
GL_API void GL_APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param);
|
sl@0
|
503 |
GL_API void GL_APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params);
|
sl@0
|
504 |
GL_API void GL_APIENTRY glGetTexGenfvOES (GLenum coord, GLenum pname, GLfloat *params);
|
sl@0
|
505 |
GL_API void GL_APIENTRY glGetTexGenivOES (GLenum coord, GLenum pname, GLint *params);
|
sl@0
|
506 |
GL_API void GL_APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params);
|
sl@0
|
507 |
#endif
|
sl@0
|
508 |
typedef void (GL_APIENTRYP PFNGLTEXGENFOESPROC) (GLenum coord, GLenum pname, GLfloat param) __SOFTFP;
|
sl@0
|
509 |
typedef void (GL_APIENTRYP PFNGLTEXGENFVOESPROC) (GLenum coord, GLenum pname, const GLfloat *params);
|
sl@0
|
510 |
typedef void (GL_APIENTRYP PFNGLTEXGENIOESPROC) (GLenum coord, GLenum pname, GLint param);
|
sl@0
|
511 |
typedef void (GL_APIENTRYP PFNGLTEXGENIVOESPROC) (GLenum coord, GLenum pname, const GLint *params);
|
sl@0
|
512 |
typedef void (GL_APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param);
|
sl@0
|
513 |
typedef void (GL_APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params);
|
sl@0
|
514 |
typedef void (GL_APIENTRYP PFNGLGETTEXGENFVOESPROC) (GLenum coord, GLenum pname, GLfloat *params);
|
sl@0
|
515 |
typedef void (GL_APIENTRYP PFNGLGETTEXGENIVOESPROC) (GLenum coord, GLenum pname, GLint *params);
|
sl@0
|
516 |
typedef void (GL_APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params);
|
sl@0
|
517 |
#endif
|
sl@0
|
518 |
|
sl@0
|
519 |
/* GL_OES_texture_env_crossbar */
|
sl@0
|
520 |
#ifndef GL_OES_texture_env_crossbar
|
sl@0
|
521 |
#define GL_OES_texture_env_crossbar 1
|
sl@0
|
522 |
#endif
|
sl@0
|
523 |
|
sl@0
|
524 |
/* GL_OES_texture_mirrored_repeat */
|
sl@0
|
525 |
#ifndef GL_OES_texture_mirrored_repeat
|
sl@0
|
526 |
#define GL_OES_texture_mirrored_repeat 1
|
sl@0
|
527 |
#endif
|
sl@0
|
528 |
|
sl@0
|
529 |
/* GL_OES_EGL_image */
|
sl@0
|
530 |
#ifndef GL_OES_EGL_image
|
sl@0
|
531 |
#define GL_OES_EGL_image 1
|
sl@0
|
532 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
533 |
GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);
|
sl@0
|
534 |
GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);
|
sl@0
|
535 |
#endif
|
sl@0
|
536 |
typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image);
|
sl@0
|
537 |
typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
|
sl@0
|
538 |
#endif
|
sl@0
|
539 |
|
sl@0
|
540 |
/* GL_OES_depth24 */
|
sl@0
|
541 |
#ifndef GL_OES_depth24
|
sl@0
|
542 |
#define GL_OES_depth24 1
|
sl@0
|
543 |
#endif
|
sl@0
|
544 |
|
sl@0
|
545 |
/* GL_OES_depth32 */
|
sl@0
|
546 |
#ifndef GL_OES_depth32
|
sl@0
|
547 |
#define GL_OES_depth32 1
|
sl@0
|
548 |
#endif
|
sl@0
|
549 |
|
sl@0
|
550 |
/* GL_OES_element_index_uint */
|
sl@0
|
551 |
#ifndef GL_OES_element_index_uint
|
sl@0
|
552 |
#define GL_OES_element_index_uint 1
|
sl@0
|
553 |
#endif
|
sl@0
|
554 |
|
sl@0
|
555 |
/* GL_OES_fbo_render_mipmap */
|
sl@0
|
556 |
#ifndef GL_OES_fbo_render_mipmap
|
sl@0
|
557 |
#define GL_OES_fbo_render_mipmap 1
|
sl@0
|
558 |
#endif
|
sl@0
|
559 |
|
sl@0
|
560 |
/* GL_OES_mapbuffer */
|
sl@0
|
561 |
#ifndef GL_OES_mapbuffer
|
sl@0
|
562 |
#define GL_OES_mapbuffer 1
|
sl@0
|
563 |
#ifdef GL_GLEXT_PROTOTYPES
|
sl@0
|
564 |
GL_API void* GL_APIENTRY glMapBufferOES (GLenum target, GLenum access);
|
sl@0
|
565 |
GL_API GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target);
|
sl@0
|
566 |
GL_API void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void** params);
|
sl@0
|
567 |
#endif
|
sl@0
|
568 |
typedef void* (GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access);
|
sl@0
|
569 |
typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target);
|
sl@0
|
570 |
typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void** params);
|
sl@0
|
571 |
#endif
|
sl@0
|
572 |
|
sl@0
|
573 |
/* GL_OES_rgb8_rgba8 */
|
sl@0
|
574 |
#ifndef GL_OES_rgb8_rgba8
|
sl@0
|
575 |
#define GL_OES_rgb8_rgba8 1
|
sl@0
|
576 |
#endif
|
sl@0
|
577 |
|
sl@0
|
578 |
/* GL_OES_stencil1 */
|
sl@0
|
579 |
#ifndef GL_OES_stencil1
|
sl@0
|
580 |
#define GL_OES_stencil1 1
|
sl@0
|
581 |
#endif
|
sl@0
|
582 |
|
sl@0
|
583 |
/* GL_OES_stencil4 */
|
sl@0
|
584 |
#ifndef GL_OES_stencil4
|
sl@0
|
585 |
#define GL_OES_stencil4 1
|
sl@0
|
586 |
#endif
|
sl@0
|
587 |
|
sl@0
|
588 |
/* GL_OES_stencil8 */
|
sl@0
|
589 |
#ifndef GL_OES_stencil8
|
sl@0
|
590 |
#define GL_OES_stencil8 1
|
sl@0
|
591 |
#endif
|
sl@0
|
592 |
|
sl@0
|
593 |
/* GL_AMD_compressed_3DC_texture */
|
sl@0
|
594 |
#ifndef GL_AMD_compressed_3DC_texture
|
sl@0
|
595 |
#define GL_AMD_compressed_3DC_texture 1
|
sl@0
|
596 |
#endif
|
sl@0
|
597 |
|
sl@0
|
598 |
/* GL_AMD_compressed_ATC_texture */
|
sl@0
|
599 |
#ifndef GL_AMD_compressed_ATC_texture
|
sl@0
|
600 |
#define GL_AMD_compressed_ATC_texture 1
|
sl@0
|
601 |
#endif
|
sl@0
|
602 |
|
sl@0
|
603 |
/* GL_EXT_texture_filter_anisotropic */
|
sl@0
|
604 |
#ifndef GL_EXT_texture_filter_anisotropic
|
sl@0
|
605 |
#define GL_EXT_texture_filter_anisotropic 1
|
sl@0
|
606 |
#endif
|
sl@0
|
607 |
|
sl@0
|
608 |
#ifdef __cplusplus
|
sl@0
|
609 |
}
|
sl@0
|
610 |
#endif
|
sl@0
|
611 |
|
sl@0
|
612 |
#endif /* __glext_h_ */
|
sl@0
|
613 |
|