1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/opengles/openglesinterface/include/glext.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,613 @@
1.4 +#ifndef __glext_h_
1.5 +#define __glext_h_
1.6 +
1.7 +/* differences from the actual sample implemtation provided by Khronos:
1.8 +- this comment
1.9 +- the Doxygen comment with tag 'publishedAll', and tag 'released'
1.10 +- added __SOFTFP decorations for call-by-value float functions
1.11 + */
1.12 +
1.13 +/**
1.14 +@publishedAll
1.15 +@released
1.16 +*/
1.17 +
1.18 +#ifdef __cplusplus
1.19 +extern "C" {
1.20 +#endif
1.21 +
1.22 +/*
1.23 +** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
1.24 +** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
1.25 +**
1.26 +** Permission is hereby granted, free of charge, to any person obtaining
1.27 +** a copy of this software and associated documentation files
1.28 +** (the "Software"), to deal in the Software without restriction,
1.29 +** including without limitation the rights to use, copy, modify, merge,
1.30 +** publish, distribute, sublicense, and/or sell copies of the Software,
1.31 +** and to permit persons to whom the Software is furnished to do so,
1.32 +** subject to the following conditions:
1.33 +**
1.34 +** The above copyright notice including the dates of first
1.35 +** publication and either this permission notice or a reference to
1.36 +** http://oss.sgi.com/projects/FreeB/ shall be included in all copies
1.37 +** or substantial portions of the Software.
1.38 +**
1.39 +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1.40 +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1.41 +** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1.42 +** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,
1.43 +** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1.44 +** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
1.45 +** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1.46 +**
1.47 +** Except as contained in this notice, the name of Silicon Graphics, Inc.
1.48 +** shall not be used in advertising or otherwise to promote the sale, use
1.49 +** or other dealings in this Software without prior written authorization
1.50 +** from Silicon Graphics, Inc.
1.51 +*/
1.52 +
1.53 +#ifndef GL_APIENTRYP
1.54 +# define GL_APIENTRYP GL_APIENTRY*
1.55 +#endif
1.56 +
1.57 +/*------------------------------------------------------------------------*
1.58 + * OES extension tokens
1.59 + *------------------------------------------------------------------------*/
1.60 +
1.61 +/* GL_OES_blend_equation_separate */
1.62 +#ifndef GL_OES_blend_equation_separate
1.63 +/* BLEND_EQUATION_RGB_OES same as BLEND_EQUATION_OES */
1.64 +#define GL_BLEND_EQUATION_RGB_OES 0x8009
1.65 +#define GL_BLEND_EQUATION_ALPHA_OES 0x883D
1.66 +#endif
1.67 +
1.68 +/* GL_OES_blend_func_separate */
1.69 +#ifndef GL_OES_blend_func_separate
1.70 +#define GL_BLEND_DST_RGB_OES 0x80C8
1.71 +#define GL_BLEND_SRC_RGB_OES 0x80C9
1.72 +#define GL_BLEND_DST_ALPHA_OES 0x80CA
1.73 +#define GL_BLEND_SRC_ALPHA_OES 0x80CB
1.74 +#endif
1.75 +
1.76 +/* GL_OES_blend_subtract */
1.77 +#ifndef GL_OES_blend_subtract
1.78 +#define GL_BLEND_EQUATION_OES 0x8009
1.79 +#define GL_FUNC_ADD_OES 0x8006
1.80 +#define GL_FUNC_SUBTRACT_OES 0x800A
1.81 +#define GL_FUNC_REVERSE_SUBTRACT_OES 0x800B
1.82 +#endif
1.83 +
1.84 +/* GL_OES_compressed_ETC1_RGB8_texture */
1.85 +#ifndef GL_OES_compressed_ETC1_RGB8_texture
1.86 +#define GL_ETC1_RGB8_OES 0x8D64
1.87 +#endif
1.88 +
1.89 +/* OES_draw_texture */
1.90 +#ifndef GL_OES_draw_texture
1.91 +#define GL_TEXTURE_CROP_RECT_OES 0x8B9D
1.92 +#endif
1.93 +
1.94 +/* OES_fixed_point */
1.95 +#ifndef GL_OES_fixed_point
1.96 +#define GL_FIXED_OES 0x140C
1.97 +#endif
1.98 +
1.99 +/* OES_framebuffer_object */
1.100 +#ifndef GL_OES_framebuffer_object
1.101 +#define GL_FRAMEBUFFER_OES 0x8D40
1.102 +#define GL_RENDERBUFFER_OES 0x8D41
1.103 +#define GL_RGBA4_OES 0x8056
1.104 +#define GL_RGB5_A1_OES 0x8057
1.105 +#define GL_RGB565_OES 0x8D62
1.106 +#define GL_DEPTH_COMPONENT16_OES 0x81A5
1.107 +#define GL_RENDERBUFFER_WIDTH_OES 0x8D42
1.108 +#define GL_RENDERBUFFER_HEIGHT_OES 0x8D43
1.109 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_OES 0x8D44
1.110 +#define GL_RENDERBUFFER_RED_SIZE_OES 0x8D50
1.111 +#define GL_RENDERBUFFER_GREEN_SIZE_OES 0x8D51
1.112 +#define GL_RENDERBUFFER_BLUE_SIZE_OES 0x8D52
1.113 +#define GL_RENDERBUFFER_ALPHA_SIZE_OES 0x8D53
1.114 +#define GL_RENDERBUFFER_DEPTH_SIZE_OES 0x8D54
1.115 +#define GL_RENDERBUFFER_STENCIL_SIZE_OES 0x8D55
1.116 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES 0x8CD0
1.117 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES 0x8CD1
1.118 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES 0x8CD2
1.119 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES 0x8CD3
1.120 +#define GL_COLOR_ATTACHMENT0_OES 0x8CE0
1.121 +#define GL_DEPTH_ATTACHMENT_OES 0x8D00
1.122 +#define GL_STENCIL_ATTACHMENT_OES 0x8D20
1.123 +#define GL_FRAMEBUFFER_COMPLETE_OES 0x8CD5
1.124 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES 0x8CD6
1.125 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES 0x8CD7
1.126 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES 0x8CD9
1.127 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES 0x8CDA
1.128 +#define GL_FRAMEBUFFER_UNSUPPORTED_OES 0x8CDD
1.129 +#define GL_FRAMEBUFFER_BINDING_OES 0x8CA6
1.130 +#define GL_RENDERBUFFER_BINDING_OES 0x8CA7
1.131 +#define GL_MAX_RENDERBUFFER_SIZE_OES 0x84E8
1.132 +#define GL_INVALID_FRAMEBUFFER_OPERATION_OES 0x0506
1.133 +#endif
1.134 +
1.135 +/* OES_matrix_get */
1.136 +#ifndef GL_OES_matrix_get
1.137 +#define GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES 0x898D
1.138 +#define GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES 0x898E
1.139 +#define GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES 0x898F
1.140 +#endif
1.141 +
1.142 +/* OES_matrix_palette */
1.143 +#ifndef GL_OES_matrix_palette
1.144 +#define GL_MAX_VERTEX_UNITS_OES 0x86A4
1.145 +#define GL_MAX_PALETTE_MATRICES_OES 0x8842
1.146 +#define GL_MATRIX_PALETTE_OES 0x8840
1.147 +#define GL_MATRIX_INDEX_ARRAY_OES 0x8844
1.148 +#define GL_WEIGHT_ARRAY_OES 0x86AD
1.149 +#define GL_CURRENT_PALETTE_MATRIX_OES 0x8843
1.150 +#define GL_MATRIX_INDEX_ARRAY_SIZE_OES 0x8846
1.151 +#define GL_MATRIX_INDEX_ARRAY_TYPE_OES 0x8847
1.152 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_OES 0x8848
1.153 +#define GL_MATRIX_INDEX_ARRAY_POINTER_OES 0x8849
1.154 +#define GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES 0x8B9E
1.155 +#define GL_WEIGHT_ARRAY_SIZE_OES 0x86AB
1.156 +#define GL_WEIGHT_ARRAY_TYPE_OES 0x86A9
1.157 +#define GL_WEIGHT_ARRAY_STRIDE_OES 0x86AA
1.158 +#define GL_WEIGHT_ARRAY_POINTER_OES 0x86AC
1.159 +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_OES 0x889E
1.160 +#endif
1.161 +
1.162 +/* GL_OES_stencil_wrap */
1.163 +#ifndef GL_OES_stencil_wrap
1.164 +#define GL_INCR_WRAP_OES 0x8507
1.165 +#define GL_DECR_WRAP_OES 0x8508
1.166 +#endif
1.167 +
1.168 +/* GL_OES_texture_cube_map */
1.169 +#ifndef GL_OES_texture_cube_map
1.170 +#define GL_NORMAL_MAP_OES 0x8511
1.171 +#define GL_REFLECTION_MAP_OES 0x8512
1.172 +#define GL_TEXTURE_CUBE_MAP_OES 0x8513
1.173 +#define GL_TEXTURE_BINDING_CUBE_MAP_OES 0x8514
1.174 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES 0x8515
1.175 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES 0x8516
1.176 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES 0x8517
1.177 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES 0x8518
1.178 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES 0x8519
1.179 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES 0x851A
1.180 +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES 0x851C
1.181 +#define GL_TEXTURE_GEN_MODE_OES 0x2500
1.182 +#define GL_TEXTURE_GEN_STR_OES 0x8D60
1.183 +#endif
1.184 +
1.185 +/* GL_OES_texture_mirrored_repeat */
1.186 +#ifndef GL_OES_texture_mirrored_repeat
1.187 +#define GL_MIRRORED_REPEAT_OES 0x8370
1.188 +#endif
1.189 +
1.190 +/* GL_OES_EGL_image */
1.191 +#ifndef GL_OES_EGL_image
1.192 +typedef void* GLeglImageOES;
1.193 +#endif
1.194 +
1.195 +/* GL_OES_depth24 */
1.196 +#ifndef GL_OES_depth24
1.197 +#define GL_DEPTH_COMPONENT24_OES 0x81A6
1.198 +#endif
1.199 +
1.200 +/* GL_OES_depth32 */
1.201 +#ifndef GL_OES_depth32
1.202 +#define GL_DEPTH_COMPONENT32_OES 0x81A7
1.203 +#endif
1.204 +
1.205 +/* GL_OES_mapbuffer */
1.206 +#ifndef GL_OES_mapbuffer
1.207 +#define GL_WRITE_ONLY_OES 0x88B9
1.208 +#define GL_BUFFER_ACCESS_OES 0x88BB
1.209 +#define GL_BUFFER_MAPPED_OES 0x88BC
1.210 +#define GL_BUFFER_MAP_POINTER_OES 0x88BD
1.211 +#endif
1.212 +
1.213 +/* GL_OES_rgb8_rgba8 */
1.214 +#ifndef GL_OES_rgb8_rgba8
1.215 +#define GL_RGB8_OES 0x8051
1.216 +#define GL_RGBA8_OES 0x8058
1.217 +#endif
1.218 +
1.219 +/* GL_OES_stencil1 */
1.220 +#ifndef GL_OES_stencil1
1.221 +#define GL_STENCIL_INDEX1_OES 0x8D46
1.222 +#endif
1.223 +
1.224 +/* GL_OES_stencil4 */
1.225 +#ifndef GL_OES_stencil4
1.226 +#define GL_STENCIL_INDEX4_OES 0x8D47
1.227 +#endif
1.228 +
1.229 +/* GL_OES_stencil8 */
1.230 +#ifndef GL_OES_stencil8
1.231 +#define GL_STENCIL_INDEX8_OES 0x8D48
1.232 +#endif
1.233 +
1.234 +/* GL_AMD_compressed_3DC_texture */
1.235 +#ifndef GL_AMD_compressed_3DC_texture
1.236 +#define GL_3DC_X_AMD 0x87F9
1.237 +#define GL_3DC_XY_AMD 0x87FA
1.238 +#endif
1.239 +
1.240 +/* GL_AMD_compressed_ATC_texture */
1.241 +#ifndef GL_AMD_compressed_ATC_texture
1.242 +#define GL_ATC_RGB_AMD 0x8C92
1.243 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93
1.244 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE
1.245 +#endif
1.246 +
1.247 +/* GL_EXT_texture_filter_anisotropic */
1.248 +#ifndef GL_EXT_texture_filter_anisotropic
1.249 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
1.250 +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
1.251 +#endif
1.252 +
1.253 +/*------------------------------------------------------------------------*
1.254 + * OES extension functions
1.255 + *------------------------------------------------------------------------*/
1.256 +
1.257 +/* GL_OES_blend_equation_separate */
1.258 +#ifndef GL_OES_blend_equation_separate
1.259 +#define GL_OES_blend_equation_separate 1
1.260 +#ifdef GL_GLEXT_PROTOTYPES
1.261 +GL_API void GL_APIENTRY glBlendEquationSeparateOES (GLenum modeRGB, GLenum modeAlpha);
1.262 +#endif
1.263 +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEOESPROC) (GLenum modeRGB, GLenum modeAlpha);
1.264 +#endif
1.265 +
1.266 +/* GL_OES_blend_func_separate */
1.267 +#ifndef GL_OES_blend_func_separate
1.268 +#define GL_OES_blend_func_separate 1
1.269 +#ifdef GL_GLEXT_PROTOTYPES
1.270 +GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
1.271 +#endif
1.272 +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
1.273 +#endif
1.274 +
1.275 +/* GL_OES_blend_subtract */
1.276 +#ifndef GL_OES_blend_subtract
1.277 +#define GL_OES_blend_subtract 1
1.278 +#ifdef GL_GLEXT_PROTOTYPES
1.279 +GL_API void GL_APIENTRY glBlendEquationOES (GLenum mode);
1.280 +#endif
1.281 +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONOESPROC) (GLenum mode);
1.282 +#endif
1.283 +
1.284 +/* GL_OES_byte_coordinates */
1.285 +#ifndef GL_OES_byte_coordinates
1.286 +#define GL_OES_byte_coordinates 1
1.287 +#endif
1.288 +
1.289 +/* GL_OES_compressed_ETC1_RGB8_texture */
1.290 +#ifndef GL_OES_compressed_ETC1_RGB8_texture
1.291 +#define GL_OES_compressed_ETC1_RGB8_texture 1
1.292 +#endif
1.293 +
1.294 +/* GL_OES_draw_texture */
1.295 +#ifndef GL_OES_draw_texture
1.296 +#define GL_OES_draw_texture 1
1.297 +#ifdef GL_GLEXT_PROTOTYPES
1.298 +GL_API void GL_APIENTRY glDrawTexsOES (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
1.299 +GL_API void GL_APIENTRY glDrawTexiOES (GLint x, GLint y, GLint z, GLint width, GLint height);
1.300 +GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
1.301 +GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
1.302 +GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
1.303 +GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
1.304 +GL_API void GL_APIENTRY glDrawTexfOES (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
1.305 +GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
1.306 +#endif
1.307 +typedef void (GL_APIENTRYP PFNGLDRAWTEXSOESPROC) (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
1.308 +typedef void (GL_APIENTRYP PFNGLDRAWTEXIOESPROC) (GLint x, GLint y, GLint z, GLint width, GLint height);
1.309 +typedef void (GL_APIENTRYP PFNGLDRAWTEXXOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
1.310 +typedef void (GL_APIENTRYP PFNGLDRAWTEXSVOESPROC) (const GLshort *coords);
1.311 +typedef void (GL_APIENTRYP PFNGLDRAWTEXIVOESPROC) (const GLint *coords);
1.312 +typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords);
1.313 +typedef void (GL_APIENTRYP PFNGLDRAWTEXFOESPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
1.314 +typedef void (GL_APIENTRYP PFNGLDRAWTEXFVOESPROC) (const GLfloat *coords);
1.315 +#endif
1.316 +
1.317 +/* GL_OES_extended_matrix_palette */
1.318 +#ifndef GL_OES_extended_matrix_palette
1.319 +#define GL_OES_extended_matrix_palette 1
1.320 +#endif
1.321 +
1.322 +/* GL_OES_fixed_point */
1.323 +#ifndef GL_OES_fixed_point
1.324 +#define GL_OES_fixed_point 1
1.325 +#ifdef GL_GLEXT_PROTOTYPES
1.326 +GL_API void GL_APIENTRY glAlphaFuncxOES (GLenum func, GLclampx ref);
1.327 +GL_API void GL_APIENTRY glClearColorxOES (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
1.328 +GL_API void GL_APIENTRY glClearDepthxOES (GLclampx depth);
1.329 +GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
1.330 +GL_API void GL_APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
1.331 +GL_API void GL_APIENTRY glDepthRangexOES (GLclampx zNear, GLclampx zFar);
1.332 +GL_API void GL_APIENTRY glFogxOES (GLenum pname, GLfixed param);
1.333 +GL_API void GL_APIENTRY glFogxvOES (GLenum pname, const GLfixed *params);
1.334 +GL_API void GL_APIENTRY glFrustumxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
1.335 +GL_API void GL_APIENTRY glGetClipPlanexOES (GLenum pname, GLfixed eqn[4]);
1.336 +GL_API void GL_APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params);
1.337 +GL_API void GL_APIENTRY glGetLightxvOES (GLenum light, GLenum pname, GLfixed *params);
1.338 +GL_API void GL_APIENTRY glGetMaterialxvOES (GLenum face, GLenum pname, GLfixed *params);
1.339 +GL_API void GL_APIENTRY glGetTexEnvxvOES (GLenum env, GLenum pname, GLfixed *params);
1.340 +GL_API void GL_APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params);
1.341 +GL_API void GL_APIENTRY glLightModelxOES (GLenum pname, GLfixed param);
1.342 +GL_API void GL_APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *params);
1.343 +GL_API void GL_APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param);
1.344 +GL_API void GL_APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params);
1.345 +GL_API void GL_APIENTRY glLineWidthxOES (GLfixed width);
1.346 +GL_API void GL_APIENTRY glLoadMatrixxOES (const GLfixed *m);
1.347 +GL_API void GL_APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param);
1.348 +GL_API void GL_APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *params);
1.349 +GL_API void GL_APIENTRY glMultMatrixxOES (const GLfixed *m);
1.350 +GL_API void GL_APIENTRY glMultiTexCoord4xOES (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
1.351 +GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz);
1.352 +GL_API void GL_APIENTRY glOrthoxOES (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
1.353 +GL_API void GL_APIENTRY glPointParameterxOES (GLenum pname, GLfixed param);
1.354 +GL_API void GL_APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params);
1.355 +GL_API void GL_APIENTRY glPointSizexOES (GLfixed size);
1.356 +GL_API void GL_APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units);
1.357 +GL_API void GL_APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
1.358 +GL_API void GL_APIENTRY glSampleCoveragexOES (GLclampx value, GLboolean invert);
1.359 +GL_API void GL_APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z);
1.360 +GL_API void GL_APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param);
1.361 +GL_API void GL_APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params);
1.362 +GL_API void GL_APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param);
1.363 +GL_API void GL_APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params);
1.364 +GL_API void GL_APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z);
1.365 +#endif
1.366 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLclampx ref);
1.367 +typedef void (GL_APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
1.368 +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLclampx depth);
1.369 +typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
1.370 +typedef void (GL_APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
1.371 +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLclampx zNear, GLclampx zFar);
1.372 +typedef void (GL_APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param);
1.373 +typedef void (GL_APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *params);
1.374 +typedef void (GL_APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
1.375 +typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum pname, GLfixed eqn[4]);
1.376 +typedef void (GL_APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params);
1.377 +typedef void (GL_APIENTRYP PFNGLGETLIGHTXVOESPROC) (GLenum light, GLenum pname, GLfixed *params);
1.378 +typedef void (GL_APIENTRYP PFNGLGETMATERIALXVOESPROC) (GLenum face, GLenum pname, GLfixed *params);
1.379 +typedef void (GL_APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum env, GLenum pname, GLfixed *params);
1.380 +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params);
1.381 +typedef void (GL_APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param);
1.382 +typedef void (GL_APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *params);
1.383 +typedef void (GL_APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param);
1.384 +typedef void (GL_APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params);
1.385 +typedef void (GL_APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width);
1.386 +typedef void (GL_APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m);
1.387 +typedef void (GL_APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param);
1.388 +typedef void (GL_APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *params);
1.389 +typedef void (GL_APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m);
1.390 +typedef void (GL_APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
1.391 +typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
1.392 +typedef void (GL_APIENTRYP PFNGLORTHOXOESPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
1.393 +typedef void (GL_APIENTRYP PFNGLPOINTPARAMETERXOESPROC) (GLenum pname, GLfixed param);
1.394 +typedef void (GL_APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params);
1.395 +typedef void (GL_APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size);
1.396 +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units);
1.397 +typedef void (GL_APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
1.398 +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEXOESPROC) (GLclampx value, GLboolean invert);
1.399 +typedef void (GL_APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z);
1.400 +typedef void (GL_APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param);
1.401 +typedef void (GL_APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params);
1.402 +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param);
1.403 +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params);
1.404 +typedef void (GL_APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z);
1.405 +#endif
1.406 +
1.407 +/* GL_OES_framebuffer_object */
1.408 +#ifndef GL_OES_framebuffer_object
1.409 +#define GL_OES_framebuffer_object 1
1.410 +#ifdef GL_GLEXT_PROTOTYPES
1.411 +GL_API GLboolean GL_APIENTRY glIsRenderbufferOES (GLuint renderbuffer);
1.412 +GL_API void GL_APIENTRY glBindRenderbufferOES (GLenum target, GLuint renderbuffer);
1.413 +GL_API void GL_APIENTRY glDeleteRenderbuffersOES (GLsizei n, const GLuint* renderbuffers);
1.414 +GL_API void GL_APIENTRY glGenRenderbuffersOES (GLsizei n, GLuint* renderbuffers);
1.415 +GL_API void GL_APIENTRY glRenderbufferStorageOES (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
1.416 +GL_API void GL_APIENTRY glGetRenderbufferParameterivOES (GLenum target, GLenum pname, GLint* params);
1.417 +GL_API GLboolean GL_APIENTRY glIsFramebufferOES (GLuint framebuffer);
1.418 +GL_API void GL_APIENTRY glBindFramebufferOES (GLenum target, GLuint framebuffer);
1.419 +GL_API void GL_APIENTRY glDeleteFramebuffersOES (GLsizei n, const GLuint* framebuffers);
1.420 +GL_API void GL_APIENTRY glGenFramebuffersOES (GLsizei n, GLuint* framebuffers);
1.421 +GL_API GLenum GL_APIENTRY glCheckFramebufferStatusOES (GLenum target);
1.422 +GL_API void GL_APIENTRY glFramebufferRenderbufferOES (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
1.423 +GL_API void GL_APIENTRY glFramebufferTexture2DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
1.424 +GL_API void GL_APIENTRY glGetFramebufferAttachmentParameterivOES (GLenum target, GLenum attachment, GLenum pname, GLint* params);
1.425 +GL_API void GL_APIENTRY glGenerateMipmapOES (GLenum target);
1.426 +#endif
1.427 +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFEROESPROC) (GLuint renderbuffer);
1.428 +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFEROESPROC) (GLenum target, GLuint renderbuffer);
1.429 +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSOESPROC) (GLsizei n, const GLuint* renderbuffers);
1.430 +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSOESPROC) (GLsizei n, GLuint* renderbuffers);
1.431 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
1.432 +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVOESPROC) (GLenum target, GLenum pname, GLint* params);
1.433 +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFEROESPROC) (GLuint framebuffer);
1.434 +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFEROESPROC) (GLenum target, GLuint framebuffer);
1.435 +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSOESPROC) (GLsizei n, const GLuint* framebuffers);
1.436 +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSOESPROC) (GLsizei n, GLuint* framebuffers);
1.437 +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSOESPROC) (GLenum target);
1.438 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEROESPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
1.439 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
1.440 +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVOESPROC) (GLenum target, GLenum attachment, GLenum pname, GLint* params);
1.441 +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPOESPROC) (GLenum target);
1.442 +#endif
1.443 +
1.444 +/* GL_OES_matrix_get */
1.445 +#ifndef GL_OES_matrix_get
1.446 +#define GL_OES_matrix_get 1
1.447 +#endif
1.448 +
1.449 +/* GL_OES_matrix_palette */
1.450 +#ifndef GL_OES_matrix_palette
1.451 +#define GL_OES_matrix_palette 1
1.452 +#ifdef GL_GLEXT_PROTOTYPES
1.453 +GL_API void GL_APIENTRY glCurrentPaletteMatrixOES (GLuint matrixpaletteindex);
1.454 +GL_API void GL_APIENTRY glLoadPaletteFromModelViewMatrixOES (void);
1.455 +GL_API void GL_APIENTRY glMatrixIndexPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.456 +GL_API void GL_APIENTRY glWeightPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.457 +#endif
1.458 +typedef void (GL_APIENTRYP PFNGLCURRENTPALETTEMATRIXOESPROC) (GLuint matrixpaletteindex);
1.459 +typedef void (GL_APIENTRYP PFNGLLOADPALETTEFROMMODELVIEWMATRIXOESPROC) (void);
1.460 +typedef void (GL_APIENTRYP PFNGLMATRIXINDEXPOINTEROESPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.461 +typedef void (GL_APIENTRYP PFNGLWEIGHTPOINTEROESPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.462 +#endif
1.463 +
1.464 +/* GL_OES_query_matrix */
1.465 +#ifndef GL_OES_query_matrix
1.466 +#define GL_OES_query_matrix 1
1.467 +#ifdef GL_GLEXT_PROTOTYPES
1.468 +GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
1.469 +#endif
1.470 +typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed mantissa[16], GLint exponent[16]);
1.471 +#endif
1.472 +
1.473 +/* GL_OES_single_precision */
1.474 +#ifndef GL_OES_single_precision
1.475 +#define GL_OES_single_precision 1
1.476 +#ifdef GL_GLEXT_PROTOTYPES
1.477 +GL_API void GL_APIENTRY glDepthRangefOES (GLclampf zNear, GLclampf zFar) __SOFTFP;
1.478 +GL_API void GL_APIENTRY glFrustumfOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
1.479 +GL_API void GL_APIENTRY glOrthofOES (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
1.480 +GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
1.481 +GL_API void GL_APIENTRY glGetClipPlanefOES (GLenum pname, GLfloat eqn[4]);
1.482 +GL_API void GL_APIENTRY glClearDepthfOES (GLclampf depth) __SOFTFP;
1.483 +#endif
1.484 +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf zNear, GLclampf zFar) __SOFTFP;
1.485 +typedef void (GL_APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
1.486 +typedef void (GL_APIENTRYP PFNGLORTHOFOESPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) __SOFTFP;
1.487 +typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
1.488 +typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum pname, GLfloat eqn[4]);
1.489 +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth) __SOFTFP;
1.490 +#endif
1.491 +
1.492 +/* GL_OES_stencil_wrap */
1.493 +#ifndef GL_OES_stencil_wrap
1.494 +#define GL_OES_stencil_wrap 1
1.495 +#endif
1.496 +
1.497 +/* GL_OES_texture_cube_map */
1.498 +#ifndef GL_OES_texture_cube_map
1.499 +#define GL_OES_texture_cube_map 1
1.500 +#ifdef GL_GLEXT_PROTOTYPES
1.501 +GL_API void GL_APIENTRY glTexGenfOES (GLenum coord, GLenum pname, GLfloat param) __SOFTFP;
1.502 +GL_API void GL_APIENTRY glTexGenfvOES (GLenum coord, GLenum pname, const GLfloat *params);
1.503 +GL_API void GL_APIENTRY glTexGeniOES (GLenum coord, GLenum pname, GLint param);
1.504 +GL_API void GL_APIENTRY glTexGenivOES (GLenum coord, GLenum pname, const GLint *params);
1.505 +GL_API void GL_APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param);
1.506 +GL_API void GL_APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params);
1.507 +GL_API void GL_APIENTRY glGetTexGenfvOES (GLenum coord, GLenum pname, GLfloat *params);
1.508 +GL_API void GL_APIENTRY glGetTexGenivOES (GLenum coord, GLenum pname, GLint *params);
1.509 +GL_API void GL_APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params);
1.510 +#endif
1.511 +typedef void (GL_APIENTRYP PFNGLTEXGENFOESPROC) (GLenum coord, GLenum pname, GLfloat param) __SOFTFP;
1.512 +typedef void (GL_APIENTRYP PFNGLTEXGENFVOESPROC) (GLenum coord, GLenum pname, const GLfloat *params);
1.513 +typedef void (GL_APIENTRYP PFNGLTEXGENIOESPROC) (GLenum coord, GLenum pname, GLint param);
1.514 +typedef void (GL_APIENTRYP PFNGLTEXGENIVOESPROC) (GLenum coord, GLenum pname, const GLint *params);
1.515 +typedef void (GL_APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param);
1.516 +typedef void (GL_APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params);
1.517 +typedef void (GL_APIENTRYP PFNGLGETTEXGENFVOESPROC) (GLenum coord, GLenum pname, GLfloat *params);
1.518 +typedef void (GL_APIENTRYP PFNGLGETTEXGENIVOESPROC) (GLenum coord, GLenum pname, GLint *params);
1.519 +typedef void (GL_APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params);
1.520 +#endif
1.521 +
1.522 +/* GL_OES_texture_env_crossbar */
1.523 +#ifndef GL_OES_texture_env_crossbar
1.524 +#define GL_OES_texture_env_crossbar 1
1.525 +#endif
1.526 +
1.527 +/* GL_OES_texture_mirrored_repeat */
1.528 +#ifndef GL_OES_texture_mirrored_repeat
1.529 +#define GL_OES_texture_mirrored_repeat 1
1.530 +#endif
1.531 +
1.532 +/* GL_OES_EGL_image */
1.533 +#ifndef GL_OES_EGL_image
1.534 +#define GL_OES_EGL_image 1
1.535 +#ifdef GL_GLEXT_PROTOTYPES
1.536 +GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);
1.537 +GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);
1.538 +#endif
1.539 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image);
1.540 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
1.541 +#endif
1.542 +
1.543 +/* GL_OES_depth24 */
1.544 +#ifndef GL_OES_depth24
1.545 +#define GL_OES_depth24 1
1.546 +#endif
1.547 +
1.548 +/* GL_OES_depth32 */
1.549 +#ifndef GL_OES_depth32
1.550 +#define GL_OES_depth32 1
1.551 +#endif
1.552 +
1.553 +/* GL_OES_element_index_uint */
1.554 +#ifndef GL_OES_element_index_uint
1.555 +#define GL_OES_element_index_uint 1
1.556 +#endif
1.557 +
1.558 +/* GL_OES_fbo_render_mipmap */
1.559 +#ifndef GL_OES_fbo_render_mipmap
1.560 +#define GL_OES_fbo_render_mipmap 1
1.561 +#endif
1.562 +
1.563 +/* GL_OES_mapbuffer */
1.564 +#ifndef GL_OES_mapbuffer
1.565 +#define GL_OES_mapbuffer 1
1.566 +#ifdef GL_GLEXT_PROTOTYPES
1.567 +GL_API void* GL_APIENTRY glMapBufferOES (GLenum target, GLenum access);
1.568 +GL_API GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target);
1.569 +GL_API void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void** params);
1.570 +#endif
1.571 +typedef void* (GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access);
1.572 +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target);
1.573 +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void** params);
1.574 +#endif
1.575 +
1.576 +/* GL_OES_rgb8_rgba8 */
1.577 +#ifndef GL_OES_rgb8_rgba8
1.578 +#define GL_OES_rgb8_rgba8 1
1.579 +#endif
1.580 +
1.581 +/* GL_OES_stencil1 */
1.582 +#ifndef GL_OES_stencil1
1.583 +#define GL_OES_stencil1 1
1.584 +#endif
1.585 +
1.586 +/* GL_OES_stencil4 */
1.587 +#ifndef GL_OES_stencil4
1.588 +#define GL_OES_stencil4 1
1.589 +#endif
1.590 +
1.591 +/* GL_OES_stencil8 */
1.592 +#ifndef GL_OES_stencil8
1.593 +#define GL_OES_stencil8 1
1.594 +#endif
1.595 +
1.596 +/* GL_AMD_compressed_3DC_texture */
1.597 +#ifndef GL_AMD_compressed_3DC_texture
1.598 +#define GL_AMD_compressed_3DC_texture 1
1.599 +#endif
1.600 +
1.601 +/* GL_AMD_compressed_ATC_texture */
1.602 +#ifndef GL_AMD_compressed_ATC_texture
1.603 +#define GL_AMD_compressed_ATC_texture 1
1.604 +#endif
1.605 +
1.606 +/* GL_EXT_texture_filter_anisotropic */
1.607 +#ifndef GL_EXT_texture_filter_anisotropic
1.608 +#define GL_EXT_texture_filter_anisotropic 1
1.609 +#endif
1.610 +
1.611 +#ifdef __cplusplus
1.612 +}
1.613 +#endif
1.614 +
1.615 +#endif /* __glext_h_ */
1.616 +