blob: 842db7ab7edd014af7072fbb8a8fcdd6183bdc49 [file] [log] [blame]
Dan Bornsteinc086ca12010-12-07 15:35:20 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
17// This source file is automatically generated
18
19package javax.microedition.khronos.opengles;
20
21public interface GL11Ext extends GL {
22 int GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES = 0x8B9E;
23 int GL_MATRIX_INDEX_ARRAY_OES = 0x8844;
24 int GL_MATRIX_INDEX_ARRAY_POINTER_OES = 0x8849;
25 int GL_MATRIX_INDEX_ARRAY_SIZE_OES = 0x8846;
26 int GL_MATRIX_INDEX_ARRAY_STRIDE_OES = 0x8848;
27 int GL_MATRIX_INDEX_ARRAY_TYPE_OES = 0x8847;
28 int GL_MATRIX_PALETTE_OES = 0x8840;
29 int GL_MAX_PALETTE_MATRICES_OES = 0x8842;
30 int GL_MAX_VERTEX_UNITS_OES = 0x86A4;
31 int GL_TEXTURE_CROP_RECT_OES = 0x8B9D;
32 int GL_WEIGHT_ARRAY_BUFFER_BINDING_OES = 0x889E;
33 int GL_WEIGHT_ARRAY_OES = 0x86AD;
34 int GL_WEIGHT_ARRAY_POINTER_OES = 0x86AC;
35 int GL_WEIGHT_ARRAY_SIZE_OES = 0x86AB;
36 int GL_WEIGHT_ARRAY_STRIDE_OES = 0x86AA;
37 int GL_WEIGHT_ARRAY_TYPE_OES = 0x86A9;
38
39 void glTexParameterfv(int target, int pname, float[] param, int offset);
40
41 void glCurrentPaletteMatrixOES(
42 int matrixpaletteindex
43 );
44
45 void glDrawTexfOES(
46 float x,
47 float y,
48 float z,
49 float width,
50 float height
51 );
52
53 void glDrawTexfvOES(
54 float[] coords,
55 int offset
56 );
57
58 void glDrawTexfvOES(
59 java.nio.FloatBuffer coords
60 );
61
62 void glDrawTexiOES(
63 int x,
64 int y,
65 int z,
66 int width,
67 int height
68 );
69
70 void glDrawTexivOES(
71 int[] coords,
72 int offset
73 );
74
75 void glDrawTexivOES(
76 java.nio.IntBuffer coords
77 );
78
79 void glDrawTexsOES(
80 short x,
81 short y,
82 short z,
83 short width,
84 short height
85 );
86
87 void glDrawTexsvOES(
88 short[] coords,
89 int offset
90 );
91
92 void glDrawTexsvOES(
93 java.nio.ShortBuffer coords
94 );
95
96 void glDrawTexxOES(
97 int x,
98 int y,
99 int z,
100 int width,
101 int height
102 );
103
104 void glDrawTexxvOES(
105 int[] coords,
106 int offset
107 );
108
109 void glDrawTexxvOES(
110 java.nio.IntBuffer coords
111 );
112
113 void glEnable(
114 int cap
115 );
116
117 void glEnableClientState(
118 int array
119 );
120
121 void glLoadPaletteFromModelViewMatrixOES(
122 );
123
124 void glMatrixIndexPointerOES(
125 int size,
126 int type,
127 int stride,
128 java.nio.Buffer pointer
129 );
130
131 void glMatrixIndexPointerOES(
132 int size,
133 int type,
134 int stride,
135 int offset
136 );
137
138 void glWeightPointerOES(
139 int size,
140 int type,
141 int stride,
142 java.nio.Buffer pointer
143 );
144
145 void glWeightPointerOES(
146 int size,
147 int type,
148 int stride,
149 int offset
150 );
151
152}