sl@0
|
1 |
/*
|
sl@0
|
2 |
** Copyright (c) 2007-2009 The Khronos Group Inc.
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** Permission is hereby granted, free of charge, to any person obtaining a
|
sl@0
|
5 |
** copy of this software and/or associated documentation files (the
|
sl@0
|
6 |
** "Materials"), to deal in the Materials without restriction, including
|
sl@0
|
7 |
** without limitation the rights to use, copy, modify, merge, publish,
|
sl@0
|
8 |
** distribute, sublicense, and/or sell copies of the Materials, and to
|
sl@0
|
9 |
** permit persons to whom the Materials are furnished to do so, subject to
|
sl@0
|
10 |
** the following conditions:
|
sl@0
|
11 |
**
|
sl@0
|
12 |
** The above copyright notice and this permission notice shall be included
|
sl@0
|
13 |
** in all copies or substantial portions of the Materials.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
sl@0
|
16 |
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
sl@0
|
17 |
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
sl@0
|
18 |
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
sl@0
|
19 |
** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
sl@0
|
20 |
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
sl@0
|
21 |
** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef glextplatform_h
|
sl@0
|
25 |
#define glextplatform_h
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@publishedAll
|
sl@0
|
29 |
@released
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifdef __cplusplus
|
sl@0
|
33 |
extern "C" {
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
/*
|
sl@0
|
37 |
** The following defines were in gl.h in OpenGL ES 1.0. To keep backwards
|
sl@0
|
38 |
** compatibility they are defined in this file which is always included at
|
sl@0
|
39 |
** the end of gl.h. Undefine guard definitions as required to enable
|
sl@0
|
40 |
** OpenGL ES 1.1 glext.h functionality.
|
sl@0
|
41 |
**
|
sl@0
|
42 |
** We have also added __SOFTFP decorations for call-by-value float functions
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
|
sl@0
|
45 |
/* Renamed for OpenGL ES 1.1 */
|
sl@0
|
46 |
|
sl@0
|
47 |
#define GL_WRITE_ONLY 0x88B9
|
sl@0
|
48 |
#define GL_BUFFER_ACCESS 0x88BB
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
/* Removed for OpenGL ES 1.1 */
|
sl@0
|
52 |
|
sl@0
|
53 |
/* OpenGL ES core versions */
|
sl@0
|
54 |
#define GL_OES_VERSION_1_0 1
|
sl@0
|
55 |
#define GL_OES_VERSION_1_1 1
|
sl@0
|
56 |
|
sl@0
|
57 |
/* BeginMode */
|
sl@0
|
58 |
#define GL_MAX_ELEMENTS_VERTICES 0x80E8
|
sl@0
|
59 |
#define GL_MAX_ELEMENTS_INDICES 0x80E9
|
sl@0
|
60 |
|
sl@0
|
61 |
/* HintTarget */
|
sl@0
|
62 |
#define GL_POLYGON_SMOOTH_HINT 0x0C53
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
/* Moved from gl.h to glext.h (optional header) for OpenGL ES 1.1 */
|
sl@0
|
66 |
|
sl@0
|
67 |
/* GL_OES_byte_coordinates */
|
sl@0
|
68 |
#define GL_OES_byte_coordinates 1
|
sl@0
|
69 |
|
sl@0
|
70 |
/* GL_OES_draw_texture */
|
sl@0
|
71 |
#define GL_OES_draw_texture 1
|
sl@0
|
72 |
#define GL_TEXTURE_CROP_RECT_OES 0x8B9D
|
sl@0
|
73 |
GL_API void GL_APIENTRY glDrawTexsOES (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
|
sl@0
|
74 |
GL_API void GL_APIENTRY glDrawTexiOES (GLint x, GLint y, GLint z, GLint width, GLint height);
|
sl@0
|
75 |
GL_API void GL_APIENTRY glDrawTexxOES (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
|
sl@0
|
76 |
GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
|
sl@0
|
77 |
GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
|
sl@0
|
78 |
GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
|
sl@0
|
79 |
GL_API void GL_APIENTRY glDrawTexfOES (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) __SOFTFP;
|
sl@0
|
80 |
GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
|
sl@0
|
81 |
|
sl@0
|
82 |
/* GL_OES_fixed_point */
|
sl@0
|
83 |
#define GL_OES_fixed_point 1
|
sl@0
|
84 |
|
sl@0
|
85 |
/* GL_OES_single_precision */
|
sl@0
|
86 |
#define GL_OES_single_precision 1
|
sl@0
|
87 |
|
sl@0
|
88 |
/* OES_matrix_get */
|
sl@0
|
89 |
#define GL_OES_matrix_get 1
|
sl@0
|
90 |
#define GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES 0x898D
|
sl@0
|
91 |
#define GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES 0x898E
|
sl@0
|
92 |
#define GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES 0x898F
|
sl@0
|
93 |
|
sl@0
|
94 |
/* OES_matrix_palette */
|
sl@0
|
95 |
#define GL_OES_matrix_palette 1
|
sl@0
|
96 |
#define GL_MAX_VERTEX_UNITS_OES 0x86A4
|
sl@0
|
97 |
#define GL_MAX_PALETTE_MATRICES_OES 0x8842
|
sl@0
|
98 |
#define GL_MATRIX_PALETTE_OES 0x8840
|
sl@0
|
99 |
#define GL_MATRIX_INDEX_ARRAY_OES 0x8844
|
sl@0
|
100 |
#define GL_WEIGHT_ARRAY_OES 0x86AD
|
sl@0
|
101 |
#define GL_CURRENT_PALETTE_MATRIX_OES 0x8843
|
sl@0
|
102 |
#define GL_MATRIX_INDEX_ARRAY_SIZE_OES 0x8846
|
sl@0
|
103 |
#define GL_MATRIX_INDEX_ARRAY_TYPE_OES 0x8847
|
sl@0
|
104 |
#define GL_MATRIX_INDEX_ARRAY_STRIDE_OES 0x8848
|
sl@0
|
105 |
#define GL_MATRIX_INDEX_ARRAY_POINTER_OES 0x8849
|
sl@0
|
106 |
#define GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES 0x8B9E
|
sl@0
|
107 |
#define GL_WEIGHT_ARRAY_SIZE_OES 0x86AB
|
sl@0
|
108 |
#define GL_WEIGHT_ARRAY_TYPE_OES 0x86A9
|
sl@0
|
109 |
#define GL_WEIGHT_ARRAY_STRIDE_OES 0x86AA
|
sl@0
|
110 |
#define GL_WEIGHT_ARRAY_POINTER_OES 0x86AC
|
sl@0
|
111 |
#define GL_WEIGHT_ARRAY_BUFFER_BINDING_OES 0x889E
|
sl@0
|
112 |
GL_API void GL_APIENTRY glCurrentPaletteMatrixOES (GLuint matrixpaletteindex);
|
sl@0
|
113 |
GL_API void GL_APIENTRY glLoadPaletteFromModelViewMatrixOES (void);
|
sl@0
|
114 |
GL_API void GL_APIENTRY glMatrixIndexPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
115 |
GL_API void GL_APIENTRY glWeightPointerOES (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
|
sl@0
|
116 |
|
sl@0
|
117 |
|
sl@0
|
118 |
GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed mantissa[16], GLint exponent[16]);
|
sl@0
|
119 |
|
sl@0
|
120 |
#ifdef __cplusplus
|
sl@0
|
121 |
}
|
sl@0
|
122 |
#endif
|
sl@0
|
123 |
|
sl@0
|
124 |
#endif /* glextplatform_h */ |