1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/opengles/openglesinterface/include/glextplatform.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,124 @@
1.4 +/*
1.5 +** Copyright (c) 2007-2009 The Khronos Group Inc.
1.6 +**
1.7 +** Permission is hereby granted, free of charge, to any person obtaining a
1.8 +** copy of this software and/or associated documentation files (the
1.9 +** "Materials"), to deal in the Materials without restriction, including
1.10 +** without limitation the rights to use, copy, modify, merge, publish,
1.11 +** distribute, sublicense, and/or sell copies of the Materials, and to
1.12 +** permit persons to whom the Materials are furnished to do so, subject to
1.13 +** the following conditions:
1.14 +**
1.15 +** The above copyright notice and this permission notice shall be included
1.16 +** in all copies or substantial portions of the Materials.
1.17 +**
1.18 +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1.19 +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1.20 +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1.21 +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1.22 +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1.23 +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1.24 +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
1.25 +*/
1.26 +
1.27 +#ifndef glextplatform_h
1.28 +#define glextplatform_h
1.29 +
1.30 +/**
1.31 +@publishedAll
1.32 +@released
1.33 +*/
1.34 +
1.35 +#ifdef __cplusplus
1.36 +extern "C" {
1.37 +#endif
1.38 +
1.39 +/*
1.40 +** The following defines were in gl.h in OpenGL ES 1.0. To keep backwards
1.41 +** compatibility they are defined in this file which is always included at
1.42 +** the end of gl.h. Undefine guard definitions as required to enable
1.43 +** OpenGL ES 1.1 glext.h functionality.
1.44 +**
1.45 +** We have also added __SOFTFP decorations for call-by-value float functions
1.46 +*/
1.47 +
1.48 +/* Renamed for OpenGL ES 1.1 */
1.49 +
1.50 +#define GL_WRITE_ONLY 0x88B9
1.51 +#define GL_BUFFER_ACCESS 0x88BB
1.52 +
1.53 +
1.54 +/* Removed for OpenGL ES 1.1 */
1.55 +
1.56 +/* OpenGL ES core versions */
1.57 +#define GL_OES_VERSION_1_0 1
1.58 +#define GL_OES_VERSION_1_1 1
1.59 +
1.60 +/* BeginMode */
1.61 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8
1.62 +#define GL_MAX_ELEMENTS_INDICES 0x80E9
1.63 +
1.64 +/* HintTarget */
1.65 +#define GL_POLYGON_SMOOTH_HINT 0x0C53
1.66 +
1.67 +
1.68 +/* Moved from gl.h to glext.h (optional header) for OpenGL ES 1.1 */
1.69 +
1.70 +/* GL_OES_byte_coordinates */
1.71 +#define GL_OES_byte_coordinates 1
1.72 +
1.73 +/* GL_OES_draw_texture */
1.74 +#define GL_OES_draw_texture 1
1.75 +#define GL_TEXTURE_CROP_RECT_OES 0x8B9D
1.76 +GL_API void GL_APIENTRY glDrawTexsOES (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
1.77 +GL_API void GL_APIENTRY glDrawTexiOES (GLint x, GLint y, GLint z, GLint width, GLint height);
1.78 +GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
1.79 +GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
1.80 +GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
1.81 +GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
1.82 +GL_API void GL_APIENTRY glDrawTexfOES (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
1.83 +GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
1.84 +
1.85 +/* GL_OES_fixed_point */
1.86 +#define GL_OES_fixed_point 1
1.87 +
1.88 +/* GL_OES_single_precision */
1.89 +#define GL_OES_single_precision 1
1.90 +
1.91 +/* OES_matrix_get */
1.92 +#define GL_OES_matrix_get 1
1.93 +#define GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES 0x898D
1.94 +#define GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES 0x898E
1.95 +#define GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES 0x898F
1.96 +
1.97 +/* OES_matrix_palette */
1.98 +#define GL_OES_matrix_palette 1
1.99 +#define GL_MAX_VERTEX_UNITS_OES 0x86A4
1.100 +#define GL_MAX_PALETTE_MATRICES_OES 0x8842
1.101 +#define GL_MATRIX_PALETTE_OES 0x8840
1.102 +#define GL_MATRIX_INDEX_ARRAY_OES 0x8844
1.103 +#define GL_WEIGHT_ARRAY_OES 0x86AD
1.104 +#define GL_CURRENT_PALETTE_MATRIX_OES 0x8843
1.105 +#define GL_MATRIX_INDEX_ARRAY_SIZE_OES 0x8846
1.106 +#define GL_MATRIX_INDEX_ARRAY_TYPE_OES 0x8847
1.107 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_OES 0x8848
1.108 +#define GL_MATRIX_INDEX_ARRAY_POINTER_OES 0x8849
1.109 +#define GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES 0x8B9E
1.110 +#define GL_WEIGHT_ARRAY_SIZE_OES 0x86AB
1.111 +#define GL_WEIGHT_ARRAY_TYPE_OES 0x86A9
1.112 +#define GL_WEIGHT_ARRAY_STRIDE_OES 0x86AA
1.113 +#define GL_WEIGHT_ARRAY_POINTER_OES 0x86AC
1.114 +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_OES 0x889E
1.115 +GL_API void GL_APIENTRY glCurrentPaletteMatrixOES (GLuint matrixpaletteindex);
1.116 +GL_API void GL_APIENTRY glLoadPaletteFromModelViewMatrixOES (void);
1.117 +GL_API void GL_APIENTRY glMatrixIndexPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.118 +GL_API void GL_APIENTRY glWeightPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
1.119 +
1.120 +
1.121 +GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
1.122 +
1.123 +#ifdef __cplusplus
1.124 +}
1.125 +#endif
1.126 +
1.127 +#endif /* glextplatform_h */
1.128 \ No newline at end of file