1bf215546Sopenharmony_ci
2bf215546Sopenharmony_ci# Copyright (C) 2015 Intel Corporation
3bf215546Sopenharmony_ci#
4bf215546Sopenharmony_ci# Permission is hereby granted, free of charge, to any person obtaining a
5bf215546Sopenharmony_ci# copy of this software and associated documentation files (the "Software"),
6bf215546Sopenharmony_ci# to deal in the Software without restriction, including without limitation
7bf215546Sopenharmony_ci# the rights to use, copy, modify, merge, publish, distribute, sublicense,
8bf215546Sopenharmony_ci# and/or sell copies of the Software, and to permit persons to whom the
9bf215546Sopenharmony_ci# Software is furnished to do so, subject to the following conditions:
10bf215546Sopenharmony_ci#
11bf215546Sopenharmony_ci# The above copyright notice and this permission notice (including the next
12bf215546Sopenharmony_ci# paragraph) shall be included in all copies or substantial portions of the
13bf215546Sopenharmony_ci# Software.
14bf215546Sopenharmony_ci#
15bf215546Sopenharmony_ci# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16bf215546Sopenharmony_ci# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17bf215546Sopenharmony_ci# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18bf215546Sopenharmony_ci# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19bf215546Sopenharmony_ci# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20bf215546Sopenharmony_ci# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21bf215546Sopenharmony_ci# IN THE SOFTWARE.
22bf215546Sopenharmony_ci
23bf215546Sopenharmony_ci
24bf215546Sopenharmony_ci"""The maximum entries of actual static data required by indirect GLX."""
25bf215546Sopenharmony_ci
26bf215546Sopenharmony_ci
27bf215546Sopenharmony_ciMAX_OFFSETS = 407
28bf215546Sopenharmony_ci
29bf215546Sopenharmony_ci"""Table of functions that have ABI-mandated offsets in the dispatch table.
30bf215546Sopenharmony_ci
31bf215546Sopenharmony_ciThe first MAX_OFFSETS entries are required by indirect GLX. The rest are
32bf215546Sopenharmony_cirequired to preserve the glapi <> GL/GLES ABI. This is to be addressed shortly.
33bf215546Sopenharmony_ci
34bf215546Sopenharmony_ciThis list will never change."""
35bf215546Sopenharmony_cioffsets = {
36bf215546Sopenharmony_ci    "NewList": 0,
37bf215546Sopenharmony_ci    "EndList": 1,
38bf215546Sopenharmony_ci    "CallList": 2,
39bf215546Sopenharmony_ci    "CallLists": 3,
40bf215546Sopenharmony_ci    "DeleteLists": 4,
41bf215546Sopenharmony_ci    "GenLists": 5,
42bf215546Sopenharmony_ci    "ListBase": 6,
43bf215546Sopenharmony_ci    "Begin": 7,
44bf215546Sopenharmony_ci    "Bitmap": 8,
45bf215546Sopenharmony_ci    "Color3b": 9,
46bf215546Sopenharmony_ci    "Color3bv": 10,
47bf215546Sopenharmony_ci    "Color3d": 11,
48bf215546Sopenharmony_ci    "Color3dv": 12,
49bf215546Sopenharmony_ci    "Color3f": 13,
50bf215546Sopenharmony_ci    "Color3fv": 14,
51bf215546Sopenharmony_ci    "Color3i": 15,
52bf215546Sopenharmony_ci    "Color3iv": 16,
53bf215546Sopenharmony_ci    "Color3s": 17,
54bf215546Sopenharmony_ci    "Color3sv": 18,
55bf215546Sopenharmony_ci    "Color3ub": 19,
56bf215546Sopenharmony_ci    "Color3ubv": 20,
57bf215546Sopenharmony_ci    "Color3ui": 21,
58bf215546Sopenharmony_ci    "Color3uiv": 22,
59bf215546Sopenharmony_ci    "Color3us": 23,
60bf215546Sopenharmony_ci    "Color3usv": 24,
61bf215546Sopenharmony_ci    "Color4b": 25,
62bf215546Sopenharmony_ci    "Color4bv": 26,
63bf215546Sopenharmony_ci    "Color4d": 27,
64bf215546Sopenharmony_ci    "Color4dv": 28,
65bf215546Sopenharmony_ci    "Color4f": 29,
66bf215546Sopenharmony_ci    "Color4fv": 30,
67bf215546Sopenharmony_ci    "Color4i": 31,
68bf215546Sopenharmony_ci    "Color4iv": 32,
69bf215546Sopenharmony_ci    "Color4s": 33,
70bf215546Sopenharmony_ci    "Color4sv": 34,
71bf215546Sopenharmony_ci    "Color4ub": 35,
72bf215546Sopenharmony_ci    "Color4ubv": 36,
73bf215546Sopenharmony_ci    "Color4ui": 37,
74bf215546Sopenharmony_ci    "Color4uiv": 38,
75bf215546Sopenharmony_ci    "Color4us": 39,
76bf215546Sopenharmony_ci    "Color4usv": 40,
77bf215546Sopenharmony_ci    "EdgeFlag": 41,
78bf215546Sopenharmony_ci    "EdgeFlagv": 42,
79bf215546Sopenharmony_ci    "End": 43,
80bf215546Sopenharmony_ci    "Indexd": 44,
81bf215546Sopenharmony_ci    "Indexdv": 45,
82bf215546Sopenharmony_ci    "Indexf": 46,
83bf215546Sopenharmony_ci    "Indexfv": 47,
84bf215546Sopenharmony_ci    "Indexi": 48,
85bf215546Sopenharmony_ci    "Indexiv": 49,
86bf215546Sopenharmony_ci    "Indexs": 50,
87bf215546Sopenharmony_ci    "Indexsv": 51,
88bf215546Sopenharmony_ci    "Normal3b": 52,
89bf215546Sopenharmony_ci    "Normal3bv": 53,
90bf215546Sopenharmony_ci    "Normal3d": 54,
91bf215546Sopenharmony_ci    "Normal3dv": 55,
92bf215546Sopenharmony_ci    "Normal3f": 56,
93bf215546Sopenharmony_ci    "Normal3fv": 57,
94bf215546Sopenharmony_ci    "Normal3i": 58,
95bf215546Sopenharmony_ci    "Normal3iv": 59,
96bf215546Sopenharmony_ci    "Normal3s": 60,
97bf215546Sopenharmony_ci    "Normal3sv": 61,
98bf215546Sopenharmony_ci    "RasterPos2d": 62,
99bf215546Sopenharmony_ci    "RasterPos2dv": 63,
100bf215546Sopenharmony_ci    "RasterPos2f": 64,
101bf215546Sopenharmony_ci    "RasterPos2fv": 65,
102bf215546Sopenharmony_ci    "RasterPos2i": 66,
103bf215546Sopenharmony_ci    "RasterPos2iv": 67,
104bf215546Sopenharmony_ci    "RasterPos2s": 68,
105bf215546Sopenharmony_ci    "RasterPos2sv": 69,
106bf215546Sopenharmony_ci    "RasterPos3d": 70,
107bf215546Sopenharmony_ci    "RasterPos3dv": 71,
108bf215546Sopenharmony_ci    "RasterPos3f": 72,
109bf215546Sopenharmony_ci    "RasterPos3fv": 73,
110bf215546Sopenharmony_ci    "RasterPos3i": 74,
111bf215546Sopenharmony_ci    "RasterPos3iv": 75,
112bf215546Sopenharmony_ci    "RasterPos3s": 76,
113bf215546Sopenharmony_ci    "RasterPos3sv": 77,
114bf215546Sopenharmony_ci    "RasterPos4d": 78,
115bf215546Sopenharmony_ci    "RasterPos4dv": 79,
116bf215546Sopenharmony_ci    "RasterPos4f": 80,
117bf215546Sopenharmony_ci    "RasterPos4fv": 81,
118bf215546Sopenharmony_ci    "RasterPos4i": 82,
119bf215546Sopenharmony_ci    "RasterPos4iv": 83,
120bf215546Sopenharmony_ci    "RasterPos4s": 84,
121bf215546Sopenharmony_ci    "RasterPos4sv": 85,
122bf215546Sopenharmony_ci    "Rectd": 86,
123bf215546Sopenharmony_ci    "Rectdv": 87,
124bf215546Sopenharmony_ci    "Rectf": 88,
125bf215546Sopenharmony_ci    "Rectfv": 89,
126bf215546Sopenharmony_ci    "Recti": 90,
127bf215546Sopenharmony_ci    "Rectiv": 91,
128bf215546Sopenharmony_ci    "Rects": 92,
129bf215546Sopenharmony_ci    "Rectsv": 93,
130bf215546Sopenharmony_ci    "TexCoord1d": 94,
131bf215546Sopenharmony_ci    "TexCoord1dv": 95,
132bf215546Sopenharmony_ci    "TexCoord1f": 96,
133bf215546Sopenharmony_ci    "TexCoord1fv": 97,
134bf215546Sopenharmony_ci    "TexCoord1i": 98,
135bf215546Sopenharmony_ci    "TexCoord1iv": 99,
136bf215546Sopenharmony_ci    "TexCoord1s": 100,
137bf215546Sopenharmony_ci    "TexCoord1sv": 101,
138bf215546Sopenharmony_ci    "TexCoord2d": 102,
139bf215546Sopenharmony_ci    "TexCoord2dv": 103,
140bf215546Sopenharmony_ci    "TexCoord2f": 104,
141bf215546Sopenharmony_ci    "TexCoord2fv": 105,
142bf215546Sopenharmony_ci    "TexCoord2i": 106,
143bf215546Sopenharmony_ci    "TexCoord2iv": 107,
144bf215546Sopenharmony_ci    "TexCoord2s": 108,
145bf215546Sopenharmony_ci    "TexCoord2sv": 109,
146bf215546Sopenharmony_ci    "TexCoord3d": 110,
147bf215546Sopenharmony_ci    "TexCoord3dv": 111,
148bf215546Sopenharmony_ci    "TexCoord3f": 112,
149bf215546Sopenharmony_ci    "TexCoord3fv": 113,
150bf215546Sopenharmony_ci    "TexCoord3i": 114,
151bf215546Sopenharmony_ci    "TexCoord3iv": 115,
152bf215546Sopenharmony_ci    "TexCoord3s": 116,
153bf215546Sopenharmony_ci    "TexCoord3sv": 117,
154bf215546Sopenharmony_ci    "TexCoord4d": 118,
155bf215546Sopenharmony_ci    "TexCoord4dv": 119,
156bf215546Sopenharmony_ci    "TexCoord4f": 120,
157bf215546Sopenharmony_ci    "TexCoord4fv": 121,
158bf215546Sopenharmony_ci    "TexCoord4i": 122,
159bf215546Sopenharmony_ci    "TexCoord4iv": 123,
160bf215546Sopenharmony_ci    "TexCoord4s": 124,
161bf215546Sopenharmony_ci    "TexCoord4sv": 125,
162bf215546Sopenharmony_ci    "Vertex2d": 126,
163bf215546Sopenharmony_ci    "Vertex2dv": 127,
164bf215546Sopenharmony_ci    "Vertex2f": 128,
165bf215546Sopenharmony_ci    "Vertex2fv": 129,
166bf215546Sopenharmony_ci    "Vertex2i": 130,
167bf215546Sopenharmony_ci    "Vertex2iv": 131,
168bf215546Sopenharmony_ci    "Vertex2s": 132,
169bf215546Sopenharmony_ci    "Vertex2sv": 133,
170bf215546Sopenharmony_ci    "Vertex3d": 134,
171bf215546Sopenharmony_ci    "Vertex3dv": 135,
172bf215546Sopenharmony_ci    "Vertex3f": 136,
173bf215546Sopenharmony_ci    "Vertex3fv": 137,
174bf215546Sopenharmony_ci    "Vertex3i": 138,
175bf215546Sopenharmony_ci    "Vertex3iv": 139,
176bf215546Sopenharmony_ci    "Vertex3s": 140,
177bf215546Sopenharmony_ci    "Vertex3sv": 141,
178bf215546Sopenharmony_ci    "Vertex4d": 142,
179bf215546Sopenharmony_ci    "Vertex4dv": 143,
180bf215546Sopenharmony_ci    "Vertex4f": 144,
181bf215546Sopenharmony_ci    "Vertex4fv": 145,
182bf215546Sopenharmony_ci    "Vertex4i": 146,
183bf215546Sopenharmony_ci    "Vertex4iv": 147,
184bf215546Sopenharmony_ci    "Vertex4s": 148,
185bf215546Sopenharmony_ci    "Vertex4sv": 149,
186bf215546Sopenharmony_ci    "ClipPlane": 150,
187bf215546Sopenharmony_ci    "ColorMaterial": 151,
188bf215546Sopenharmony_ci    "CullFace": 152,
189bf215546Sopenharmony_ci    "Fogf": 153,
190bf215546Sopenharmony_ci    "Fogfv": 154,
191bf215546Sopenharmony_ci    "Fogi": 155,
192bf215546Sopenharmony_ci    "Fogiv": 156,
193bf215546Sopenharmony_ci    "FrontFace": 157,
194bf215546Sopenharmony_ci    "Hint": 158,
195bf215546Sopenharmony_ci    "Lightf": 159,
196bf215546Sopenharmony_ci    "Lightfv": 160,
197bf215546Sopenharmony_ci    "Lighti": 161,
198bf215546Sopenharmony_ci    "Lightiv": 162,
199bf215546Sopenharmony_ci    "LightModelf": 163,
200bf215546Sopenharmony_ci    "LightModelfv": 164,
201bf215546Sopenharmony_ci    "LightModeli": 165,
202bf215546Sopenharmony_ci    "LightModeliv": 166,
203bf215546Sopenharmony_ci    "LineStipple": 167,
204bf215546Sopenharmony_ci    "LineWidth": 168,
205bf215546Sopenharmony_ci    "Materialf": 169,
206bf215546Sopenharmony_ci    "Materialfv": 170,
207bf215546Sopenharmony_ci    "Materiali": 171,
208bf215546Sopenharmony_ci    "Materialiv": 172,
209bf215546Sopenharmony_ci    "PointSize": 173,
210bf215546Sopenharmony_ci    "PolygonMode": 174,
211bf215546Sopenharmony_ci    "PolygonStipple": 175,
212bf215546Sopenharmony_ci    "Scissor": 176,
213bf215546Sopenharmony_ci    "ShadeModel": 177,
214bf215546Sopenharmony_ci    "TexParameterf": 178,
215bf215546Sopenharmony_ci    "TexParameterfv": 179,
216bf215546Sopenharmony_ci    "TexParameteri": 180,
217bf215546Sopenharmony_ci    "TexParameteriv": 181,
218bf215546Sopenharmony_ci    "TexImage1D": 182,
219bf215546Sopenharmony_ci    "TexImage2D": 183,
220bf215546Sopenharmony_ci    "TexEnvf": 184,
221bf215546Sopenharmony_ci    "TexEnvfv": 185,
222bf215546Sopenharmony_ci    "TexEnvi": 186,
223bf215546Sopenharmony_ci    "TexEnviv": 187,
224bf215546Sopenharmony_ci    "TexGend": 188,
225bf215546Sopenharmony_ci    "TexGendv": 189,
226bf215546Sopenharmony_ci    "TexGenf": 190,
227bf215546Sopenharmony_ci    "TexGenfv": 191,
228bf215546Sopenharmony_ci    "TexGeni": 192,
229bf215546Sopenharmony_ci    "TexGeniv": 193,
230bf215546Sopenharmony_ci    "FeedbackBuffer": 194,
231bf215546Sopenharmony_ci    "SelectBuffer": 195,
232bf215546Sopenharmony_ci    "RenderMode": 196,
233bf215546Sopenharmony_ci    "InitNames": 197,
234bf215546Sopenharmony_ci    "LoadName": 198,
235bf215546Sopenharmony_ci    "PassThrough": 199,
236bf215546Sopenharmony_ci    "PopName": 200,
237bf215546Sopenharmony_ci    "PushName": 201,
238bf215546Sopenharmony_ci    "DrawBuffer": 202,
239bf215546Sopenharmony_ci    "Clear": 203,
240bf215546Sopenharmony_ci    "ClearAccum": 204,
241bf215546Sopenharmony_ci    "ClearIndex": 205,
242bf215546Sopenharmony_ci    "ClearColor": 206,
243bf215546Sopenharmony_ci    "ClearStencil": 207,
244bf215546Sopenharmony_ci    "ClearDepth": 208,
245bf215546Sopenharmony_ci    "StencilMask": 209,
246bf215546Sopenharmony_ci    "ColorMask": 210,
247bf215546Sopenharmony_ci    "DepthMask": 211,
248bf215546Sopenharmony_ci    "IndexMask": 212,
249bf215546Sopenharmony_ci    "Accum": 213,
250bf215546Sopenharmony_ci    "Disable": 214,
251bf215546Sopenharmony_ci    "Enable": 215,
252bf215546Sopenharmony_ci    "Finish": 216,
253bf215546Sopenharmony_ci    "Flush": 217,
254bf215546Sopenharmony_ci    "PopAttrib": 218,
255bf215546Sopenharmony_ci    "PushAttrib": 219,
256bf215546Sopenharmony_ci    "Map1d": 220,
257bf215546Sopenharmony_ci    "Map1f": 221,
258bf215546Sopenharmony_ci    "Map2d": 222,
259bf215546Sopenharmony_ci    "Map2f": 223,
260bf215546Sopenharmony_ci    "MapGrid1d": 224,
261bf215546Sopenharmony_ci    "MapGrid1f": 225,
262bf215546Sopenharmony_ci    "MapGrid2d": 226,
263bf215546Sopenharmony_ci    "MapGrid2f": 227,
264bf215546Sopenharmony_ci    "EvalCoord1d": 228,
265bf215546Sopenharmony_ci    "EvalCoord1dv": 229,
266bf215546Sopenharmony_ci    "EvalCoord1f": 230,
267bf215546Sopenharmony_ci    "EvalCoord1fv": 231,
268bf215546Sopenharmony_ci    "EvalCoord2d": 232,
269bf215546Sopenharmony_ci    "EvalCoord2dv": 233,
270bf215546Sopenharmony_ci    "EvalCoord2f": 234,
271bf215546Sopenharmony_ci    "EvalCoord2fv": 235,
272bf215546Sopenharmony_ci    "EvalMesh1": 236,
273bf215546Sopenharmony_ci    "EvalPoint1": 237,
274bf215546Sopenharmony_ci    "EvalMesh2": 238,
275bf215546Sopenharmony_ci    "EvalPoint2": 239,
276bf215546Sopenharmony_ci    "AlphaFunc": 240,
277bf215546Sopenharmony_ci    "BlendFunc": 241,
278bf215546Sopenharmony_ci    "LogicOp": 242,
279bf215546Sopenharmony_ci    "StencilFunc": 243,
280bf215546Sopenharmony_ci    "StencilOp": 244,
281bf215546Sopenharmony_ci    "DepthFunc": 245,
282bf215546Sopenharmony_ci    "PixelZoom": 246,
283bf215546Sopenharmony_ci    "PixelTransferf": 247,
284bf215546Sopenharmony_ci    "PixelTransferi": 248,
285bf215546Sopenharmony_ci    "PixelStoref": 249,
286bf215546Sopenharmony_ci    "PixelStorei": 250,
287bf215546Sopenharmony_ci    "PixelMapfv": 251,
288bf215546Sopenharmony_ci    "PixelMapuiv": 252,
289bf215546Sopenharmony_ci    "PixelMapusv": 253,
290bf215546Sopenharmony_ci    "ReadBuffer": 254,
291bf215546Sopenharmony_ci    "CopyPixels": 255,
292bf215546Sopenharmony_ci    "ReadPixels": 256,
293bf215546Sopenharmony_ci    "DrawPixels": 257,
294bf215546Sopenharmony_ci    "GetBooleanv": 258,
295bf215546Sopenharmony_ci    "GetClipPlane": 259,
296bf215546Sopenharmony_ci    "GetDoublev": 260,
297bf215546Sopenharmony_ci    "GetError": 261,
298bf215546Sopenharmony_ci    "GetFloatv": 262,
299bf215546Sopenharmony_ci    "GetIntegerv": 263,
300bf215546Sopenharmony_ci    "GetLightfv": 264,
301bf215546Sopenharmony_ci    "GetLightiv": 265,
302bf215546Sopenharmony_ci    "GetMapdv": 266,
303bf215546Sopenharmony_ci    "GetMapfv": 267,
304bf215546Sopenharmony_ci    "GetMapiv": 268,
305bf215546Sopenharmony_ci    "GetMaterialfv": 269,
306bf215546Sopenharmony_ci    "GetMaterialiv": 270,
307bf215546Sopenharmony_ci    "GetPixelMapfv": 271,
308bf215546Sopenharmony_ci    "GetPixelMapuiv": 272,
309bf215546Sopenharmony_ci    "GetPixelMapusv": 273,
310bf215546Sopenharmony_ci    "GetPolygonStipple": 274,
311bf215546Sopenharmony_ci    "GetString": 275,
312bf215546Sopenharmony_ci    "GetTexEnvfv": 276,
313bf215546Sopenharmony_ci    "GetTexEnviv": 277,
314bf215546Sopenharmony_ci    "GetTexGendv": 278,
315bf215546Sopenharmony_ci    "GetTexGenfv": 279,
316bf215546Sopenharmony_ci    "GetTexGeniv": 280,
317bf215546Sopenharmony_ci    "GetTexImage": 281,
318bf215546Sopenharmony_ci    "GetTexParameterfv": 282,
319bf215546Sopenharmony_ci    "GetTexParameteriv": 283,
320bf215546Sopenharmony_ci    "GetTexLevelParameterfv": 284,
321bf215546Sopenharmony_ci    "GetTexLevelParameteriv": 285,
322bf215546Sopenharmony_ci    "IsEnabled": 286,
323bf215546Sopenharmony_ci    "IsList": 287,
324bf215546Sopenharmony_ci    "DepthRange": 288,
325bf215546Sopenharmony_ci    "Frustum": 289,
326bf215546Sopenharmony_ci    "LoadIdentity": 290,
327bf215546Sopenharmony_ci    "LoadMatrixf": 291,
328bf215546Sopenharmony_ci    "LoadMatrixd": 292,
329bf215546Sopenharmony_ci    "MatrixMode": 293,
330bf215546Sopenharmony_ci    "MultMatrixf": 294,
331bf215546Sopenharmony_ci    "MultMatrixd": 295,
332bf215546Sopenharmony_ci    "Ortho": 296,
333bf215546Sopenharmony_ci    "PopMatrix": 297,
334bf215546Sopenharmony_ci    "PushMatrix": 298,
335bf215546Sopenharmony_ci    "Rotated": 299,
336bf215546Sopenharmony_ci    "Rotatef": 300,
337bf215546Sopenharmony_ci    "Scaled": 301,
338bf215546Sopenharmony_ci    "Scalef": 302,
339bf215546Sopenharmony_ci    "Translated": 303,
340bf215546Sopenharmony_ci    "Translatef": 304,
341bf215546Sopenharmony_ci    "Viewport": 305,
342bf215546Sopenharmony_ci    "ArrayElement": 306,
343bf215546Sopenharmony_ci    "BindTexture": 307,
344bf215546Sopenharmony_ci    "ColorPointer": 308,
345bf215546Sopenharmony_ci    "DisableClientState": 309,
346bf215546Sopenharmony_ci    "DrawArrays": 310,
347bf215546Sopenharmony_ci    "DrawElements": 311,
348bf215546Sopenharmony_ci    "EdgeFlagPointer": 312,
349bf215546Sopenharmony_ci    "EnableClientState": 313,
350bf215546Sopenharmony_ci    "IndexPointer": 314,
351bf215546Sopenharmony_ci    "Indexub": 315,
352bf215546Sopenharmony_ci    "Indexubv": 316,
353bf215546Sopenharmony_ci    "InterleavedArrays": 317,
354bf215546Sopenharmony_ci    "NormalPointer": 318,
355bf215546Sopenharmony_ci    "PolygonOffset": 319,
356bf215546Sopenharmony_ci    "TexCoordPointer": 320,
357bf215546Sopenharmony_ci    "VertexPointer": 321,
358bf215546Sopenharmony_ci    "AreTexturesResident": 322,
359bf215546Sopenharmony_ci    "CopyTexImage1D": 323,
360bf215546Sopenharmony_ci    "CopyTexImage2D": 324,
361bf215546Sopenharmony_ci    "CopyTexSubImage1D": 325,
362bf215546Sopenharmony_ci    "CopyTexSubImage2D": 326,
363bf215546Sopenharmony_ci    "DeleteTextures": 327,
364bf215546Sopenharmony_ci    "GenTextures": 328,
365bf215546Sopenharmony_ci    "GetPointerv": 329,
366bf215546Sopenharmony_ci    "IsTexture": 330,
367bf215546Sopenharmony_ci    "PrioritizeTextures": 331,
368bf215546Sopenharmony_ci    "TexSubImage1D": 332,
369bf215546Sopenharmony_ci    "TexSubImage2D": 333,
370bf215546Sopenharmony_ci    "PopClientAttrib": 334,
371bf215546Sopenharmony_ci    "PushClientAttrib": 335,
372bf215546Sopenharmony_ci    "BlendColor": 336,
373bf215546Sopenharmony_ci    "BlendEquation": 337,
374bf215546Sopenharmony_ci    "DrawRangeElements": 338,
375bf215546Sopenharmony_ci    "ColorTable": 339,
376bf215546Sopenharmony_ci    "ColorTableParameterfv": 340,
377bf215546Sopenharmony_ci    "ColorTableParameteriv": 341,
378bf215546Sopenharmony_ci    "CopyColorTable": 342,
379bf215546Sopenharmony_ci    "GetColorTable": 343,
380bf215546Sopenharmony_ci    "GetColorTableParameterfv": 344,
381bf215546Sopenharmony_ci    "GetColorTableParameteriv": 345,
382bf215546Sopenharmony_ci    "ColorSubTable": 346,
383bf215546Sopenharmony_ci    "CopyColorSubTable": 347,
384bf215546Sopenharmony_ci    "ConvolutionFilter1D": 348,
385bf215546Sopenharmony_ci    "ConvolutionFilter2D": 349,
386bf215546Sopenharmony_ci    "ConvolutionParameterf": 350,
387bf215546Sopenharmony_ci    "ConvolutionParameterfv": 351,
388bf215546Sopenharmony_ci    "ConvolutionParameteri": 352,
389bf215546Sopenharmony_ci    "ConvolutionParameteriv": 353,
390bf215546Sopenharmony_ci    "CopyConvolutionFilter1D": 354,
391bf215546Sopenharmony_ci    "CopyConvolutionFilter2D": 355,
392bf215546Sopenharmony_ci    "GetConvolutionFilter": 356,
393bf215546Sopenharmony_ci    "GetConvolutionParameterfv": 357,
394bf215546Sopenharmony_ci    "GetConvolutionParameteriv": 358,
395bf215546Sopenharmony_ci    "GetSeparableFilter": 359,
396bf215546Sopenharmony_ci    "SeparableFilter2D": 360,
397bf215546Sopenharmony_ci    "GetHistogram": 361,
398bf215546Sopenharmony_ci    "GetHistogramParameterfv": 362,
399bf215546Sopenharmony_ci    "GetHistogramParameteriv": 363,
400bf215546Sopenharmony_ci    "GetMinmax": 364,
401bf215546Sopenharmony_ci    "GetMinmaxParameterfv": 365,
402bf215546Sopenharmony_ci    "GetMinmaxParameteriv": 366,
403bf215546Sopenharmony_ci    "Histogram": 367,
404bf215546Sopenharmony_ci    "Minmax": 368,
405bf215546Sopenharmony_ci    "ResetHistogram": 369,
406bf215546Sopenharmony_ci    "ResetMinmax": 370,
407bf215546Sopenharmony_ci    "TexImage3D": 371,
408bf215546Sopenharmony_ci    "TexSubImage3D": 372,
409bf215546Sopenharmony_ci    "CopyTexSubImage3D": 373,
410bf215546Sopenharmony_ci    "ActiveTexture": 374,
411bf215546Sopenharmony_ci    "ClientActiveTexture": 375,
412bf215546Sopenharmony_ci    "MultiTexCoord1d": 376,
413bf215546Sopenharmony_ci    "MultiTexCoord1dv": 377,
414bf215546Sopenharmony_ci    "MultiTexCoord1fARB": 378,
415bf215546Sopenharmony_ci    "MultiTexCoord1fvARB": 379,
416bf215546Sopenharmony_ci    "MultiTexCoord1i": 380,
417bf215546Sopenharmony_ci    "MultiTexCoord1iv": 381,
418bf215546Sopenharmony_ci    "MultiTexCoord1s": 382,
419bf215546Sopenharmony_ci    "MultiTexCoord1sv": 383,
420bf215546Sopenharmony_ci    "MultiTexCoord2d": 384,
421bf215546Sopenharmony_ci    "MultiTexCoord2dv": 385,
422bf215546Sopenharmony_ci    "MultiTexCoord2fARB": 386,
423bf215546Sopenharmony_ci    "MultiTexCoord2fvARB": 387,
424bf215546Sopenharmony_ci    "MultiTexCoord2i": 388,
425bf215546Sopenharmony_ci    "MultiTexCoord2iv": 389,
426bf215546Sopenharmony_ci    "MultiTexCoord2s": 390,
427bf215546Sopenharmony_ci    "MultiTexCoord2sv": 391,
428bf215546Sopenharmony_ci    "MultiTexCoord3d": 392,
429bf215546Sopenharmony_ci    "MultiTexCoord3dv": 393,
430bf215546Sopenharmony_ci    "MultiTexCoord3fARB": 394,
431bf215546Sopenharmony_ci    "MultiTexCoord3fvARB": 395,
432bf215546Sopenharmony_ci    "MultiTexCoord3i": 396,
433bf215546Sopenharmony_ci    "MultiTexCoord3iv": 397,
434bf215546Sopenharmony_ci    "MultiTexCoord3s": 398,
435bf215546Sopenharmony_ci    "MultiTexCoord3sv": 399,
436bf215546Sopenharmony_ci    "MultiTexCoord4d": 400,
437bf215546Sopenharmony_ci    "MultiTexCoord4dv": 401,
438bf215546Sopenharmony_ci    "MultiTexCoord4fARB": 402,
439bf215546Sopenharmony_ci    "MultiTexCoord4fvARB": 403,
440bf215546Sopenharmony_ci    "MultiTexCoord4i": 404,
441bf215546Sopenharmony_ci    "MultiTexCoord4iv": 405,
442bf215546Sopenharmony_ci    "MultiTexCoord4s": 406,
443bf215546Sopenharmony_ci    "MultiTexCoord4sv": 407,
444bf215546Sopenharmony_ci    "CompressedTexImage1D": 408,
445bf215546Sopenharmony_ci    "CompressedTexImage2D": 409,
446bf215546Sopenharmony_ci    "CompressedTexImage3D": 410,
447bf215546Sopenharmony_ci    "CompressedTexSubImage1D": 411,
448bf215546Sopenharmony_ci    "CompressedTexSubImage2D": 412,
449bf215546Sopenharmony_ci    "CompressedTexSubImage3D": 413,
450bf215546Sopenharmony_ci    "GetCompressedTexImage": 414,
451bf215546Sopenharmony_ci    "LoadTransposeMatrixd": 415,
452bf215546Sopenharmony_ci    "LoadTransposeMatrixf": 416,
453bf215546Sopenharmony_ci    "MultTransposeMatrixd": 417,
454bf215546Sopenharmony_ci    "MultTransposeMatrixf": 418,
455bf215546Sopenharmony_ci    "SampleCoverage": 419,
456bf215546Sopenharmony_ci    "BlendFuncSeparate": 420,
457bf215546Sopenharmony_ci    "FogCoordPointer": 421,
458bf215546Sopenharmony_ci    "FogCoordd": 422,
459bf215546Sopenharmony_ci    "FogCoorddv": 423,
460bf215546Sopenharmony_ci    "MultiDrawArrays": 424,
461bf215546Sopenharmony_ci    "PointParameterf": 425,
462bf215546Sopenharmony_ci    "PointParameterfv": 426,
463bf215546Sopenharmony_ci    "PointParameteri": 427,
464bf215546Sopenharmony_ci    "PointParameteriv": 428,
465bf215546Sopenharmony_ci    "SecondaryColor3b": 429,
466bf215546Sopenharmony_ci    "SecondaryColor3bv": 430,
467bf215546Sopenharmony_ci    "SecondaryColor3d": 431,
468bf215546Sopenharmony_ci    "SecondaryColor3dv": 432,
469bf215546Sopenharmony_ci    "SecondaryColor3i": 433,
470bf215546Sopenharmony_ci    "SecondaryColor3iv": 434,
471bf215546Sopenharmony_ci    "SecondaryColor3s": 435,
472bf215546Sopenharmony_ci    "SecondaryColor3sv": 436,
473bf215546Sopenharmony_ci    "SecondaryColor3ub": 437,
474bf215546Sopenharmony_ci    "SecondaryColor3ubv": 438,
475bf215546Sopenharmony_ci    "SecondaryColor3ui": 439,
476bf215546Sopenharmony_ci    "SecondaryColor3uiv": 440,
477bf215546Sopenharmony_ci    "SecondaryColor3us": 441,
478bf215546Sopenharmony_ci    "SecondaryColor3usv": 442,
479bf215546Sopenharmony_ci    "SecondaryColorPointer": 443,
480bf215546Sopenharmony_ci    "WindowPos2d": 444,
481bf215546Sopenharmony_ci    "WindowPos2dv": 445,
482bf215546Sopenharmony_ci    "WindowPos2f": 446,
483bf215546Sopenharmony_ci    "WindowPos2fv": 447,
484bf215546Sopenharmony_ci    "WindowPos2i": 448,
485bf215546Sopenharmony_ci    "WindowPos2iv": 449,
486bf215546Sopenharmony_ci    "WindowPos2s": 450,
487bf215546Sopenharmony_ci    "WindowPos2sv": 451,
488bf215546Sopenharmony_ci    "WindowPos3d": 452,
489bf215546Sopenharmony_ci    "WindowPos3dv": 453,
490bf215546Sopenharmony_ci    "WindowPos3f": 454,
491bf215546Sopenharmony_ci    "WindowPos3fv": 455,
492bf215546Sopenharmony_ci    "WindowPos3i": 456,
493bf215546Sopenharmony_ci    "WindowPos3iv": 457,
494bf215546Sopenharmony_ci    "WindowPos3s": 458,
495bf215546Sopenharmony_ci    "WindowPos3sv": 459,
496bf215546Sopenharmony_ci    "BeginQuery": 460,
497bf215546Sopenharmony_ci    "BindBuffer": 461,
498bf215546Sopenharmony_ci    "BufferData": 462,
499bf215546Sopenharmony_ci    "BufferSubData": 463,
500bf215546Sopenharmony_ci    "DeleteBuffers": 464,
501bf215546Sopenharmony_ci    "DeleteQueries": 465,
502bf215546Sopenharmony_ci    "EndQuery": 466,
503bf215546Sopenharmony_ci    "GenBuffers": 467,
504bf215546Sopenharmony_ci    "GenQueries": 468,
505bf215546Sopenharmony_ci    "GetBufferParameteriv": 469,
506bf215546Sopenharmony_ci    "GetBufferPointerv": 470,
507bf215546Sopenharmony_ci    "GetBufferSubData": 471,
508bf215546Sopenharmony_ci    "GetQueryObjectiv": 472,
509bf215546Sopenharmony_ci    "GetQueryObjectuiv": 473,
510bf215546Sopenharmony_ci    "GetQueryiv": 474,
511bf215546Sopenharmony_ci    "IsBuffer": 475,
512bf215546Sopenharmony_ci    "IsQuery": 476,
513bf215546Sopenharmony_ci    "MapBuffer": 477,
514bf215546Sopenharmony_ci    "UnmapBuffer": 478,
515bf215546Sopenharmony_ci    "AttachShader": 479,
516bf215546Sopenharmony_ci    "BindAttribLocation": 480,
517bf215546Sopenharmony_ci    "BlendEquationSeparate": 481,
518bf215546Sopenharmony_ci    "CompileShader": 482,
519bf215546Sopenharmony_ci    "CreateProgram": 483,
520bf215546Sopenharmony_ci    "CreateShader": 484,
521bf215546Sopenharmony_ci    "DeleteProgram": 485,
522bf215546Sopenharmony_ci    "DeleteShader": 486,
523bf215546Sopenharmony_ci    "DetachShader": 487,
524bf215546Sopenharmony_ci    "DisableVertexAttribArray": 488,
525bf215546Sopenharmony_ci    "DrawBuffers": 489,
526bf215546Sopenharmony_ci    "EnableVertexAttribArray": 490,
527bf215546Sopenharmony_ci    "GetActiveAttrib": 491,
528bf215546Sopenharmony_ci    "GetActiveUniform": 492,
529bf215546Sopenharmony_ci    "GetAttachedShaders": 493,
530bf215546Sopenharmony_ci    "GetAttribLocation": 494,
531bf215546Sopenharmony_ci    "GetProgramInfoLog": 495,
532bf215546Sopenharmony_ci    "GetProgramiv": 496,
533bf215546Sopenharmony_ci    "GetShaderInfoLog": 497,
534bf215546Sopenharmony_ci    "GetShaderSource": 498,
535bf215546Sopenharmony_ci    "GetShaderiv": 499,
536bf215546Sopenharmony_ci    "GetUniformLocation": 500,
537bf215546Sopenharmony_ci    "GetUniformfv": 501,
538bf215546Sopenharmony_ci    "GetUniformiv": 502,
539bf215546Sopenharmony_ci    "GetVertexAttribPointerv": 503,
540bf215546Sopenharmony_ci    "GetVertexAttribdv": 504,
541bf215546Sopenharmony_ci    "GetVertexAttribfv": 505,
542bf215546Sopenharmony_ci    "GetVertexAttribiv": 506,
543bf215546Sopenharmony_ci    "IsProgram": 507,
544bf215546Sopenharmony_ci    "IsShader": 508,
545bf215546Sopenharmony_ci    "LinkProgram": 509,
546bf215546Sopenharmony_ci    "ShaderSource": 510,
547bf215546Sopenharmony_ci    "StencilFuncSeparate": 511,
548bf215546Sopenharmony_ci    "StencilMaskSeparate": 512,
549bf215546Sopenharmony_ci    "StencilOpSeparate": 513,
550bf215546Sopenharmony_ci    "Uniform1f": 514,
551bf215546Sopenharmony_ci    "Uniform1fv": 515,
552bf215546Sopenharmony_ci    "Uniform1i": 516,
553bf215546Sopenharmony_ci    "Uniform1iv": 517,
554bf215546Sopenharmony_ci    "Uniform2f": 518,
555bf215546Sopenharmony_ci    "Uniform2fv": 519,
556bf215546Sopenharmony_ci    "Uniform2i": 520,
557bf215546Sopenharmony_ci    "Uniform2iv": 521,
558bf215546Sopenharmony_ci    "Uniform3f": 522,
559bf215546Sopenharmony_ci    "Uniform3fv": 523,
560bf215546Sopenharmony_ci    "Uniform3i": 524,
561bf215546Sopenharmony_ci    "Uniform3iv": 525,
562bf215546Sopenharmony_ci    "Uniform4f": 526,
563bf215546Sopenharmony_ci    "Uniform4fv": 527,
564bf215546Sopenharmony_ci    "Uniform4i": 528,
565bf215546Sopenharmony_ci    "Uniform4iv": 529,
566bf215546Sopenharmony_ci    "UniformMatrix2fv": 530,
567bf215546Sopenharmony_ci    "UniformMatrix3fv": 531,
568bf215546Sopenharmony_ci    "UniformMatrix4fv": 532,
569bf215546Sopenharmony_ci    "UseProgram": 533,
570bf215546Sopenharmony_ci    "ValidateProgram": 534,
571bf215546Sopenharmony_ci    "VertexAttrib1d": 535,
572bf215546Sopenharmony_ci    "VertexAttrib1dv": 536,
573bf215546Sopenharmony_ci    "VertexAttrib1s": 537,
574bf215546Sopenharmony_ci    "VertexAttrib1sv": 538,
575bf215546Sopenharmony_ci    "VertexAttrib2d": 539,
576bf215546Sopenharmony_ci    "VertexAttrib2dv": 540,
577bf215546Sopenharmony_ci    "VertexAttrib2s": 541,
578bf215546Sopenharmony_ci    "VertexAttrib2sv": 542,
579bf215546Sopenharmony_ci    "VertexAttrib3d": 543,
580bf215546Sopenharmony_ci    "VertexAttrib3dv": 544,
581bf215546Sopenharmony_ci    "VertexAttrib3s": 545,
582bf215546Sopenharmony_ci    "VertexAttrib3sv": 546,
583bf215546Sopenharmony_ci    "VertexAttrib4Nbv": 547,
584bf215546Sopenharmony_ci    "VertexAttrib4Niv": 548,
585bf215546Sopenharmony_ci    "VertexAttrib4Nsv": 549,
586bf215546Sopenharmony_ci    "VertexAttrib4Nub": 550,
587bf215546Sopenharmony_ci    "VertexAttrib4Nubv": 551,
588bf215546Sopenharmony_ci    "VertexAttrib4Nuiv": 552,
589bf215546Sopenharmony_ci    "VertexAttrib4Nusv": 553,
590bf215546Sopenharmony_ci    "VertexAttrib4bv": 554,
591bf215546Sopenharmony_ci    "VertexAttrib4d": 555,
592bf215546Sopenharmony_ci    "VertexAttrib4dv": 556,
593bf215546Sopenharmony_ci    "VertexAttrib4iv": 557,
594bf215546Sopenharmony_ci    "VertexAttrib4s": 558,
595bf215546Sopenharmony_ci    "VertexAttrib4sv": 559,
596bf215546Sopenharmony_ci    "VertexAttrib4ubv": 560,
597bf215546Sopenharmony_ci    "VertexAttrib4uiv": 561,
598bf215546Sopenharmony_ci    "VertexAttrib4usv": 562,
599bf215546Sopenharmony_ci    "VertexAttribPointer": 563,
600bf215546Sopenharmony_ci    "UniformMatrix2x3fv": 564,
601bf215546Sopenharmony_ci    "UniformMatrix2x4fv": 565,
602bf215546Sopenharmony_ci    "UniformMatrix3x2fv": 566,
603bf215546Sopenharmony_ci    "UniformMatrix3x4fv": 567,
604bf215546Sopenharmony_ci    "UniformMatrix4x2fv": 568,
605bf215546Sopenharmony_ci    "UniformMatrix4x3fv": 569,
606bf215546Sopenharmony_ci    "BeginConditionalRender": 570,
607bf215546Sopenharmony_ci    "BeginTransformFeedback": 571,
608bf215546Sopenharmony_ci    "BindBufferBase": 572,
609bf215546Sopenharmony_ci    "BindBufferRange": 573,
610bf215546Sopenharmony_ci    "BindFragDataLocation": 574,
611bf215546Sopenharmony_ci    "ClampColor": 575,
612bf215546Sopenharmony_ci    "ClearBufferfi": 576,
613bf215546Sopenharmony_ci    "ClearBufferfv": 577,
614bf215546Sopenharmony_ci    "ClearBufferiv": 578,
615bf215546Sopenharmony_ci    "ClearBufferuiv": 579,
616bf215546Sopenharmony_ci    "ColorMaski": 580,
617bf215546Sopenharmony_ci    "Disablei": 581,
618bf215546Sopenharmony_ci    "Enablei": 582,
619bf215546Sopenharmony_ci    "EndConditionalRender": 583,
620bf215546Sopenharmony_ci    "EndTransformFeedback": 584,
621bf215546Sopenharmony_ci    "GetBooleani_v": 585,
622bf215546Sopenharmony_ci    "GetFragDataLocation": 586,
623bf215546Sopenharmony_ci    "GetIntegeri_v": 587,
624bf215546Sopenharmony_ci    "GetStringi": 588,
625bf215546Sopenharmony_ci    "GetTexParameterIiv": 589,
626bf215546Sopenharmony_ci    "GetTexParameterIuiv": 590,
627bf215546Sopenharmony_ci    "GetTransformFeedbackVarying": 591,
628bf215546Sopenharmony_ci    "GetUniformuiv": 592,
629bf215546Sopenharmony_ci    "GetVertexAttribIiv": 593,
630bf215546Sopenharmony_ci    "GetVertexAttribIuiv": 594,
631bf215546Sopenharmony_ci    "IsEnabledi": 595,
632bf215546Sopenharmony_ci    "TexParameterIiv": 596,
633bf215546Sopenharmony_ci    "TexParameterIuiv": 597,
634bf215546Sopenharmony_ci    "TransformFeedbackVaryings": 598,
635bf215546Sopenharmony_ci    "Uniform1ui": 599,
636bf215546Sopenharmony_ci    "Uniform1uiv": 600,
637bf215546Sopenharmony_ci    "Uniform2ui": 601,
638bf215546Sopenharmony_ci    "Uniform2uiv": 602,
639bf215546Sopenharmony_ci    "Uniform3ui": 603,
640bf215546Sopenharmony_ci    "Uniform3uiv": 604,
641bf215546Sopenharmony_ci    "Uniform4ui": 605,
642bf215546Sopenharmony_ci    "Uniform4uiv": 606,
643bf215546Sopenharmony_ci    "VertexAttribI1iv": 607,
644bf215546Sopenharmony_ci    "VertexAttribI1uiv": 608,
645bf215546Sopenharmony_ci    "VertexAttribI4bv": 609,
646bf215546Sopenharmony_ci    "VertexAttribI4sv": 610,
647bf215546Sopenharmony_ci    "VertexAttribI4ubv": 611,
648bf215546Sopenharmony_ci    "VertexAttribI4usv": 612,
649bf215546Sopenharmony_ci    "VertexAttribIPointer": 613,
650bf215546Sopenharmony_ci    "PrimitiveRestartIndex": 614,
651bf215546Sopenharmony_ci    "TexBuffer": 615,
652bf215546Sopenharmony_ci    "FramebufferTexture": 616,
653bf215546Sopenharmony_ci    "GetBufferParameteri64v": 617,
654bf215546Sopenharmony_ci    "GetInteger64i_v": 618,
655bf215546Sopenharmony_ci    "VertexAttribDivisor": 619,
656bf215546Sopenharmony_ci    "MinSampleShading": 620,
657bf215546Sopenharmony_ci    "MemoryBarrierByRegion": 621,
658bf215546Sopenharmony_ci    "BindProgramARB": 622,
659bf215546Sopenharmony_ci    "DeleteProgramsARB": 623,
660bf215546Sopenharmony_ci    "GenProgramsARB": 624,
661bf215546Sopenharmony_ci    "GetProgramEnvParameterdvARB": 625,
662bf215546Sopenharmony_ci    "GetProgramEnvParameterfvARB": 626,
663bf215546Sopenharmony_ci    "GetProgramLocalParameterdvARB": 627,
664bf215546Sopenharmony_ci    "GetProgramLocalParameterfvARB": 628,
665bf215546Sopenharmony_ci    "GetProgramStringARB": 629,
666bf215546Sopenharmony_ci    "GetProgramivARB": 630,
667bf215546Sopenharmony_ci    "IsProgramARB": 631,
668bf215546Sopenharmony_ci    "ProgramEnvParameter4dARB": 632,
669bf215546Sopenharmony_ci    "ProgramEnvParameter4dvARB": 633,
670bf215546Sopenharmony_ci    "ProgramEnvParameter4fARB": 634,
671bf215546Sopenharmony_ci    "ProgramEnvParameter4fvARB": 635,
672bf215546Sopenharmony_ci    "ProgramLocalParameter4dARB": 636,
673bf215546Sopenharmony_ci    "ProgramLocalParameter4dvARB": 637,
674bf215546Sopenharmony_ci    "ProgramLocalParameter4fARB": 638,
675bf215546Sopenharmony_ci    "ProgramLocalParameter4fvARB": 639,
676bf215546Sopenharmony_ci    "ProgramStringARB": 640,
677bf215546Sopenharmony_ci    "VertexAttrib1fARB": 641,
678bf215546Sopenharmony_ci    "VertexAttrib1fvARB": 642,
679bf215546Sopenharmony_ci    "VertexAttrib2fARB": 643,
680bf215546Sopenharmony_ci    "VertexAttrib2fvARB": 644,
681bf215546Sopenharmony_ci    "VertexAttrib3fARB": 645,
682bf215546Sopenharmony_ci    "VertexAttrib3fvARB": 646,
683bf215546Sopenharmony_ci    "VertexAttrib4fARB": 647,
684bf215546Sopenharmony_ci    "VertexAttrib4fvARB": 648,
685bf215546Sopenharmony_ci    "AttachObjectARB": 649,
686bf215546Sopenharmony_ci    "CreateProgramObjectARB": 650,
687bf215546Sopenharmony_ci    "CreateShaderObjectARB": 651,
688bf215546Sopenharmony_ci    "DeleteObjectARB": 652,
689bf215546Sopenharmony_ci    "DetachObjectARB": 653,
690bf215546Sopenharmony_ci    "GetAttachedObjectsARB": 654,
691bf215546Sopenharmony_ci    "GetHandleARB": 655,
692bf215546Sopenharmony_ci    "GetInfoLogARB": 656,
693bf215546Sopenharmony_ci    "GetObjectParameterfvARB": 657,
694bf215546Sopenharmony_ci    "GetObjectParameterivARB": 658,
695bf215546Sopenharmony_ci    "DrawArraysInstancedARB": 659,
696bf215546Sopenharmony_ci    "DrawElementsInstancedARB": 660,
697bf215546Sopenharmony_ci    "BindFramebuffer": 661,
698bf215546Sopenharmony_ci    "BindRenderbuffer": 662,
699bf215546Sopenharmony_ci    "BlitFramebuffer": 663,
700bf215546Sopenharmony_ci    "CheckFramebufferStatus": 664,
701bf215546Sopenharmony_ci    "DeleteFramebuffers": 665,
702bf215546Sopenharmony_ci    "DeleteRenderbuffers": 666,
703bf215546Sopenharmony_ci    "FramebufferRenderbuffer": 667,
704bf215546Sopenharmony_ci    "FramebufferTexture1D": 668,
705bf215546Sopenharmony_ci    "FramebufferTexture2D": 669,
706bf215546Sopenharmony_ci    "FramebufferTexture3D": 670,
707bf215546Sopenharmony_ci    "FramebufferTextureLayer": 671,
708bf215546Sopenharmony_ci    "GenFramebuffers": 672,
709bf215546Sopenharmony_ci    "GenRenderbuffers": 673,
710bf215546Sopenharmony_ci    "GenerateMipmap": 674,
711bf215546Sopenharmony_ci    "GetFramebufferAttachmentParameteriv": 675,
712bf215546Sopenharmony_ci    "GetRenderbufferParameteriv": 676,
713bf215546Sopenharmony_ci    "IsFramebuffer": 677,
714bf215546Sopenharmony_ci    "IsRenderbuffer": 678,
715bf215546Sopenharmony_ci    "RenderbufferStorage": 679,
716bf215546Sopenharmony_ci    "RenderbufferStorageMultisample": 680,
717bf215546Sopenharmony_ci    "FlushMappedBufferRange": 681,
718bf215546Sopenharmony_ci    "MapBufferRange": 682,
719bf215546Sopenharmony_ci    "BindVertexArray": 683,
720bf215546Sopenharmony_ci    "DeleteVertexArrays": 684,
721bf215546Sopenharmony_ci    "GenVertexArrays": 685,
722bf215546Sopenharmony_ci    "IsVertexArray": 686,
723bf215546Sopenharmony_ci    "GetActiveUniformBlockName": 687,
724bf215546Sopenharmony_ci    "GetActiveUniformBlockiv": 688,
725bf215546Sopenharmony_ci    "GetActiveUniformName": 689,
726bf215546Sopenharmony_ci    "GetActiveUniformsiv": 690,
727bf215546Sopenharmony_ci    "GetUniformBlockIndex": 691,
728bf215546Sopenharmony_ci    "GetUniformIndices": 692,
729bf215546Sopenharmony_ci    "UniformBlockBinding": 693,
730bf215546Sopenharmony_ci    "CopyBufferSubData": 694,
731bf215546Sopenharmony_ci    "ClientWaitSync": 695,
732bf215546Sopenharmony_ci    "DeleteSync": 696,
733bf215546Sopenharmony_ci    "FenceSync": 697,
734bf215546Sopenharmony_ci    "GetInteger64v": 698,
735bf215546Sopenharmony_ci    "GetSynciv": 699,
736bf215546Sopenharmony_ci    "IsSync": 700,
737bf215546Sopenharmony_ci    "WaitSync": 701,
738bf215546Sopenharmony_ci    "DrawElementsBaseVertex": 702,
739bf215546Sopenharmony_ci    "DrawElementsInstancedBaseVertex": 703,
740bf215546Sopenharmony_ci    "DrawRangeElementsBaseVertex": 704,
741bf215546Sopenharmony_ci    "MultiDrawElementsBaseVertex": 705,
742bf215546Sopenharmony_ci    "ProvokingVertex": 706,
743bf215546Sopenharmony_ci    "GetMultisamplefv": 707,
744bf215546Sopenharmony_ci    "SampleMaski": 708,
745bf215546Sopenharmony_ci    "TexImage2DMultisample": 709,
746bf215546Sopenharmony_ci    "TexImage3DMultisample": 710,
747bf215546Sopenharmony_ci    "BlendEquationSeparateiARB": 711,
748bf215546Sopenharmony_ci    "BlendEquationiARB": 712,
749bf215546Sopenharmony_ci    "BlendFuncSeparateiARB": 713,
750bf215546Sopenharmony_ci    "BlendFunciARB": 714,
751bf215546Sopenharmony_ci    "BindFragDataLocationIndexed": 715,
752bf215546Sopenharmony_ci    "GetFragDataIndex": 716,
753bf215546Sopenharmony_ci    "BindSampler": 717,
754bf215546Sopenharmony_ci    "DeleteSamplers": 718,
755bf215546Sopenharmony_ci    "GenSamplers": 719,
756bf215546Sopenharmony_ci    "GetSamplerParameterIiv": 720,
757bf215546Sopenharmony_ci    "GetSamplerParameterIuiv": 721,
758bf215546Sopenharmony_ci    "GetSamplerParameterfv": 722,
759bf215546Sopenharmony_ci    "GetSamplerParameteriv": 723,
760bf215546Sopenharmony_ci    "IsSampler": 724,
761bf215546Sopenharmony_ci    "SamplerParameterIiv": 725,
762bf215546Sopenharmony_ci    "SamplerParameterIuiv": 726,
763bf215546Sopenharmony_ci    "SamplerParameterf": 727,
764bf215546Sopenharmony_ci    "SamplerParameterfv": 728,
765bf215546Sopenharmony_ci    "SamplerParameteri": 729,
766bf215546Sopenharmony_ci    "SamplerParameteriv": 730,
767bf215546Sopenharmony_ci    "GetQueryObjecti64v": 731,
768bf215546Sopenharmony_ci    "GetQueryObjectui64v": 732,
769bf215546Sopenharmony_ci    "QueryCounter": 733,
770bf215546Sopenharmony_ci    "ColorP3ui": 734,
771bf215546Sopenharmony_ci    "ColorP3uiv": 735,
772bf215546Sopenharmony_ci    "ColorP4ui": 736,
773bf215546Sopenharmony_ci    "ColorP4uiv": 737,
774bf215546Sopenharmony_ci    "MultiTexCoordP1ui": 738,
775bf215546Sopenharmony_ci    "MultiTexCoordP1uiv": 739,
776bf215546Sopenharmony_ci    "MultiTexCoordP2ui": 740,
777bf215546Sopenharmony_ci    "MultiTexCoordP2uiv": 741,
778bf215546Sopenharmony_ci    "MultiTexCoordP3ui": 742,
779bf215546Sopenharmony_ci    "MultiTexCoordP3uiv": 743,
780bf215546Sopenharmony_ci    "MultiTexCoordP4ui": 744,
781bf215546Sopenharmony_ci    "MultiTexCoordP4uiv": 745,
782bf215546Sopenharmony_ci    "NormalP3ui": 746,
783bf215546Sopenharmony_ci    "NormalP3uiv": 747,
784bf215546Sopenharmony_ci    "SecondaryColorP3ui": 748,
785bf215546Sopenharmony_ci    "SecondaryColorP3uiv": 749,
786bf215546Sopenharmony_ci    "TexCoordP1ui": 750,
787bf215546Sopenharmony_ci    "TexCoordP1uiv": 751,
788bf215546Sopenharmony_ci    "TexCoordP2ui": 752,
789bf215546Sopenharmony_ci    "TexCoordP2uiv": 753,
790bf215546Sopenharmony_ci    "TexCoordP3ui": 754,
791bf215546Sopenharmony_ci    "TexCoordP3uiv": 755,
792bf215546Sopenharmony_ci    "TexCoordP4ui": 756,
793bf215546Sopenharmony_ci    "TexCoordP4uiv": 757,
794bf215546Sopenharmony_ci    "VertexAttribP1ui": 758,
795bf215546Sopenharmony_ci    "VertexAttribP1uiv": 759,
796bf215546Sopenharmony_ci    "VertexAttribP2ui": 760,
797bf215546Sopenharmony_ci    "VertexAttribP2uiv": 761,
798bf215546Sopenharmony_ci    "VertexAttribP3ui": 762,
799bf215546Sopenharmony_ci    "VertexAttribP3uiv": 763,
800bf215546Sopenharmony_ci    "VertexAttribP4ui": 764,
801bf215546Sopenharmony_ci    "VertexAttribP4uiv": 765,
802bf215546Sopenharmony_ci    "VertexP2ui": 766,
803bf215546Sopenharmony_ci    "VertexP2uiv": 767,
804bf215546Sopenharmony_ci    "VertexP3ui": 768,
805bf215546Sopenharmony_ci    "VertexP3uiv": 769,
806bf215546Sopenharmony_ci    "VertexP4ui": 770,
807bf215546Sopenharmony_ci    "VertexP4uiv": 771,
808bf215546Sopenharmony_ci    "DrawArraysIndirect": 772,
809bf215546Sopenharmony_ci    "DrawElementsIndirect": 773,
810bf215546Sopenharmony_ci    "GetUniformdv": 774,
811bf215546Sopenharmony_ci    "Uniform1d": 775,
812bf215546Sopenharmony_ci    "Uniform1dv": 776,
813bf215546Sopenharmony_ci    "Uniform2d": 777,
814bf215546Sopenharmony_ci    "Uniform2dv": 778,
815bf215546Sopenharmony_ci    "Uniform3d": 779,
816bf215546Sopenharmony_ci    "Uniform3dv": 780,
817bf215546Sopenharmony_ci    "Uniform4d": 781,
818bf215546Sopenharmony_ci    "Uniform4dv": 782,
819bf215546Sopenharmony_ci    "UniformMatrix2dv": 783,
820bf215546Sopenharmony_ci    "UniformMatrix2x3dv": 784,
821bf215546Sopenharmony_ci    "UniformMatrix2x4dv": 785,
822bf215546Sopenharmony_ci    "UniformMatrix3dv": 786,
823bf215546Sopenharmony_ci    "UniformMatrix3x2dv": 787,
824bf215546Sopenharmony_ci    "UniformMatrix3x4dv": 788,
825bf215546Sopenharmony_ci    "UniformMatrix4dv": 789,
826bf215546Sopenharmony_ci    "UniformMatrix4x2dv": 790,
827bf215546Sopenharmony_ci    "UniformMatrix4x3dv": 791,
828bf215546Sopenharmony_ci    "GetActiveSubroutineName": 792,
829bf215546Sopenharmony_ci    "GetActiveSubroutineUniformName": 793,
830bf215546Sopenharmony_ci    "GetActiveSubroutineUniformiv": 794,
831bf215546Sopenharmony_ci    "GetProgramStageiv": 795,
832bf215546Sopenharmony_ci    "GetSubroutineIndex": 796,
833bf215546Sopenharmony_ci    "GetSubroutineUniformLocation": 797,
834bf215546Sopenharmony_ci    "GetUniformSubroutineuiv": 798,
835bf215546Sopenharmony_ci    "UniformSubroutinesuiv": 799,
836bf215546Sopenharmony_ci    "PatchParameterfv": 800,
837bf215546Sopenharmony_ci    "PatchParameteri": 801,
838bf215546Sopenharmony_ci    "BindTransformFeedback": 802,
839bf215546Sopenharmony_ci    "DeleteTransformFeedbacks": 803,
840bf215546Sopenharmony_ci    "DrawTransformFeedback": 804,
841bf215546Sopenharmony_ci    "GenTransformFeedbacks": 805,
842bf215546Sopenharmony_ci    "IsTransformFeedback": 806,
843bf215546Sopenharmony_ci    "PauseTransformFeedback": 807,
844bf215546Sopenharmony_ci    "ResumeTransformFeedback": 808,
845bf215546Sopenharmony_ci    "BeginQueryIndexed": 809,
846bf215546Sopenharmony_ci    "DrawTransformFeedbackStream": 810,
847bf215546Sopenharmony_ci    "EndQueryIndexed": 811,
848bf215546Sopenharmony_ci    "GetQueryIndexediv": 812,
849bf215546Sopenharmony_ci    "ClearDepthf": 813,
850bf215546Sopenharmony_ci    "DepthRangef": 814,
851bf215546Sopenharmony_ci    "GetShaderPrecisionFormat": 815,
852bf215546Sopenharmony_ci    "ReleaseShaderCompiler": 816,
853bf215546Sopenharmony_ci    "ShaderBinary": 817,
854bf215546Sopenharmony_ci    "GetProgramBinary": 818,
855bf215546Sopenharmony_ci    "ProgramBinary": 819,
856bf215546Sopenharmony_ci    "ProgramParameteri": 820,
857bf215546Sopenharmony_ci    "GetVertexAttribLdv": 821,
858bf215546Sopenharmony_ci    "VertexAttribL1d": 822,
859bf215546Sopenharmony_ci    "VertexAttribL1dv": 823,
860bf215546Sopenharmony_ci    "VertexAttribL2d": 824,
861bf215546Sopenharmony_ci    "VertexAttribL2dv": 825,
862bf215546Sopenharmony_ci    "VertexAttribL3d": 826,
863bf215546Sopenharmony_ci    "VertexAttribL3dv": 827,
864bf215546Sopenharmony_ci    "VertexAttribL4d": 828,
865bf215546Sopenharmony_ci    "VertexAttribL4dv": 829,
866bf215546Sopenharmony_ci    "VertexAttribLPointer": 830,
867bf215546Sopenharmony_ci    "DepthRangeArrayv": 831,
868bf215546Sopenharmony_ci    "DepthRangeIndexed": 832,
869bf215546Sopenharmony_ci    "GetDoublei_v": 833,
870bf215546Sopenharmony_ci    "GetFloati_v": 834,
871bf215546Sopenharmony_ci    "ScissorArrayv": 835,
872bf215546Sopenharmony_ci    "ScissorIndexed": 836,
873bf215546Sopenharmony_ci    "ScissorIndexedv": 837,
874bf215546Sopenharmony_ci    "ViewportArrayv": 838,
875bf215546Sopenharmony_ci    "ViewportIndexedf": 839,
876bf215546Sopenharmony_ci    "ViewportIndexedfv": 840,
877bf215546Sopenharmony_ci    "GetGraphicsResetStatusARB": 841,
878bf215546Sopenharmony_ci    "GetnColorTableARB": 842,
879bf215546Sopenharmony_ci    "GetnCompressedTexImageARB": 843,
880bf215546Sopenharmony_ci    "GetnConvolutionFilterARB": 844,
881bf215546Sopenharmony_ci    "GetnHistogramARB": 845,
882bf215546Sopenharmony_ci    "GetnMapdvARB": 846,
883bf215546Sopenharmony_ci    "GetnMapfvARB": 847,
884bf215546Sopenharmony_ci    "GetnMapivARB": 848,
885bf215546Sopenharmony_ci    "GetnMinmaxARB": 849,
886bf215546Sopenharmony_ci    "GetnPixelMapfvARB": 850,
887bf215546Sopenharmony_ci    "GetnPixelMapuivARB": 851,
888bf215546Sopenharmony_ci    "GetnPixelMapusvARB": 852,
889bf215546Sopenharmony_ci    "GetnPolygonStippleARB": 853,
890bf215546Sopenharmony_ci    "GetnSeparableFilterARB": 854,
891bf215546Sopenharmony_ci    "GetnTexImageARB": 855,
892bf215546Sopenharmony_ci    "GetnUniformdvARB": 856,
893bf215546Sopenharmony_ci    "GetnUniformfvARB": 857,
894bf215546Sopenharmony_ci    "GetnUniformivARB": 858,
895bf215546Sopenharmony_ci    "GetnUniformuivARB": 859,
896bf215546Sopenharmony_ci    "ReadnPixelsARB": 860,
897bf215546Sopenharmony_ci    "DrawArraysInstancedBaseInstance": 861,
898bf215546Sopenharmony_ci    "DrawElementsInstancedBaseInstance": 862,
899bf215546Sopenharmony_ci    "DrawElementsInstancedBaseVertexBaseInstance": 863,
900bf215546Sopenharmony_ci    "DrawTransformFeedbackInstanced": 864,
901bf215546Sopenharmony_ci    "DrawTransformFeedbackStreamInstanced": 865,
902bf215546Sopenharmony_ci    "GetInternalformativ": 866,
903bf215546Sopenharmony_ci    "GetActiveAtomicCounterBufferiv": 867,
904bf215546Sopenharmony_ci    "BindImageTexture": 868,
905bf215546Sopenharmony_ci    "MemoryBarrier": 869,
906bf215546Sopenharmony_ci    "TexStorage1D": 870,
907bf215546Sopenharmony_ci    "TexStorage2D": 871,
908bf215546Sopenharmony_ci    "TexStorage3D": 872,
909bf215546Sopenharmony_ci    "TextureStorage1DEXT": 873,
910bf215546Sopenharmony_ci    "TextureStorage2DEXT": 874,
911bf215546Sopenharmony_ci    "TextureStorage3DEXT": 875,
912bf215546Sopenharmony_ci    "ClearBufferData": 876,
913bf215546Sopenharmony_ci    "ClearBufferSubData": 877,
914bf215546Sopenharmony_ci    "DispatchCompute": 878,
915bf215546Sopenharmony_ci    "DispatchComputeIndirect": 879,
916bf215546Sopenharmony_ci    "CopyImageSubData": 880,
917bf215546Sopenharmony_ci    "TextureView": 881,
918bf215546Sopenharmony_ci    "BindVertexBuffer": 882,
919bf215546Sopenharmony_ci    "VertexAttribBinding": 883,
920bf215546Sopenharmony_ci    "VertexAttribFormat": 884,
921bf215546Sopenharmony_ci    "VertexAttribIFormat": 885,
922bf215546Sopenharmony_ci    "VertexAttribLFormat": 886,
923bf215546Sopenharmony_ci    "VertexBindingDivisor": 887,
924bf215546Sopenharmony_ci    "FramebufferParameteri": 888,
925bf215546Sopenharmony_ci    "GetFramebufferParameteriv": 889,
926bf215546Sopenharmony_ci    "GetInternalformati64v": 890,
927bf215546Sopenharmony_ci    "MultiDrawArraysIndirect": 891,
928bf215546Sopenharmony_ci    "MultiDrawElementsIndirect": 892,
929bf215546Sopenharmony_ci    "GetProgramInterfaceiv": 893,
930bf215546Sopenharmony_ci    "GetProgramResourceIndex": 894,
931bf215546Sopenharmony_ci    "GetProgramResourceLocation": 895,
932bf215546Sopenharmony_ci    "GetProgramResourceLocationIndex": 896,
933bf215546Sopenharmony_ci    "GetProgramResourceName": 897,
934bf215546Sopenharmony_ci    "GetProgramResourceiv": 898,
935bf215546Sopenharmony_ci    "ShaderStorageBlockBinding": 899,
936bf215546Sopenharmony_ci    "TexBufferRange": 900,
937bf215546Sopenharmony_ci    "TexStorage2DMultisample": 901,
938bf215546Sopenharmony_ci    "TexStorage3DMultisample": 902,
939bf215546Sopenharmony_ci    "BufferStorage": 903,
940bf215546Sopenharmony_ci    "ClearTexImage": 904,
941bf215546Sopenharmony_ci    "ClearTexSubImage": 905,
942bf215546Sopenharmony_ci    "BindBuffersBase": 906,
943bf215546Sopenharmony_ci    "BindBuffersRange": 907,
944bf215546Sopenharmony_ci    "BindImageTextures": 908,
945bf215546Sopenharmony_ci    "BindSamplers": 909,
946bf215546Sopenharmony_ci    "BindTextures": 910,
947bf215546Sopenharmony_ci    "BindVertexBuffers": 911,
948bf215546Sopenharmony_ci    "GetImageHandleARB": 912,
949bf215546Sopenharmony_ci    "GetTextureHandleARB": 913,
950bf215546Sopenharmony_ci    "GetTextureSamplerHandleARB": 914,
951bf215546Sopenharmony_ci    "GetVertexAttribLui64vARB": 915,
952bf215546Sopenharmony_ci    "IsImageHandleResidentARB": 916,
953bf215546Sopenharmony_ci    "IsTextureHandleResidentARB": 917,
954bf215546Sopenharmony_ci    "MakeImageHandleNonResidentARB": 918,
955bf215546Sopenharmony_ci    "MakeImageHandleResidentARB": 919,
956bf215546Sopenharmony_ci    "MakeTextureHandleNonResidentARB": 920,
957bf215546Sopenharmony_ci    "MakeTextureHandleResidentARB": 921,
958bf215546Sopenharmony_ci    "ProgramUniformHandleui64ARB": 922,
959bf215546Sopenharmony_ci    "ProgramUniformHandleui64vARB": 923,
960bf215546Sopenharmony_ci    "UniformHandleui64ARB": 924,
961bf215546Sopenharmony_ci    "UniformHandleui64vARB": 925,
962bf215546Sopenharmony_ci    "VertexAttribL1ui64ARB": 926,
963bf215546Sopenharmony_ci    "VertexAttribL1ui64vARB": 927,
964bf215546Sopenharmony_ci    "DispatchComputeGroupSizeARB": 928,
965bf215546Sopenharmony_ci    "MultiDrawArraysIndirectCountARB": 929,
966bf215546Sopenharmony_ci    "MultiDrawElementsIndirectCountARB": 930,
967bf215546Sopenharmony_ci    "ClipControl": 931,
968bf215546Sopenharmony_ci    "BindTextureUnit": 932,
969bf215546Sopenharmony_ci    "BlitNamedFramebuffer": 933,
970bf215546Sopenharmony_ci    "CheckNamedFramebufferStatus": 934,
971bf215546Sopenharmony_ci    "ClearNamedBufferData": 935,
972bf215546Sopenharmony_ci    "ClearNamedBufferSubData": 936,
973bf215546Sopenharmony_ci    "ClearNamedFramebufferfi": 937,
974bf215546Sopenharmony_ci    "ClearNamedFramebufferfv": 938,
975bf215546Sopenharmony_ci    "ClearNamedFramebufferiv": 939,
976bf215546Sopenharmony_ci    "ClearNamedFramebufferuiv": 940,
977bf215546Sopenharmony_ci    "CompressedTextureSubImage1D": 941,
978bf215546Sopenharmony_ci    "CompressedTextureSubImage2D": 942,
979bf215546Sopenharmony_ci    "CompressedTextureSubImage3D": 943,
980bf215546Sopenharmony_ci    "CopyNamedBufferSubData": 944,
981bf215546Sopenharmony_ci    "CopyTextureSubImage1D": 945,
982bf215546Sopenharmony_ci    "CopyTextureSubImage2D": 946,
983bf215546Sopenharmony_ci    "CopyTextureSubImage3D": 947,
984bf215546Sopenharmony_ci    "CreateBuffers": 948,
985bf215546Sopenharmony_ci    "CreateFramebuffers": 949,
986bf215546Sopenharmony_ci    "CreateProgramPipelines": 950,
987bf215546Sopenharmony_ci    "CreateQueries": 951,
988bf215546Sopenharmony_ci    "CreateRenderbuffers": 952,
989bf215546Sopenharmony_ci    "CreateSamplers": 953,
990bf215546Sopenharmony_ci    "CreateTextures": 954,
991bf215546Sopenharmony_ci    "CreateTransformFeedbacks": 955,
992bf215546Sopenharmony_ci    "CreateVertexArrays": 956,
993bf215546Sopenharmony_ci    "DisableVertexArrayAttrib": 957,
994bf215546Sopenharmony_ci    "EnableVertexArrayAttrib": 958,
995bf215546Sopenharmony_ci    "FlushMappedNamedBufferRange": 959,
996bf215546Sopenharmony_ci    "GenerateTextureMipmap": 960,
997bf215546Sopenharmony_ci    "GetCompressedTextureImage": 961,
998bf215546Sopenharmony_ci    "GetNamedBufferParameteri64v": 962,
999bf215546Sopenharmony_ci    "GetNamedBufferParameteriv": 963,
1000bf215546Sopenharmony_ci    "GetNamedBufferPointerv": 964,
1001bf215546Sopenharmony_ci    "GetNamedBufferSubData": 965,
1002bf215546Sopenharmony_ci    "GetNamedFramebufferAttachmentParameteriv": 966,
1003bf215546Sopenharmony_ci    "GetNamedFramebufferParameteriv": 967,
1004bf215546Sopenharmony_ci    "GetNamedRenderbufferParameteriv": 968,
1005bf215546Sopenharmony_ci    "GetQueryBufferObjecti64v": 969,
1006bf215546Sopenharmony_ci    "GetQueryBufferObjectiv": 970,
1007bf215546Sopenharmony_ci    "GetQueryBufferObjectui64v": 971,
1008bf215546Sopenharmony_ci    "GetQueryBufferObjectuiv": 972,
1009bf215546Sopenharmony_ci    "GetTextureImage": 973,
1010bf215546Sopenharmony_ci    "GetTextureLevelParameterfv": 974,
1011bf215546Sopenharmony_ci    "GetTextureLevelParameteriv": 975,
1012bf215546Sopenharmony_ci    "GetTextureParameterIiv": 976,
1013bf215546Sopenharmony_ci    "GetTextureParameterIuiv": 977,
1014bf215546Sopenharmony_ci    "GetTextureParameterfv": 978,
1015bf215546Sopenharmony_ci    "GetTextureParameteriv": 979,
1016bf215546Sopenharmony_ci    "GetTransformFeedbacki64_v": 980,
1017bf215546Sopenharmony_ci    "GetTransformFeedbacki_v": 981,
1018bf215546Sopenharmony_ci    "GetTransformFeedbackiv": 982,
1019bf215546Sopenharmony_ci    "GetVertexArrayIndexed64iv": 983,
1020bf215546Sopenharmony_ci    "GetVertexArrayIndexediv": 984,
1021bf215546Sopenharmony_ci    "GetVertexArrayiv": 985,
1022bf215546Sopenharmony_ci    "InvalidateNamedFramebufferData": 986,
1023bf215546Sopenharmony_ci    "InvalidateNamedFramebufferSubData": 987,
1024bf215546Sopenharmony_ci    "MapNamedBuffer": 988,
1025bf215546Sopenharmony_ci    "MapNamedBufferRange": 989,
1026bf215546Sopenharmony_ci    "NamedBufferData": 990,
1027bf215546Sopenharmony_ci    "NamedBufferStorage": 991,
1028bf215546Sopenharmony_ci    "NamedBufferSubData": 992,
1029bf215546Sopenharmony_ci    "NamedFramebufferDrawBuffer": 993,
1030bf215546Sopenharmony_ci    "NamedFramebufferDrawBuffers": 994,
1031bf215546Sopenharmony_ci    "NamedFramebufferParameteri": 995,
1032bf215546Sopenharmony_ci    "NamedFramebufferReadBuffer": 996,
1033bf215546Sopenharmony_ci    "NamedFramebufferRenderbuffer": 997,
1034bf215546Sopenharmony_ci    "NamedFramebufferTexture": 998,
1035bf215546Sopenharmony_ci    "NamedFramebufferTextureLayer": 999,
1036bf215546Sopenharmony_ci    "NamedRenderbufferStorage": 1000,
1037bf215546Sopenharmony_ci    "NamedRenderbufferStorageMultisample": 1001,
1038bf215546Sopenharmony_ci    "TextureBuffer": 1002,
1039bf215546Sopenharmony_ci    "TextureBufferRange": 1003,
1040bf215546Sopenharmony_ci    "TextureParameterIiv": 1004,
1041bf215546Sopenharmony_ci    "TextureParameterIuiv": 1005,
1042bf215546Sopenharmony_ci    "TextureParameterf": 1006,
1043bf215546Sopenharmony_ci    "TextureParameterfv": 1007,
1044bf215546Sopenharmony_ci    "TextureParameteri": 1008,
1045bf215546Sopenharmony_ci    "TextureParameteriv": 1009,
1046bf215546Sopenharmony_ci    "TextureStorage1D": 1010,
1047bf215546Sopenharmony_ci    "TextureStorage2D": 1011,
1048bf215546Sopenharmony_ci    "TextureStorage2DMultisample": 1012,
1049bf215546Sopenharmony_ci    "TextureStorage3D": 1013,
1050bf215546Sopenharmony_ci    "TextureStorage3DMultisample": 1014,
1051bf215546Sopenharmony_ci    "TextureSubImage1D": 1015,
1052bf215546Sopenharmony_ci    "TextureSubImage2D": 1016,
1053bf215546Sopenharmony_ci    "TextureSubImage3D": 1017,
1054bf215546Sopenharmony_ci    "TransformFeedbackBufferBase": 1018,
1055bf215546Sopenharmony_ci    "TransformFeedbackBufferRange": 1019,
1056bf215546Sopenharmony_ci    "UnmapNamedBufferEXT": 1020,
1057bf215546Sopenharmony_ci    "VertexArrayAttribBinding": 1021,
1058bf215546Sopenharmony_ci    "VertexArrayAttribFormat": 1022,
1059bf215546Sopenharmony_ci    "VertexArrayAttribIFormat": 1023,
1060bf215546Sopenharmony_ci    "VertexArrayAttribLFormat": 1024,
1061bf215546Sopenharmony_ci    "VertexArrayBindingDivisor": 1025,
1062bf215546Sopenharmony_ci    "VertexArrayElementBuffer": 1026,
1063bf215546Sopenharmony_ci    "VertexArrayVertexBuffer": 1027,
1064bf215546Sopenharmony_ci    "VertexArrayVertexBuffers": 1028,
1065bf215546Sopenharmony_ci    "GetCompressedTextureSubImage": 1029,
1066bf215546Sopenharmony_ci    "GetTextureSubImage": 1030,
1067bf215546Sopenharmony_ci    "BufferPageCommitmentARB": 1031,
1068bf215546Sopenharmony_ci    "NamedBufferPageCommitmentARB": 1032,
1069bf215546Sopenharmony_ci    "GetUniformi64vARB": 1033,
1070bf215546Sopenharmony_ci    "GetUniformui64vARB": 1034,
1071bf215546Sopenharmony_ci    "GetnUniformi64vARB": 1035,
1072bf215546Sopenharmony_ci    "GetnUniformui64vARB": 1036,
1073bf215546Sopenharmony_ci    "ProgramUniform1i64ARB": 1037,
1074bf215546Sopenharmony_ci    "ProgramUniform1i64vARB": 1038,
1075bf215546Sopenharmony_ci    "ProgramUniform1ui64ARB": 1039,
1076bf215546Sopenharmony_ci    "ProgramUniform1ui64vARB": 1040,
1077bf215546Sopenharmony_ci    "ProgramUniform2i64ARB": 1041,
1078bf215546Sopenharmony_ci    "ProgramUniform2i64vARB": 1042,
1079bf215546Sopenharmony_ci    "ProgramUniform2ui64ARB": 1043,
1080bf215546Sopenharmony_ci    "ProgramUniform2ui64vARB": 1044,
1081bf215546Sopenharmony_ci    "ProgramUniform3i64ARB": 1045,
1082bf215546Sopenharmony_ci    "ProgramUniform3i64vARB": 1046,
1083bf215546Sopenharmony_ci    "ProgramUniform3ui64ARB": 1047,
1084bf215546Sopenharmony_ci    "ProgramUniform3ui64vARB": 1048,
1085bf215546Sopenharmony_ci    "ProgramUniform4i64ARB": 1049,
1086bf215546Sopenharmony_ci    "ProgramUniform4i64vARB": 1050,
1087bf215546Sopenharmony_ci    "ProgramUniform4ui64ARB": 1051,
1088bf215546Sopenharmony_ci    "ProgramUniform4ui64vARB": 1052,
1089bf215546Sopenharmony_ci    "Uniform1i64ARB": 1053,
1090bf215546Sopenharmony_ci    "Uniform1i64vARB": 1054,
1091bf215546Sopenharmony_ci    "Uniform1ui64ARB": 1055,
1092bf215546Sopenharmony_ci    "Uniform1ui64vARB": 1056,
1093bf215546Sopenharmony_ci    "Uniform2i64ARB": 1057,
1094bf215546Sopenharmony_ci    "Uniform2i64vARB": 1058,
1095bf215546Sopenharmony_ci    "Uniform2ui64ARB": 1059,
1096bf215546Sopenharmony_ci    "Uniform2ui64vARB": 1060,
1097bf215546Sopenharmony_ci    "Uniform3i64ARB": 1061,
1098bf215546Sopenharmony_ci    "Uniform3i64vARB": 1062,
1099bf215546Sopenharmony_ci    "Uniform3ui64ARB": 1063,
1100bf215546Sopenharmony_ci    "Uniform3ui64vARB": 1064,
1101bf215546Sopenharmony_ci    "Uniform4i64ARB": 1065,
1102bf215546Sopenharmony_ci    "Uniform4i64vARB": 1066,
1103bf215546Sopenharmony_ci    "Uniform4ui64ARB": 1067,
1104bf215546Sopenharmony_ci    "Uniform4ui64vARB": 1068,
1105bf215546Sopenharmony_ci    "EvaluateDepthValuesARB": 1069,
1106bf215546Sopenharmony_ci    "FramebufferSampleLocationsfvARB": 1070,
1107bf215546Sopenharmony_ci    "NamedFramebufferSampleLocationsfvARB": 1071,
1108bf215546Sopenharmony_ci    "SpecializeShaderARB": 1072,
1109bf215546Sopenharmony_ci    "InvalidateBufferData": 1073,
1110bf215546Sopenharmony_ci    "InvalidateBufferSubData": 1074,
1111bf215546Sopenharmony_ci    "InvalidateFramebuffer": 1075,
1112bf215546Sopenharmony_ci    "InvalidateSubFramebuffer": 1076,
1113bf215546Sopenharmony_ci    "InvalidateTexImage": 1077,
1114bf215546Sopenharmony_ci    "InvalidateTexSubImage": 1078,
1115bf215546Sopenharmony_ci    "DrawTexfOES": 1079,
1116bf215546Sopenharmony_ci    "DrawTexfvOES": 1080,
1117bf215546Sopenharmony_ci    "DrawTexiOES": 1081,
1118bf215546Sopenharmony_ci    "DrawTexivOES": 1082,
1119bf215546Sopenharmony_ci    "DrawTexsOES": 1083,
1120bf215546Sopenharmony_ci    "DrawTexsvOES": 1084,
1121bf215546Sopenharmony_ci    "DrawTexxOES": 1085,
1122bf215546Sopenharmony_ci    "DrawTexxvOES": 1086,
1123bf215546Sopenharmony_ci    "PointSizePointerOES": 1087,
1124bf215546Sopenharmony_ci    "QueryMatrixxOES": 1088,
1125bf215546Sopenharmony_ci    "SampleMaskSGIS": 1089,
1126bf215546Sopenharmony_ci    "SamplePatternSGIS": 1090,
1127bf215546Sopenharmony_ci    "ColorPointerEXT": 1091,
1128bf215546Sopenharmony_ci    "EdgeFlagPointerEXT": 1092,
1129bf215546Sopenharmony_ci    "IndexPointerEXT": 1093,
1130bf215546Sopenharmony_ci    "NormalPointerEXT": 1094,
1131bf215546Sopenharmony_ci    "TexCoordPointerEXT": 1095,
1132bf215546Sopenharmony_ci    "VertexPointerEXT": 1096,
1133bf215546Sopenharmony_ci    "DiscardFramebufferEXT": 1097,
1134bf215546Sopenharmony_ci    "ActiveShaderProgram": 1098,
1135bf215546Sopenharmony_ci    "BindProgramPipeline": 1099,
1136bf215546Sopenharmony_ci    "CreateShaderProgramv": 1100,
1137bf215546Sopenharmony_ci    "DeleteProgramPipelines": 1101,
1138bf215546Sopenharmony_ci    "GenProgramPipelines": 1102,
1139bf215546Sopenharmony_ci    "GetProgramPipelineInfoLog": 1103,
1140bf215546Sopenharmony_ci    "GetProgramPipelineiv": 1104,
1141bf215546Sopenharmony_ci    "IsProgramPipeline": 1105,
1142bf215546Sopenharmony_ci    "LockArraysEXT": 1106,
1143bf215546Sopenharmony_ci    "ProgramUniform1d": 1107,
1144bf215546Sopenharmony_ci    "ProgramUniform1dv": 1108,
1145bf215546Sopenharmony_ci    "ProgramUniform1f": 1109,
1146bf215546Sopenharmony_ci    "ProgramUniform1fv": 1110,
1147bf215546Sopenharmony_ci    "ProgramUniform1i": 1111,
1148bf215546Sopenharmony_ci    "ProgramUniform1iv": 1112,
1149bf215546Sopenharmony_ci    "ProgramUniform1ui": 1113,
1150bf215546Sopenharmony_ci    "ProgramUniform1uiv": 1114,
1151bf215546Sopenharmony_ci    "ProgramUniform2d": 1115,
1152bf215546Sopenharmony_ci    "ProgramUniform2dv": 1116,
1153bf215546Sopenharmony_ci    "ProgramUniform2f": 1117,
1154bf215546Sopenharmony_ci    "ProgramUniform2fv": 1118,
1155bf215546Sopenharmony_ci    "ProgramUniform2i": 1119,
1156bf215546Sopenharmony_ci    "ProgramUniform2iv": 1120,
1157bf215546Sopenharmony_ci    "ProgramUniform2ui": 1121,
1158bf215546Sopenharmony_ci    "ProgramUniform2uiv": 1122,
1159bf215546Sopenharmony_ci    "ProgramUniform3d": 1123,
1160bf215546Sopenharmony_ci    "ProgramUniform3dv": 1124,
1161bf215546Sopenharmony_ci    "ProgramUniform3f": 1125,
1162bf215546Sopenharmony_ci    "ProgramUniform3fv": 1126,
1163bf215546Sopenharmony_ci    "ProgramUniform3i": 1127,
1164bf215546Sopenharmony_ci    "ProgramUniform3iv": 1128,
1165bf215546Sopenharmony_ci    "ProgramUniform3ui": 1129,
1166bf215546Sopenharmony_ci    "ProgramUniform3uiv": 1130,
1167bf215546Sopenharmony_ci    "ProgramUniform4d": 1131,
1168bf215546Sopenharmony_ci    "ProgramUniform4dv": 1132,
1169bf215546Sopenharmony_ci    "ProgramUniform4f": 1133,
1170bf215546Sopenharmony_ci    "ProgramUniform4fv": 1134,
1171bf215546Sopenharmony_ci    "ProgramUniform4i": 1135,
1172bf215546Sopenharmony_ci    "ProgramUniform4iv": 1136,
1173bf215546Sopenharmony_ci    "ProgramUniform4ui": 1137,
1174bf215546Sopenharmony_ci    "ProgramUniform4uiv": 1138,
1175bf215546Sopenharmony_ci    "ProgramUniformMatrix2dv": 1139,
1176bf215546Sopenharmony_ci    "ProgramUniformMatrix2fv": 1140,
1177bf215546Sopenharmony_ci    "ProgramUniformMatrix2x3dv": 1141,
1178bf215546Sopenharmony_ci    "ProgramUniformMatrix2x3fv": 1142,
1179bf215546Sopenharmony_ci    "ProgramUniformMatrix2x4dv": 1143,
1180bf215546Sopenharmony_ci    "ProgramUniformMatrix2x4fv": 1144,
1181bf215546Sopenharmony_ci    "ProgramUniformMatrix3dv": 1145,
1182bf215546Sopenharmony_ci    "ProgramUniformMatrix3fv": 1146,
1183bf215546Sopenharmony_ci    "ProgramUniformMatrix3x2dv": 1147,
1184bf215546Sopenharmony_ci    "ProgramUniformMatrix3x2fv": 1148,
1185bf215546Sopenharmony_ci    "ProgramUniformMatrix3x4dv": 1149,
1186bf215546Sopenharmony_ci    "ProgramUniformMatrix3x4fv": 1150,
1187bf215546Sopenharmony_ci    "ProgramUniformMatrix4dv": 1151,
1188bf215546Sopenharmony_ci    "ProgramUniformMatrix4fv": 1152,
1189bf215546Sopenharmony_ci    "ProgramUniformMatrix4x2dv": 1153,
1190bf215546Sopenharmony_ci    "ProgramUniformMatrix4x2fv": 1154,
1191bf215546Sopenharmony_ci    "ProgramUniformMatrix4x3dv": 1155,
1192bf215546Sopenharmony_ci    "ProgramUniformMatrix4x3fv": 1156,
1193bf215546Sopenharmony_ci    "UnlockArraysEXT": 1157,
1194bf215546Sopenharmony_ci    "UseProgramStages": 1158,
1195bf215546Sopenharmony_ci    "ValidateProgramPipeline": 1159,
1196bf215546Sopenharmony_ci    "FramebufferTexture2DMultisampleEXT": 1160,
1197bf215546Sopenharmony_ci    "DebugMessageCallback": 1161,
1198bf215546Sopenharmony_ci    "DebugMessageControl": 1162,
1199bf215546Sopenharmony_ci    "DebugMessageInsert": 1163,
1200bf215546Sopenharmony_ci    "GetDebugMessageLog": 1164,
1201bf215546Sopenharmony_ci    "GetObjectLabel": 1165,
1202bf215546Sopenharmony_ci    "GetObjectPtrLabel": 1166,
1203bf215546Sopenharmony_ci    "ObjectLabel": 1167,
1204bf215546Sopenharmony_ci    "ObjectPtrLabel": 1168,
1205bf215546Sopenharmony_ci    "PopDebugGroup": 1169,
1206bf215546Sopenharmony_ci    "PushDebugGroup": 1170,
1207bf215546Sopenharmony_ci    "SecondaryColor3fEXT": 1171,
1208bf215546Sopenharmony_ci    "SecondaryColor3fvEXT": 1172,
1209bf215546Sopenharmony_ci    "MultiDrawElementsEXT": 1173,
1210bf215546Sopenharmony_ci    "FogCoordfEXT": 1174,
1211bf215546Sopenharmony_ci    "FogCoordfvEXT": 1175,
1212bf215546Sopenharmony_ci    "ResizeBuffersMESA": 1176,
1213bf215546Sopenharmony_ci    "WindowPos4dMESA": 1177,
1214bf215546Sopenharmony_ci    "WindowPos4dvMESA": 1178,
1215bf215546Sopenharmony_ci    "WindowPos4fMESA": 1179,
1216bf215546Sopenharmony_ci    "WindowPos4fvMESA": 1180,
1217bf215546Sopenharmony_ci    "WindowPos4iMESA": 1181,
1218bf215546Sopenharmony_ci    "WindowPos4ivMESA": 1182,
1219bf215546Sopenharmony_ci    "WindowPos4sMESA": 1183,
1220bf215546Sopenharmony_ci    "WindowPos4svMESA": 1184,
1221bf215546Sopenharmony_ci    "MultiModeDrawArraysIBM": 1185,
1222bf215546Sopenharmony_ci    "MultiModeDrawElementsIBM": 1186,
1223bf215546Sopenharmony_ci    "AreProgramsResidentNV": 1187,
1224bf215546Sopenharmony_ci    "ExecuteProgramNV": 1188,
1225bf215546Sopenharmony_ci    "GetProgramParameterdvNV": 1189,
1226bf215546Sopenharmony_ci    "GetProgramParameterfvNV": 1190,
1227bf215546Sopenharmony_ci    "GetProgramStringNV": 1191,
1228bf215546Sopenharmony_ci    "GetProgramivNV": 1192,
1229bf215546Sopenharmony_ci    "GetTrackMatrixivNV": 1193,
1230bf215546Sopenharmony_ci    "GetVertexAttribdvNV": 1194,
1231bf215546Sopenharmony_ci    "GetVertexAttribfvNV": 1195,
1232bf215546Sopenharmony_ci    "GetVertexAttribivNV": 1196,
1233bf215546Sopenharmony_ci    "LoadProgramNV": 1197,
1234bf215546Sopenharmony_ci    "ProgramParameters4dvNV": 1198,
1235bf215546Sopenharmony_ci    "ProgramParameters4fvNV": 1199,
1236bf215546Sopenharmony_ci    "RequestResidentProgramsNV": 1200,
1237bf215546Sopenharmony_ci    "TrackMatrixNV": 1201,
1238bf215546Sopenharmony_ci    "VertexAttrib1dNV": 1202,
1239bf215546Sopenharmony_ci    "VertexAttrib1dvNV": 1203,
1240bf215546Sopenharmony_ci    "VertexAttrib1fNV": 1204,
1241bf215546Sopenharmony_ci    "VertexAttrib1fvNV": 1205,
1242bf215546Sopenharmony_ci    "VertexAttrib1sNV": 1206,
1243bf215546Sopenharmony_ci    "VertexAttrib1svNV": 1207,
1244bf215546Sopenharmony_ci    "VertexAttrib2dNV": 1208,
1245bf215546Sopenharmony_ci    "VertexAttrib2dvNV": 1209,
1246bf215546Sopenharmony_ci    "VertexAttrib2fNV": 1210,
1247bf215546Sopenharmony_ci    "VertexAttrib2fvNV": 1211,
1248bf215546Sopenharmony_ci    "VertexAttrib2sNV": 1212,
1249bf215546Sopenharmony_ci    "VertexAttrib2svNV": 1213,
1250bf215546Sopenharmony_ci    "VertexAttrib3dNV": 1214,
1251bf215546Sopenharmony_ci    "VertexAttrib3dvNV": 1215,
1252bf215546Sopenharmony_ci    "VertexAttrib3fNV": 1216,
1253bf215546Sopenharmony_ci    "VertexAttrib3fvNV": 1217,
1254bf215546Sopenharmony_ci    "VertexAttrib3sNV": 1218,
1255bf215546Sopenharmony_ci    "VertexAttrib3svNV": 1219,
1256bf215546Sopenharmony_ci    "VertexAttrib4dNV": 1220,
1257bf215546Sopenharmony_ci    "VertexAttrib4dvNV": 1221,
1258bf215546Sopenharmony_ci    "VertexAttrib4fNV": 1222,
1259bf215546Sopenharmony_ci    "VertexAttrib4fvNV": 1223,
1260bf215546Sopenharmony_ci    "VertexAttrib4sNV": 1224,
1261bf215546Sopenharmony_ci    "VertexAttrib4svNV": 1225,
1262bf215546Sopenharmony_ci    "VertexAttrib4ubNV": 1226,
1263bf215546Sopenharmony_ci    "VertexAttrib4ubvNV": 1227,
1264bf215546Sopenharmony_ci    "VertexAttribPointerNV": 1228,
1265bf215546Sopenharmony_ci    "VertexAttribs1dvNV": 1229,
1266bf215546Sopenharmony_ci    "VertexAttribs1fvNV": 1230,
1267bf215546Sopenharmony_ci    "VertexAttribs1svNV": 1231,
1268bf215546Sopenharmony_ci    "VertexAttribs2dvNV": 1232,
1269bf215546Sopenharmony_ci    "VertexAttribs2fvNV": 1233,
1270bf215546Sopenharmony_ci    "VertexAttribs2svNV": 1234,
1271bf215546Sopenharmony_ci    "VertexAttribs3dvNV": 1235,
1272bf215546Sopenharmony_ci    "VertexAttribs3fvNV": 1236,
1273bf215546Sopenharmony_ci    "VertexAttribs3svNV": 1237,
1274bf215546Sopenharmony_ci    "VertexAttribs4dvNV": 1238,
1275bf215546Sopenharmony_ci    "VertexAttribs4fvNV": 1239,
1276bf215546Sopenharmony_ci    "VertexAttribs4svNV": 1240,
1277bf215546Sopenharmony_ci    "VertexAttribs4ubvNV": 1241,
1278bf215546Sopenharmony_ci    "GetTexBumpParameterfvATI": 1242,
1279bf215546Sopenharmony_ci    "GetTexBumpParameterivATI": 1243,
1280bf215546Sopenharmony_ci    "TexBumpParameterfvATI": 1244,
1281bf215546Sopenharmony_ci    "TexBumpParameterivATI": 1245,
1282bf215546Sopenharmony_ci    "AlphaFragmentOp1ATI": 1246,
1283bf215546Sopenharmony_ci    "AlphaFragmentOp2ATI": 1247,
1284bf215546Sopenharmony_ci    "AlphaFragmentOp3ATI": 1248,
1285bf215546Sopenharmony_ci    "BeginFragmentShaderATI": 1249,
1286bf215546Sopenharmony_ci    "BindFragmentShaderATI": 1250,
1287bf215546Sopenharmony_ci    "ColorFragmentOp1ATI": 1251,
1288bf215546Sopenharmony_ci    "ColorFragmentOp2ATI": 1252,
1289bf215546Sopenharmony_ci    "ColorFragmentOp3ATI": 1253,
1290bf215546Sopenharmony_ci    "DeleteFragmentShaderATI": 1254,
1291bf215546Sopenharmony_ci    "EndFragmentShaderATI": 1255,
1292bf215546Sopenharmony_ci    "GenFragmentShadersATI": 1256,
1293bf215546Sopenharmony_ci    "PassTexCoordATI": 1257,
1294bf215546Sopenharmony_ci    "SampleMapATI": 1258,
1295bf215546Sopenharmony_ci    "SetFragmentShaderConstantATI": 1259,
1296bf215546Sopenharmony_ci    "DepthRangeArrayfvOES": 1260,
1297bf215546Sopenharmony_ci    "DepthRangeIndexedfOES": 1261,
1298bf215546Sopenharmony_ci    "ActiveStencilFaceEXT": 1262,
1299bf215546Sopenharmony_ci    "GetProgramNamedParameterdvNV": 1263,
1300bf215546Sopenharmony_ci    "GetProgramNamedParameterfvNV": 1264,
1301bf215546Sopenharmony_ci    "ProgramNamedParameter4dNV": 1265,
1302bf215546Sopenharmony_ci    "ProgramNamedParameter4dvNV": 1266,
1303bf215546Sopenharmony_ci    "ProgramNamedParameter4fNV": 1267,
1304bf215546Sopenharmony_ci    "ProgramNamedParameter4fvNV": 1268,
1305bf215546Sopenharmony_ci    "PrimitiveRestartNV": 1269,
1306bf215546Sopenharmony_ci    "GetTexGenxvOES": 1270,
1307bf215546Sopenharmony_ci    "TexGenxOES": 1271,
1308bf215546Sopenharmony_ci    "TexGenxvOES": 1272,
1309bf215546Sopenharmony_ci    "DepthBoundsEXT": 1273,
1310bf215546Sopenharmony_ci    "BindFramebufferEXT": 1274,
1311bf215546Sopenharmony_ci    "BindRenderbufferEXT": 1275,
1312bf215546Sopenharmony_ci    "StringMarkerGREMEDY": 1276,
1313bf215546Sopenharmony_ci    "BufferParameteriAPPLE": 1277,
1314bf215546Sopenharmony_ci    "FlushMappedBufferRangeAPPLE": 1278,
1315bf215546Sopenharmony_ci    "VertexAttribI1iEXT": 1279,
1316bf215546Sopenharmony_ci    "VertexAttribI1uiEXT": 1280,
1317bf215546Sopenharmony_ci    "VertexAttribI2iEXT": 1281,
1318bf215546Sopenharmony_ci    "VertexAttribI2ivEXT": 1282,
1319bf215546Sopenharmony_ci    "VertexAttribI2uiEXT": 1283,
1320bf215546Sopenharmony_ci    "VertexAttribI2uivEXT": 1284,
1321bf215546Sopenharmony_ci    "VertexAttribI3iEXT": 1285,
1322bf215546Sopenharmony_ci    "VertexAttribI3ivEXT": 1286,
1323bf215546Sopenharmony_ci    "VertexAttribI3uiEXT": 1287,
1324bf215546Sopenharmony_ci    "VertexAttribI3uivEXT": 1288,
1325bf215546Sopenharmony_ci    "VertexAttribI4iEXT": 1289,
1326bf215546Sopenharmony_ci    "VertexAttribI4ivEXT": 1290,
1327bf215546Sopenharmony_ci    "VertexAttribI4uiEXT": 1291,
1328bf215546Sopenharmony_ci    "VertexAttribI4uivEXT": 1292,
1329bf215546Sopenharmony_ci    "ClearColorIiEXT": 1293,
1330bf215546Sopenharmony_ci    "ClearColorIuiEXT": 1294,
1331bf215546Sopenharmony_ci    "BindBufferOffsetEXT": 1295,
1332bf215546Sopenharmony_ci    "BeginPerfMonitorAMD": 1296,
1333bf215546Sopenharmony_ci    "DeletePerfMonitorsAMD": 1297,
1334bf215546Sopenharmony_ci    "EndPerfMonitorAMD": 1298,
1335bf215546Sopenharmony_ci    "GenPerfMonitorsAMD": 1299,
1336bf215546Sopenharmony_ci    "GetPerfMonitorCounterDataAMD": 1300,
1337bf215546Sopenharmony_ci    "GetPerfMonitorCounterInfoAMD": 1301,
1338bf215546Sopenharmony_ci    "GetPerfMonitorCounterStringAMD": 1302,
1339bf215546Sopenharmony_ci    "GetPerfMonitorCountersAMD": 1303,
1340bf215546Sopenharmony_ci    "GetPerfMonitorGroupStringAMD": 1304,
1341bf215546Sopenharmony_ci    "GetPerfMonitorGroupsAMD": 1305,
1342bf215546Sopenharmony_ci    "SelectPerfMonitorCountersAMD": 1306,
1343bf215546Sopenharmony_ci    "GetObjectParameterivAPPLE": 1307,
1344bf215546Sopenharmony_ci    "ObjectPurgeableAPPLE": 1308,
1345bf215546Sopenharmony_ci    "ObjectUnpurgeableAPPLE": 1309,
1346bf215546Sopenharmony_ci    "ActiveProgramEXT": 1310,
1347bf215546Sopenharmony_ci    "CreateShaderProgramEXT": 1311,
1348bf215546Sopenharmony_ci    "UseShaderProgramEXT": 1312,
1349bf215546Sopenharmony_ci    "TextureBarrierNV": 1313,
1350bf215546Sopenharmony_ci    "VDPAUFiniNV": 1314,
1351bf215546Sopenharmony_ci    "VDPAUGetSurfaceivNV": 1315,
1352bf215546Sopenharmony_ci    "VDPAUInitNV": 1316,
1353bf215546Sopenharmony_ci    "VDPAUIsSurfaceNV": 1317,
1354bf215546Sopenharmony_ci    "VDPAUMapSurfacesNV": 1318,
1355bf215546Sopenharmony_ci    "VDPAURegisterOutputSurfaceNV": 1319,
1356bf215546Sopenharmony_ci    "VDPAURegisterVideoSurfaceNV": 1320,
1357bf215546Sopenharmony_ci    "VDPAUSurfaceAccessNV": 1321,
1358bf215546Sopenharmony_ci    "VDPAUUnmapSurfacesNV": 1322,
1359bf215546Sopenharmony_ci    "VDPAUUnregisterSurfaceNV": 1323,
1360bf215546Sopenharmony_ci    "BeginPerfQueryINTEL": 1324,
1361bf215546Sopenharmony_ci    "CreatePerfQueryINTEL": 1325,
1362bf215546Sopenharmony_ci    "DeletePerfQueryINTEL": 1326,
1363bf215546Sopenharmony_ci    "EndPerfQueryINTEL": 1327,
1364bf215546Sopenharmony_ci    "GetFirstPerfQueryIdINTEL": 1328,
1365bf215546Sopenharmony_ci    "GetNextPerfQueryIdINTEL": 1329,
1366bf215546Sopenharmony_ci    "GetPerfCounterInfoINTEL": 1330,
1367bf215546Sopenharmony_ci    "GetPerfQueryDataINTEL": 1331,
1368bf215546Sopenharmony_ci    "GetPerfQueryIdByNameINTEL": 1332,
1369bf215546Sopenharmony_ci    "GetPerfQueryInfoINTEL": 1333,
1370bf215546Sopenharmony_ci    "PolygonOffsetClampEXT": 1334,
1371bf215546Sopenharmony_ci    "SubpixelPrecisionBiasNV": 1335,
1372bf215546Sopenharmony_ci    "ConservativeRasterParameterfNV": 1336,
1373bf215546Sopenharmony_ci    "ConservativeRasterParameteriNV": 1337,
1374bf215546Sopenharmony_ci    "WindowRectanglesEXT": 1338,
1375bf215546Sopenharmony_ci    "BufferStorageMemEXT": 1339,
1376bf215546Sopenharmony_ci    "CreateMemoryObjectsEXT": 1340,
1377bf215546Sopenharmony_ci    "DeleteMemoryObjectsEXT": 1341,
1378bf215546Sopenharmony_ci    "DeleteSemaphoresEXT": 1342,
1379bf215546Sopenharmony_ci    "GenSemaphoresEXT": 1343,
1380bf215546Sopenharmony_ci    "GetMemoryObjectParameterivEXT": 1344,
1381bf215546Sopenharmony_ci    "GetSemaphoreParameterui64vEXT": 1345,
1382bf215546Sopenharmony_ci    "GetUnsignedBytei_vEXT": 1346,
1383bf215546Sopenharmony_ci    "GetUnsignedBytevEXT": 1347,
1384bf215546Sopenharmony_ci    "IsMemoryObjectEXT": 1348,
1385bf215546Sopenharmony_ci    "IsSemaphoreEXT": 1349,
1386bf215546Sopenharmony_ci    "MemoryObjectParameterivEXT": 1350,
1387bf215546Sopenharmony_ci    "NamedBufferStorageMemEXT": 1351,
1388bf215546Sopenharmony_ci    "SemaphoreParameterui64vEXT": 1352,
1389bf215546Sopenharmony_ci    "SignalSemaphoreEXT": 1353,
1390bf215546Sopenharmony_ci    "TexStorageMem1DEXT": 1354,
1391bf215546Sopenharmony_ci    "TexStorageMem2DEXT": 1355,
1392bf215546Sopenharmony_ci    "TexStorageMem2DMultisampleEXT": 1356,
1393bf215546Sopenharmony_ci    "TexStorageMem3DEXT": 1357,
1394bf215546Sopenharmony_ci    "TexStorageMem3DMultisampleEXT": 1358,
1395bf215546Sopenharmony_ci    "TextureStorageMem1DEXT": 1359,
1396bf215546Sopenharmony_ci    "TextureStorageMem2DEXT": 1360,
1397bf215546Sopenharmony_ci    "TextureStorageMem2DMultisampleEXT": 1361,
1398bf215546Sopenharmony_ci    "TextureStorageMem3DEXT": 1362,
1399bf215546Sopenharmony_ci    "TextureStorageMem3DMultisampleEXT": 1363,
1400bf215546Sopenharmony_ci    "WaitSemaphoreEXT": 1364,
1401bf215546Sopenharmony_ci    "ImportMemoryFdEXT": 1365,
1402bf215546Sopenharmony_ci    "ImportSemaphoreFdEXT": 1366,
1403bf215546Sopenharmony_ci    "FramebufferFetchBarrierEXT": 1367,
1404bf215546Sopenharmony_ci    "NamedRenderbufferStorageMultisampleAdvancedAMD": 1368,
1405bf215546Sopenharmony_ci    "RenderbufferStorageMultisampleAdvancedAMD": 1369,
1406bf215546Sopenharmony_ci    "StencilFuncSeparateATI": 1370,
1407bf215546Sopenharmony_ci    "ProgramEnvParameters4fvEXT": 1371,
1408bf215546Sopenharmony_ci    "ProgramLocalParameters4fvEXT": 1372,
1409bf215546Sopenharmony_ci    "EGLImageTargetRenderbufferStorageOES": 1373,
1410bf215546Sopenharmony_ci    "EGLImageTargetTexture2DOES": 1374,
1411bf215546Sopenharmony_ci    "AlphaFuncx": 1375,
1412bf215546Sopenharmony_ci    "ClearColorx": 1376,
1413bf215546Sopenharmony_ci    "ClearDepthx": 1377,
1414bf215546Sopenharmony_ci    "Color4x": 1378,
1415bf215546Sopenharmony_ci    "DepthRangex": 1379,
1416bf215546Sopenharmony_ci    "Fogx": 1380,
1417bf215546Sopenharmony_ci    "Fogxv": 1381,
1418bf215546Sopenharmony_ci    "Frustumf": 1382,
1419bf215546Sopenharmony_ci    "Frustumx": 1383,
1420bf215546Sopenharmony_ci    "LightModelx": 1384,
1421bf215546Sopenharmony_ci    "LightModelxv": 1385,
1422bf215546Sopenharmony_ci    "Lightx": 1386,
1423bf215546Sopenharmony_ci    "Lightxv": 1387,
1424bf215546Sopenharmony_ci    "LineWidthx": 1388,
1425bf215546Sopenharmony_ci    "LoadMatrixx": 1389,
1426bf215546Sopenharmony_ci    "Materialx": 1390,
1427bf215546Sopenharmony_ci    "Materialxv": 1391,
1428bf215546Sopenharmony_ci    "MultMatrixx": 1392,
1429bf215546Sopenharmony_ci    "MultiTexCoord4x": 1393,
1430bf215546Sopenharmony_ci    "Normal3x": 1394,
1431bf215546Sopenharmony_ci    "Orthof": 1395,
1432bf215546Sopenharmony_ci    "Orthox": 1396,
1433bf215546Sopenharmony_ci    "PointSizex": 1397,
1434bf215546Sopenharmony_ci    "PolygonOffsetx": 1398,
1435bf215546Sopenharmony_ci    "Rotatex": 1399,
1436bf215546Sopenharmony_ci    "SampleCoveragex": 1400,
1437bf215546Sopenharmony_ci    "Scalex": 1401,
1438bf215546Sopenharmony_ci    "TexEnvx": 1402,
1439bf215546Sopenharmony_ci    "TexEnvxv": 1403,
1440bf215546Sopenharmony_ci    "TexParameterx": 1404,
1441bf215546Sopenharmony_ci    "Translatex": 1405,
1442bf215546Sopenharmony_ci    "ClipPlanef": 1406,
1443bf215546Sopenharmony_ci    "ClipPlanex": 1407,
1444bf215546Sopenharmony_ci    "GetClipPlanef": 1408,
1445bf215546Sopenharmony_ci    "GetClipPlanex": 1409,
1446bf215546Sopenharmony_ci    "GetFixedv": 1410,
1447bf215546Sopenharmony_ci    "GetLightxv": 1411,
1448bf215546Sopenharmony_ci    "GetMaterialxv": 1412,
1449bf215546Sopenharmony_ci    "GetTexEnvxv": 1413,
1450bf215546Sopenharmony_ci    "GetTexParameterxv": 1414,
1451bf215546Sopenharmony_ci    "PointParameterx": 1415,
1452bf215546Sopenharmony_ci    "PointParameterxv": 1416,
1453bf215546Sopenharmony_ci    "TexParameterxv": 1417,
1454bf215546Sopenharmony_ci    "BlendBarrier": 1418,
1455bf215546Sopenharmony_ci    "PrimitiveBoundingBox": 1419,
1456bf215546Sopenharmony_ci    "MaxShaderCompilerThreadsKHR": 1420,
1457bf215546Sopenharmony_ci    "MatrixLoadfEXT": 1421,
1458bf215546Sopenharmony_ci    "MatrixLoaddEXT": 1422,
1459bf215546Sopenharmony_ci    "MatrixMultfEXT": 1423,
1460bf215546Sopenharmony_ci    "MatrixMultdEXT": 1424,
1461bf215546Sopenharmony_ci    "MatrixLoadIdentityEXT": 1425,
1462bf215546Sopenharmony_ci    "MatrixRotatefEXT": 1426,
1463bf215546Sopenharmony_ci    "MatrixRotatedEXT": 1427,
1464bf215546Sopenharmony_ci    "MatrixScalefEXT": 1428,
1465bf215546Sopenharmony_ci    "MatrixScaledEXT": 1429,
1466bf215546Sopenharmony_ci    "MatrixTranslatefEXT": 1430,
1467bf215546Sopenharmony_ci    "MatrixTranslatedEXT": 1431,
1468bf215546Sopenharmony_ci    "MatrixOrthoEXT": 1432,
1469bf215546Sopenharmony_ci    "MatrixFrustumEXT": 1433,
1470bf215546Sopenharmony_ci    "MatrixPushEXT": 1434,
1471bf215546Sopenharmony_ci    "MatrixPopEXT": 1435,
1472bf215546Sopenharmony_ci    "MatrixLoadTransposefEXT": 1436,
1473bf215546Sopenharmony_ci    "MatrixLoadTransposedEXT": 1437,
1474bf215546Sopenharmony_ci    "MatrixMultTransposefEXT": 1438,
1475bf215546Sopenharmony_ci    "MatrixMultTransposedEXT": 1439,
1476bf215546Sopenharmony_ci    "BindMultiTextureEXT": 1440,
1477bf215546Sopenharmony_ci    "NamedBufferDataEXT": 1441,
1478bf215546Sopenharmony_ci    "NamedBufferSubDataEXT": 1442,
1479bf215546Sopenharmony_ci    "NamedBufferStorageEXT": 1443,
1480bf215546Sopenharmony_ci    "MapNamedBufferRangeEXT": 1444,
1481bf215546Sopenharmony_ci    "TextureImage1DEXT": 1445,
1482bf215546Sopenharmony_ci    "TextureImage2DEXT": 1446,
1483bf215546Sopenharmony_ci    "TextureImage3DEXT": 1447,
1484bf215546Sopenharmony_ci    "TextureSubImage1DEXT": 1448,
1485bf215546Sopenharmony_ci    "TextureSubImage2DEXT": 1449,
1486bf215546Sopenharmony_ci    "TextureSubImage3DEXT": 1450,
1487bf215546Sopenharmony_ci    "CopyTextureImage1DEXT": 1451,
1488bf215546Sopenharmony_ci    "CopyTextureImage2DEXT": 1452,
1489bf215546Sopenharmony_ci    "CopyTextureSubImage1DEXT": 1453,
1490bf215546Sopenharmony_ci    "CopyTextureSubImage2DEXT": 1454,
1491bf215546Sopenharmony_ci    "CopyTextureSubImage3DEXT": 1455,
1492bf215546Sopenharmony_ci    "MapNamedBufferEXT": 1456,
1493bf215546Sopenharmony_ci    "GetTextureParameterivEXT": 1457,
1494bf215546Sopenharmony_ci    "GetTextureParameterfvEXT": 1458,
1495bf215546Sopenharmony_ci    "TextureParameteriEXT": 1459,
1496bf215546Sopenharmony_ci    "TextureParameterivEXT": 1460,
1497bf215546Sopenharmony_ci    "TextureParameterfEXT": 1461,
1498bf215546Sopenharmony_ci    "TextureParameterfvEXT": 1462,
1499bf215546Sopenharmony_ci    "GetTextureImageEXT": 1463,
1500bf215546Sopenharmony_ci    "GetTextureLevelParameterivEXT": 1464,
1501bf215546Sopenharmony_ci    "GetTextureLevelParameterfvEXT": 1465,
1502bf215546Sopenharmony_ci    "GetNamedBufferSubDataEXT": 1466,
1503bf215546Sopenharmony_ci    "GetNamedBufferPointervEXT": 1467,
1504bf215546Sopenharmony_ci    "GetNamedBufferParameterivEXT": 1468,
1505bf215546Sopenharmony_ci    "FlushMappedNamedBufferRangeEXT": 1469,
1506bf215546Sopenharmony_ci    "FramebufferDrawBufferEXT": 1470,
1507bf215546Sopenharmony_ci    "FramebufferDrawBuffersEXT": 1471,
1508bf215546Sopenharmony_ci    "FramebufferReadBufferEXT": 1472,
1509bf215546Sopenharmony_ci    "GetFramebufferParameterivEXT": 1473,
1510bf215546Sopenharmony_ci    "CheckNamedFramebufferStatusEXT": 1474,
1511bf215546Sopenharmony_ci    "NamedFramebufferTexture1DEXT": 1475,
1512bf215546Sopenharmony_ci    "NamedFramebufferTexture2DEXT": 1476,
1513bf215546Sopenharmony_ci    "NamedFramebufferTexture3DEXT": 1477,
1514bf215546Sopenharmony_ci    "NamedFramebufferRenderbufferEXT": 1478,
1515bf215546Sopenharmony_ci    "GetNamedFramebufferAttachmentParameterivEXT": 1479,
1516bf215546Sopenharmony_ci    "EnableClientStateiEXT": 1480,
1517bf215546Sopenharmony_ci    "DisableClientStateiEXT": 1481,
1518bf215546Sopenharmony_ci    "GetPointerIndexedvEXT": 1482,
1519bf215546Sopenharmony_ci    "MultiTexEnviEXT": 1483,
1520bf215546Sopenharmony_ci    "MultiTexEnvivEXT": 1484,
1521bf215546Sopenharmony_ci    "MultiTexEnvfEXT": 1485,
1522bf215546Sopenharmony_ci    "MultiTexEnvfvEXT": 1486,
1523bf215546Sopenharmony_ci    "GetMultiTexEnvivEXT": 1487,
1524bf215546Sopenharmony_ci    "GetMultiTexEnvfvEXT": 1488,
1525bf215546Sopenharmony_ci    "MultiTexParameteriEXT": 1489,
1526bf215546Sopenharmony_ci    "MultiTexParameterivEXT": 1490,
1527bf215546Sopenharmony_ci    "MultiTexParameterfEXT": 1491,
1528bf215546Sopenharmony_ci    "MultiTexParameterfvEXT": 1492,
1529bf215546Sopenharmony_ci    "GetMultiTexImageEXT": 1493,
1530bf215546Sopenharmony_ci    "MultiTexImage1DEXT": 1494,
1531bf215546Sopenharmony_ci    "MultiTexImage2DEXT": 1495,
1532bf215546Sopenharmony_ci    "MultiTexImage3DEXT": 1496,
1533bf215546Sopenharmony_ci    "MultiTexSubImage1DEXT": 1497,
1534bf215546Sopenharmony_ci    "MultiTexSubImage2DEXT": 1498,
1535bf215546Sopenharmony_ci    "MultiTexSubImage3DEXT": 1499,
1536bf215546Sopenharmony_ci    "GetMultiTexParameterivEXT": 1500,
1537bf215546Sopenharmony_ci    "GetMultiTexParameterfvEXT": 1501,
1538bf215546Sopenharmony_ci    "CopyMultiTexImage1DEXT": 1502,
1539bf215546Sopenharmony_ci    "CopyMultiTexImage2DEXT": 1503,
1540bf215546Sopenharmony_ci    "CopyMultiTexSubImage1DEXT": 1504,
1541bf215546Sopenharmony_ci    "CopyMultiTexSubImage2DEXT": 1505,
1542bf215546Sopenharmony_ci    "CopyMultiTexSubImage3DEXT": 1506,
1543bf215546Sopenharmony_ci    "MultiTexGendEXT": 1507,
1544bf215546Sopenharmony_ci    "MultiTexGendvEXT": 1508,
1545bf215546Sopenharmony_ci    "MultiTexGenfEXT": 1509,
1546bf215546Sopenharmony_ci    "MultiTexGenfvEXT": 1510,
1547bf215546Sopenharmony_ci    "MultiTexGeniEXT": 1511,
1548bf215546Sopenharmony_ci    "MultiTexGenivEXT": 1512,
1549bf215546Sopenharmony_ci    "GetMultiTexGendvEXT": 1513,
1550bf215546Sopenharmony_ci    "GetMultiTexGenfvEXT": 1514,
1551bf215546Sopenharmony_ci    "GetMultiTexGenivEXT": 1515,
1552bf215546Sopenharmony_ci    "MultiTexCoordPointerEXT": 1516,
1553bf215546Sopenharmony_ci    "BindImageTextureEXT": 1517,
1554bf215546Sopenharmony_ci    "CompressedTextureImage1DEXT": 1518,
1555bf215546Sopenharmony_ci    "CompressedTextureImage2DEXT": 1519,
1556bf215546Sopenharmony_ci    "CompressedTextureImage3DEXT": 1520,
1557bf215546Sopenharmony_ci    "CompressedTextureSubImage1DEXT": 1521,
1558bf215546Sopenharmony_ci    "CompressedTextureSubImage2DEXT": 1522,
1559bf215546Sopenharmony_ci    "CompressedTextureSubImage3DEXT": 1523,
1560bf215546Sopenharmony_ci    "GetCompressedTextureImageEXT": 1524,
1561bf215546Sopenharmony_ci    "CompressedMultiTexImage1DEXT": 1525,
1562bf215546Sopenharmony_ci    "CompressedMultiTexImage2DEXT": 1526,
1563bf215546Sopenharmony_ci    "CompressedMultiTexImage3DEXT": 1527,
1564bf215546Sopenharmony_ci    "CompressedMultiTexSubImage1DEXT": 1528,
1565bf215546Sopenharmony_ci    "CompressedMultiTexSubImage2DEXT": 1529,
1566bf215546Sopenharmony_ci    "CompressedMultiTexSubImage3DEXT": 1530,
1567bf215546Sopenharmony_ci    "GetCompressedMultiTexImageEXT": 1531,
1568bf215546Sopenharmony_ci    "GetMultiTexLevelParameterivEXT": 1532,
1569bf215546Sopenharmony_ci    "GetMultiTexLevelParameterfvEXT": 1533,
1570bf215546Sopenharmony_ci    "FramebufferParameteriMESA": 1534,
1571bf215546Sopenharmony_ci    "GetFramebufferParameterivMESA": 1535,
1572bf215546Sopenharmony_ci    "NamedRenderbufferStorageEXT": 1536,
1573bf215546Sopenharmony_ci    "GetNamedRenderbufferParameterivEXT": 1537,
1574bf215546Sopenharmony_ci    "ClientAttribDefaultEXT": 1538,
1575bf215546Sopenharmony_ci    "PushClientAttribDefaultEXT": 1539,
1576bf215546Sopenharmony_ci    "NamedProgramStringEXT": 1540,
1577bf215546Sopenharmony_ci    "GetNamedProgramStringEXT": 1541,
1578bf215546Sopenharmony_ci    "NamedProgramLocalParameter4fEXT": 1542,
1579bf215546Sopenharmony_ci    "NamedProgramLocalParameter4fvEXT": 1543,
1580bf215546Sopenharmony_ci    "GetNamedProgramLocalParameterfvEXT": 1544,
1581bf215546Sopenharmony_ci    "NamedProgramLocalParameter4dEXT": 1545,
1582bf215546Sopenharmony_ci    "NamedProgramLocalParameter4dvEXT": 1546,
1583bf215546Sopenharmony_ci    "GetNamedProgramLocalParameterdvEXT": 1547,
1584bf215546Sopenharmony_ci    "GetNamedProgramivEXT": 1548,
1585bf215546Sopenharmony_ci    "TextureBufferEXT": 1549,
1586bf215546Sopenharmony_ci    "MultiTexBufferEXT": 1550,
1587bf215546Sopenharmony_ci    "TextureParameterIivEXT": 1551,
1588bf215546Sopenharmony_ci    "TextureParameterIuivEXT": 1552,
1589bf215546Sopenharmony_ci    "GetTextureParameterIivEXT": 1553,
1590bf215546Sopenharmony_ci    "GetTextureParameterIuivEXT": 1554,
1591bf215546Sopenharmony_ci    "MultiTexParameterIivEXT": 1555,
1592bf215546Sopenharmony_ci    "MultiTexParameterIuivEXT": 1556,
1593bf215546Sopenharmony_ci    "GetMultiTexParameterIivEXT": 1557,
1594bf215546Sopenharmony_ci    "GetMultiTexParameterIuivEXT": 1558,
1595bf215546Sopenharmony_ci    "NamedProgramLocalParameters4fvEXT": 1559,
1596bf215546Sopenharmony_ci    "GenerateTextureMipmapEXT": 1560,
1597bf215546Sopenharmony_ci    "GenerateMultiTexMipmapEXT": 1561,
1598bf215546Sopenharmony_ci    "NamedRenderbufferStorageMultisampleEXT": 1562,
1599bf215546Sopenharmony_ci    "NamedCopyBufferSubDataEXT": 1563,
1600bf215546Sopenharmony_ci    "VertexArrayVertexOffsetEXT": 1564,
1601bf215546Sopenharmony_ci    "VertexArrayColorOffsetEXT": 1565,
1602bf215546Sopenharmony_ci    "VertexArrayEdgeFlagOffsetEXT": 1566,
1603bf215546Sopenharmony_ci    "VertexArrayIndexOffsetEXT": 1567,
1604bf215546Sopenharmony_ci    "VertexArrayNormalOffsetEXT": 1568,
1605bf215546Sopenharmony_ci    "VertexArrayTexCoordOffsetEXT": 1569,
1606bf215546Sopenharmony_ci    "VertexArrayMultiTexCoordOffsetEXT": 1570,
1607bf215546Sopenharmony_ci    "VertexArrayFogCoordOffsetEXT": 1571,
1608bf215546Sopenharmony_ci    "VertexArraySecondaryColorOffsetEXT": 1572,
1609bf215546Sopenharmony_ci    "VertexArrayVertexAttribOffsetEXT": 1573,
1610bf215546Sopenharmony_ci    "VertexArrayVertexAttribIOffsetEXT": 1574,
1611bf215546Sopenharmony_ci    "EnableVertexArrayEXT": 1575,
1612bf215546Sopenharmony_ci    "DisableVertexArrayEXT": 1576,
1613bf215546Sopenharmony_ci    "EnableVertexArrayAttribEXT": 1577,
1614bf215546Sopenharmony_ci    "DisableVertexArrayAttribEXT": 1578,
1615bf215546Sopenharmony_ci    "GetVertexArrayIntegervEXT": 1579,
1616bf215546Sopenharmony_ci    "GetVertexArrayPointervEXT": 1580,
1617bf215546Sopenharmony_ci    "GetVertexArrayIntegeri_vEXT": 1581,
1618bf215546Sopenharmony_ci    "GetVertexArrayPointeri_vEXT": 1582,
1619bf215546Sopenharmony_ci    "ClearNamedBufferDataEXT": 1583,
1620bf215546Sopenharmony_ci    "ClearNamedBufferSubDataEXT": 1584,
1621bf215546Sopenharmony_ci    "NamedFramebufferParameteriEXT": 1585,
1622bf215546Sopenharmony_ci    "GetNamedFramebufferParameterivEXT": 1586,
1623bf215546Sopenharmony_ci    "VertexArrayVertexAttribLOffsetEXT": 1587,
1624bf215546Sopenharmony_ci    "VertexArrayVertexAttribDivisorEXT": 1588,
1625bf215546Sopenharmony_ci    "TextureBufferRangeEXT": 1589,
1626bf215546Sopenharmony_ci    "TextureStorage2DMultisampleEXT": 1590,
1627bf215546Sopenharmony_ci    "TextureStorage3DMultisampleEXT": 1591,
1628bf215546Sopenharmony_ci    "VertexArrayBindVertexBufferEXT": 1592,
1629bf215546Sopenharmony_ci    "VertexArrayVertexAttribFormatEXT": 1593,
1630bf215546Sopenharmony_ci    "VertexArrayVertexAttribIFormatEXT": 1594,
1631bf215546Sopenharmony_ci    "VertexArrayVertexAttribLFormatEXT": 1595,
1632bf215546Sopenharmony_ci    "VertexArrayVertexAttribBindingEXT": 1596,
1633bf215546Sopenharmony_ci    "VertexArrayVertexBindingDivisorEXT": 1597,
1634bf215546Sopenharmony_ci    "NamedBufferPageCommitmentEXT": 1598,
1635bf215546Sopenharmony_ci    "NamedStringARB": 1599,
1636bf215546Sopenharmony_ci    "DeleteNamedStringARB": 1600,
1637bf215546Sopenharmony_ci    "CompileShaderIncludeARB": 1601,
1638bf215546Sopenharmony_ci    "IsNamedStringARB": 1602,
1639bf215546Sopenharmony_ci    "GetNamedStringARB": 1603,
1640bf215546Sopenharmony_ci    "GetNamedStringivARB": 1604,
1641bf215546Sopenharmony_ci    "EGLImageTargetTexStorageEXT" : 1605,
1642bf215546Sopenharmony_ci    "EGLImageTargetTextureStorageEXT" : 1606,
1643bf215546Sopenharmony_ci    "CopyImageSubDataNV": 1607,
1644bf215546Sopenharmony_ci    "ViewportSwizzleNV": 1608,
1645bf215546Sopenharmony_ci    "AlphaToCoverageDitherControlNV": 1609,
1646bf215546Sopenharmony_ci    "InternalBufferSubDataCopyMESA": 1610,
1647bf215546Sopenharmony_ci    "Vertex2hNV": 1611,
1648bf215546Sopenharmony_ci    "Vertex2hvNV": 1612,
1649bf215546Sopenharmony_ci    "Vertex3hNV": 1613,
1650bf215546Sopenharmony_ci    "Vertex3hvNV": 1614,
1651bf215546Sopenharmony_ci    "Vertex4hNV": 1615,
1652bf215546Sopenharmony_ci    "Vertex4hvNV": 1616,
1653bf215546Sopenharmony_ci    "Normal3hNV": 1617,
1654bf215546Sopenharmony_ci    "Normal3hvNV": 1618,
1655bf215546Sopenharmony_ci    "Color3hNV": 1619,
1656bf215546Sopenharmony_ci    "Color3hvNV": 1620,
1657bf215546Sopenharmony_ci    "Color4hNV": 1621,
1658bf215546Sopenharmony_ci    "Color4hvNV": 1622,
1659bf215546Sopenharmony_ci    "TexCoord1hNV": 1623,
1660bf215546Sopenharmony_ci    "TexCoord1hvNV": 1624,
1661bf215546Sopenharmony_ci    "TexCoord2hNV": 1625,
1662bf215546Sopenharmony_ci    "TexCoord2hvNV": 1626,
1663bf215546Sopenharmony_ci    "TexCoord3hNV": 1627,
1664bf215546Sopenharmony_ci    "TexCoord3hvNV": 1628,
1665bf215546Sopenharmony_ci    "TexCoord4hNV": 1629,
1666bf215546Sopenharmony_ci    "TexCoord4hvNV": 1630,
1667bf215546Sopenharmony_ci    "MultiTexCoord1hNV": 1631,
1668bf215546Sopenharmony_ci    "MultiTexCoord1hvNV": 1632,
1669bf215546Sopenharmony_ci    "MultiTexCoord2hNV": 1633,
1670bf215546Sopenharmony_ci    "MultiTexCoord2hvNV": 1634,
1671bf215546Sopenharmony_ci    "MultiTexCoord3hNV": 1635,
1672bf215546Sopenharmony_ci    "MultiTexCoord3hvNV": 1636,
1673bf215546Sopenharmony_ci    "MultiTexCoord4hNV": 1637,
1674bf215546Sopenharmony_ci    "MultiTexCoord4hvNV": 1638,
1675bf215546Sopenharmony_ci    "FogCoordhNV": 1639,
1676bf215546Sopenharmony_ci    "FogCoordhvNV": 1640,
1677bf215546Sopenharmony_ci    "SecondaryColor3hNV": 1641,
1678bf215546Sopenharmony_ci    "SecondaryColor3hvNV": 1642,
1679bf215546Sopenharmony_ci    "InternalSetError": 1643,
1680bf215546Sopenharmony_ci    "VertexAttrib1hNV": 1644,
1681bf215546Sopenharmony_ci    "VertexAttrib1hvNV": 1645,
1682bf215546Sopenharmony_ci    "VertexAttrib2hNV": 1646,
1683bf215546Sopenharmony_ci    "VertexAttrib2hvNV": 1647,
1684bf215546Sopenharmony_ci    "VertexAttrib3hNV": 1648,
1685bf215546Sopenharmony_ci    "VertexAttrib3hvNV": 1649,
1686bf215546Sopenharmony_ci    "VertexAttrib4hNV": 1650,
1687bf215546Sopenharmony_ci    "VertexAttrib4hvNV": 1651,
1688bf215546Sopenharmony_ci    "VertexAttribs1hvNV": 1652,
1689bf215546Sopenharmony_ci    "VertexAttribs2hvNV": 1653,
1690bf215546Sopenharmony_ci    "VertexAttribs3hvNV": 1654,
1691bf215546Sopenharmony_ci    "VertexAttribs4hvNV": 1655,
1692bf215546Sopenharmony_ci    "TexPageCommitmentARB": 1656,
1693bf215546Sopenharmony_ci    "TexturePageCommitmentEXT": 1657,
1694bf215546Sopenharmony_ci    "ImportMemoryWin32HandleEXT": 1658,
1695bf215546Sopenharmony_ci    "ImportSemaphoreWin32HandleEXT": 1659,
1696bf215546Sopenharmony_ci    "ImportMemoryWin32NameEXT": 1660,
1697bf215546Sopenharmony_ci    "ImportSemaphoreWin32NameEXT": 1661,
1698bf215546Sopenharmony_ci}
1699bf215546Sopenharmony_ci
1700bf215546Sopenharmony_cifunctions = [
1701bf215546Sopenharmony_ci    "Accum",
1702bf215546Sopenharmony_ci    "ActiveShaderProgram",
1703bf215546Sopenharmony_ci    "ActiveTexture",
1704bf215546Sopenharmony_ci    "ActiveTextureARB",
1705bf215546Sopenharmony_ci    "AlphaFunc",
1706bf215546Sopenharmony_ci    "AlphaFuncx",
1707bf215546Sopenharmony_ci    "AreTexturesResident",
1708bf215546Sopenharmony_ci    "AreTexturesResidentEXT",
1709bf215546Sopenharmony_ci    "ArrayElement",
1710bf215546Sopenharmony_ci    "ArrayElementEXT",
1711bf215546Sopenharmony_ci    "AttachObjectARB",
1712bf215546Sopenharmony_ci    "AttachShader",
1713bf215546Sopenharmony_ci    "Begin",
1714bf215546Sopenharmony_ci    "BeginConditionalRender",
1715bf215546Sopenharmony_ci    "BeginConditionalRenderNV",
1716bf215546Sopenharmony_ci    "BeginQuery",
1717bf215546Sopenharmony_ci    "BeginQueryARB",
1718bf215546Sopenharmony_ci    "BeginQueryIndexed",
1719bf215546Sopenharmony_ci    "BeginTransformFeedback",
1720bf215546Sopenharmony_ci    "BindAttribLocation",
1721bf215546Sopenharmony_ci    "BindAttribLocationARB",
1722bf215546Sopenharmony_ci    "BindBuffer",
1723bf215546Sopenharmony_ci    "BindBufferARB",
1724bf215546Sopenharmony_ci    "BindBufferBase",
1725bf215546Sopenharmony_ci    "BindBufferRange",
1726bf215546Sopenharmony_ci    "BindBuffersBase",
1727bf215546Sopenharmony_ci    "BindBuffersRange",
1728bf215546Sopenharmony_ci    "BindFragDataLocation",
1729bf215546Sopenharmony_ci    "BindFragDataLocationEXT",
1730bf215546Sopenharmony_ci    "BindFragDataLocationIndexed",
1731bf215546Sopenharmony_ci    "BindFramebuffer",
1732bf215546Sopenharmony_ci    "BindFramebufferEXT",
1733bf215546Sopenharmony_ci    "BindImageTexture",
1734bf215546Sopenharmony_ci    "BindImageTextures",
1735bf215546Sopenharmony_ci    "BindProgramARB",
1736bf215546Sopenharmony_ci    "BindProgramPipeline",
1737bf215546Sopenharmony_ci    "BindRenderbuffer",
1738bf215546Sopenharmony_ci    "BindRenderbufferEXT",
1739bf215546Sopenharmony_ci    "BindSampler",
1740bf215546Sopenharmony_ci    "BindSamplers",
1741bf215546Sopenharmony_ci    "BindTexture",
1742bf215546Sopenharmony_ci    "BindTextureEXT",
1743bf215546Sopenharmony_ci    "BindTextures",
1744bf215546Sopenharmony_ci    "BindTransformFeedback",
1745bf215546Sopenharmony_ci    "BindVertexArray",
1746bf215546Sopenharmony_ci    "BindVertexBuffer",
1747bf215546Sopenharmony_ci    "BindVertexBuffers",
1748bf215546Sopenharmony_ci    "Bitmap",
1749bf215546Sopenharmony_ci    "BlendBarrier",
1750bf215546Sopenharmony_ci    "BlendColor",
1751bf215546Sopenharmony_ci    "BlendColorEXT",
1752bf215546Sopenharmony_ci    "BlendEquation",
1753bf215546Sopenharmony_ci    "BlendEquationEXT",
1754bf215546Sopenharmony_ci    "BlendEquationi",
1755bf215546Sopenharmony_ci    "BlendEquationiARB",
1756bf215546Sopenharmony_ci    "BlendEquationSeparate",
1757bf215546Sopenharmony_ci    "BlendEquationSeparatei",
1758bf215546Sopenharmony_ci    "BlendEquationSeparateiARB",
1759bf215546Sopenharmony_ci    "BlendFunc",
1760bf215546Sopenharmony_ci    "BlendFunci",
1761bf215546Sopenharmony_ci    "BlendFunciARB",
1762bf215546Sopenharmony_ci    "BlendFuncSeparate",
1763bf215546Sopenharmony_ci    "BlendFuncSeparateEXT",
1764bf215546Sopenharmony_ci    "BlendFuncSeparatei",
1765bf215546Sopenharmony_ci    "BlendFuncSeparateiARB",
1766bf215546Sopenharmony_ci    "BlitFramebuffer",
1767bf215546Sopenharmony_ci    "BufferData",
1768bf215546Sopenharmony_ci    "BufferDataARB",
1769bf215546Sopenharmony_ci    "BufferStorage",
1770bf215546Sopenharmony_ci    "BufferSubData",
1771bf215546Sopenharmony_ci    "BufferSubDataARB",
1772bf215546Sopenharmony_ci    "CallList",
1773bf215546Sopenharmony_ci    "CallLists",
1774bf215546Sopenharmony_ci    "CheckFramebufferStatus",
1775bf215546Sopenharmony_ci    "CheckFramebufferStatusEXT",
1776bf215546Sopenharmony_ci    "ClampColor",
1777bf215546Sopenharmony_ci    "ClampColorARB",
1778bf215546Sopenharmony_ci    "Clear",
1779bf215546Sopenharmony_ci    "ClearAccum",
1780bf215546Sopenharmony_ci    "ClearBufferData",
1781bf215546Sopenharmony_ci    "ClearBufferfi",
1782bf215546Sopenharmony_ci    "ClearBufferfv",
1783bf215546Sopenharmony_ci    "ClearBufferiv",
1784bf215546Sopenharmony_ci    "ClearBufferSubData",
1785bf215546Sopenharmony_ci    "ClearBufferuiv",
1786bf215546Sopenharmony_ci    "ClearColor",
1787bf215546Sopenharmony_ci    "ClearColorIiEXT",
1788bf215546Sopenharmony_ci    "ClearColorIuiEXT",
1789bf215546Sopenharmony_ci    "ClearColorx",
1790bf215546Sopenharmony_ci    "ClearDepth",
1791bf215546Sopenharmony_ci    "ClearDepthf",
1792bf215546Sopenharmony_ci    "ClearDepthx",
1793bf215546Sopenharmony_ci    "ClearIndex",
1794bf215546Sopenharmony_ci    "ClearStencil",
1795bf215546Sopenharmony_ci    "ClearTexImage",
1796bf215546Sopenharmony_ci    "ClearTexSubImage",
1797bf215546Sopenharmony_ci    "ClientActiveTexture",
1798bf215546Sopenharmony_ci    "ClientActiveTextureARB",
1799bf215546Sopenharmony_ci    "ClientWaitSync",
1800bf215546Sopenharmony_ci    "ClipPlane",
1801bf215546Sopenharmony_ci    "ClipPlanef",
1802bf215546Sopenharmony_ci    "ClipPlanex",
1803bf215546Sopenharmony_ci    "Color3b",
1804bf215546Sopenharmony_ci    "Color3bv",
1805bf215546Sopenharmony_ci    "Color3d",
1806bf215546Sopenharmony_ci    "Color3dv",
1807bf215546Sopenharmony_ci    "Color3f",
1808bf215546Sopenharmony_ci    "Color3fv",
1809bf215546Sopenharmony_ci    "Color3i",
1810bf215546Sopenharmony_ci    "Color3iv",
1811bf215546Sopenharmony_ci    "Color3s",
1812bf215546Sopenharmony_ci    "Color3sv",
1813bf215546Sopenharmony_ci    "Color3ub",
1814bf215546Sopenharmony_ci    "Color3ubv",
1815bf215546Sopenharmony_ci    "Color3ui",
1816bf215546Sopenharmony_ci    "Color3uiv",
1817bf215546Sopenharmony_ci    "Color3us",
1818bf215546Sopenharmony_ci    "Color3usv",
1819bf215546Sopenharmony_ci    "Color4b",
1820bf215546Sopenharmony_ci    "Color4bv",
1821bf215546Sopenharmony_ci    "Color4d",
1822bf215546Sopenharmony_ci    "Color4dv",
1823bf215546Sopenharmony_ci    "Color4f",
1824bf215546Sopenharmony_ci    "Color4fv",
1825bf215546Sopenharmony_ci    "Color4i",
1826bf215546Sopenharmony_ci    "Color4iv",
1827bf215546Sopenharmony_ci    "Color4s",
1828bf215546Sopenharmony_ci    "Color4sv",
1829bf215546Sopenharmony_ci    "Color4ub",
1830bf215546Sopenharmony_ci    "Color4ubv",
1831bf215546Sopenharmony_ci    "Color4ui",
1832bf215546Sopenharmony_ci    "Color4uiv",
1833bf215546Sopenharmony_ci    "Color4us",
1834bf215546Sopenharmony_ci    "Color4usv",
1835bf215546Sopenharmony_ci    "Color4x",
1836bf215546Sopenharmony_ci    "ColorMask",
1837bf215546Sopenharmony_ci    "ColorMaski",
1838bf215546Sopenharmony_ci    "ColorMaskIndexedEXT",
1839bf215546Sopenharmony_ci    "ColorMaterial",
1840bf215546Sopenharmony_ci    "ColorP3ui",
1841bf215546Sopenharmony_ci    "ColorP3uiv",
1842bf215546Sopenharmony_ci    "ColorP4ui",
1843bf215546Sopenharmony_ci    "ColorP4uiv",
1844bf215546Sopenharmony_ci    "ColorPointer",
1845bf215546Sopenharmony_ci    "ColorPointerEXT",
1846bf215546Sopenharmony_ci    "ColorSubTable",
1847bf215546Sopenharmony_ci    "ColorTable",
1848bf215546Sopenharmony_ci    "ColorTableParameterfv",
1849bf215546Sopenharmony_ci    "ColorTableParameteriv",
1850bf215546Sopenharmony_ci    "CompileShader",
1851bf215546Sopenharmony_ci    "CompileShaderARB",
1852bf215546Sopenharmony_ci    "CompressedTexImage1D",
1853bf215546Sopenharmony_ci    "CompressedTexImage1DARB",
1854bf215546Sopenharmony_ci    "CompressedTexImage2D",
1855bf215546Sopenharmony_ci    "CompressedTexImage2DARB",
1856bf215546Sopenharmony_ci    "CompressedTexImage3D",
1857bf215546Sopenharmony_ci    "CompressedTexImage3DARB",
1858bf215546Sopenharmony_ci    "CompressedTexSubImage1D",
1859bf215546Sopenharmony_ci    "CompressedTexSubImage1DARB",
1860bf215546Sopenharmony_ci    "CompressedTexSubImage2D",
1861bf215546Sopenharmony_ci    "CompressedTexSubImage2DARB",
1862bf215546Sopenharmony_ci    "CompressedTexSubImage3D",
1863bf215546Sopenharmony_ci    "CompressedTexSubImage3DARB",
1864bf215546Sopenharmony_ci    "ConvolutionFilter1D",
1865bf215546Sopenharmony_ci    "ConvolutionFilter2D",
1866bf215546Sopenharmony_ci    "ConvolutionParameterf",
1867bf215546Sopenharmony_ci    "ConvolutionParameterfv",
1868bf215546Sopenharmony_ci    "ConvolutionParameteri",
1869bf215546Sopenharmony_ci    "ConvolutionParameteriv",
1870bf215546Sopenharmony_ci    "CopyBufferSubData",
1871bf215546Sopenharmony_ci    "CopyColorSubTable",
1872bf215546Sopenharmony_ci    "CopyColorTable",
1873bf215546Sopenharmony_ci    "CopyConvolutionFilter1D",
1874bf215546Sopenharmony_ci    "CopyConvolutionFilter2D",
1875bf215546Sopenharmony_ci    "CopyImageSubData",
1876bf215546Sopenharmony_ci    "CopyPixels",
1877bf215546Sopenharmony_ci    "CopyTexImage1D",
1878bf215546Sopenharmony_ci    "CopyTexImage2D",
1879bf215546Sopenharmony_ci    "CopyTexSubImage1D",
1880bf215546Sopenharmony_ci    "CopyTexSubImage2D",
1881bf215546Sopenharmony_ci    "CopyTexSubImage3D",
1882bf215546Sopenharmony_ci    "CopyTexSubImage3DEXT",
1883bf215546Sopenharmony_ci    "CreateProgram",
1884bf215546Sopenharmony_ci    "CreateProgramObjectARB",
1885bf215546Sopenharmony_ci    "CreateShader",
1886bf215546Sopenharmony_ci    "CreateShaderObjectARB",
1887bf215546Sopenharmony_ci    "CreateShaderProgramv",
1888bf215546Sopenharmony_ci    "CullFace",
1889bf215546Sopenharmony_ci    "DebugMessageCallback",
1890bf215546Sopenharmony_ci    "DebugMessageCallbackARB",
1891bf215546Sopenharmony_ci    "DebugMessageControl",
1892bf215546Sopenharmony_ci    "DebugMessageControlARB",
1893bf215546Sopenharmony_ci    "DebugMessageInsert",
1894bf215546Sopenharmony_ci    "DebugMessageInsertARB",
1895bf215546Sopenharmony_ci    "DeleteBuffers",
1896bf215546Sopenharmony_ci    "DeleteBuffersARB",
1897bf215546Sopenharmony_ci    "DeleteFramebuffers",
1898bf215546Sopenharmony_ci    "DeleteFramebuffersEXT",
1899bf215546Sopenharmony_ci    "DeleteLists",
1900bf215546Sopenharmony_ci    "DeleteObjectARB",
1901bf215546Sopenharmony_ci    "DeleteProgram",
1902bf215546Sopenharmony_ci    "DeleteProgramPipelines",
1903bf215546Sopenharmony_ci    "DeleteProgramsARB",
1904bf215546Sopenharmony_ci    "DeleteQueries",
1905bf215546Sopenharmony_ci    "DeleteQueriesARB",
1906bf215546Sopenharmony_ci    "DeleteRenderbuffers",
1907bf215546Sopenharmony_ci    "DeleteRenderbuffersEXT",
1908bf215546Sopenharmony_ci    "DeleteSamplers",
1909bf215546Sopenharmony_ci    "DeleteShader",
1910bf215546Sopenharmony_ci    "DeleteSync",
1911bf215546Sopenharmony_ci    "DeleteTextures",
1912bf215546Sopenharmony_ci    "DeleteTexturesEXT",
1913bf215546Sopenharmony_ci    "DeleteTransformFeedbacks",
1914bf215546Sopenharmony_ci    "DeleteVertexArrays",
1915bf215546Sopenharmony_ci    "DepthFunc",
1916bf215546Sopenharmony_ci    "DepthMask",
1917bf215546Sopenharmony_ci    "DepthRange",
1918bf215546Sopenharmony_ci    "DepthRangeArrayv",
1919bf215546Sopenharmony_ci    "DepthRangef",
1920bf215546Sopenharmony_ci    "DepthRangeIndexed",
1921bf215546Sopenharmony_ci    "DepthRangex",
1922bf215546Sopenharmony_ci    "DetachObjectARB",
1923bf215546Sopenharmony_ci    "DetachShader",
1924bf215546Sopenharmony_ci    "Disable",
1925bf215546Sopenharmony_ci    "DisableClientState",
1926bf215546Sopenharmony_ci    "Disablei",
1927bf215546Sopenharmony_ci    "DisableIndexedEXT",
1928bf215546Sopenharmony_ci    "DisableVertexAttribArray",
1929bf215546Sopenharmony_ci    "DisableVertexAttribArrayARB",
1930bf215546Sopenharmony_ci    "DispatchCompute",
1931bf215546Sopenharmony_ci    "DispatchComputeIndirect",
1932bf215546Sopenharmony_ci    "DrawArrays",
1933bf215546Sopenharmony_ci    "DrawArraysEXT",
1934bf215546Sopenharmony_ci    "DrawArraysIndirect",
1935bf215546Sopenharmony_ci    "DrawArraysInstanced",
1936bf215546Sopenharmony_ci    "DrawArraysInstancedARB",
1937bf215546Sopenharmony_ci    "DrawArraysInstancedBaseInstance",
1938bf215546Sopenharmony_ci    "DrawArraysInstancedEXT",
1939bf215546Sopenharmony_ci    "DrawBuffer",
1940bf215546Sopenharmony_ci    "DrawBuffers",
1941bf215546Sopenharmony_ci    "DrawBuffersARB",
1942bf215546Sopenharmony_ci    "DrawBuffersATI",
1943bf215546Sopenharmony_ci    "DrawElements",
1944bf215546Sopenharmony_ci    "DrawElementsBaseVertex",
1945bf215546Sopenharmony_ci    "DrawElementsIndirect",
1946bf215546Sopenharmony_ci    "DrawElementsInstanced",
1947bf215546Sopenharmony_ci    "DrawElementsInstancedARB",
1948bf215546Sopenharmony_ci    "DrawElementsInstancedBaseInstance",
1949bf215546Sopenharmony_ci    "DrawElementsInstancedBaseVertex",
1950bf215546Sopenharmony_ci    "DrawElementsInstancedBaseVertexBaseInstance",
1951bf215546Sopenharmony_ci    "DrawElementsInstancedEXT",
1952bf215546Sopenharmony_ci    "DrawPixels",
1953bf215546Sopenharmony_ci    "DrawRangeElements",
1954bf215546Sopenharmony_ci    "DrawRangeElementsBaseVertex",
1955bf215546Sopenharmony_ci    "DrawRangeElementsEXT",
1956bf215546Sopenharmony_ci    "DrawTransformFeedback",
1957bf215546Sopenharmony_ci    "DrawTransformFeedbackInstanced",
1958bf215546Sopenharmony_ci    "DrawTransformFeedbackStream",
1959bf215546Sopenharmony_ci    "DrawTransformFeedbackStreamInstanced",
1960bf215546Sopenharmony_ci    "EdgeFlag",
1961bf215546Sopenharmony_ci    "EdgeFlagPointer",
1962bf215546Sopenharmony_ci    "EdgeFlagPointerEXT",
1963bf215546Sopenharmony_ci    "EdgeFlagv",
1964bf215546Sopenharmony_ci    "Enable",
1965bf215546Sopenharmony_ci    "EnableClientState",
1966bf215546Sopenharmony_ci    "Enablei",
1967bf215546Sopenharmony_ci    "EnableIndexedEXT",
1968bf215546Sopenharmony_ci    "EnableVertexAttribArray",
1969bf215546Sopenharmony_ci    "EnableVertexAttribArrayARB",
1970bf215546Sopenharmony_ci    "End",
1971bf215546Sopenharmony_ci    "EndConditionalRender",
1972bf215546Sopenharmony_ci    "EndConditionalRenderNV",
1973bf215546Sopenharmony_ci    "EndList",
1974bf215546Sopenharmony_ci    "EndQuery",
1975bf215546Sopenharmony_ci    "EndQueryARB",
1976bf215546Sopenharmony_ci    "EndQueryIndexed",
1977bf215546Sopenharmony_ci    "EndTransformFeedback",
1978bf215546Sopenharmony_ci    "EvalCoord1d",
1979bf215546Sopenharmony_ci    "EvalCoord1dv",
1980bf215546Sopenharmony_ci    "EvalCoord1f",
1981bf215546Sopenharmony_ci    "EvalCoord1fv",
1982bf215546Sopenharmony_ci    "EvalCoord2d",
1983bf215546Sopenharmony_ci    "EvalCoord2dv",
1984bf215546Sopenharmony_ci    "EvalCoord2f",
1985bf215546Sopenharmony_ci    "EvalCoord2fv",
1986bf215546Sopenharmony_ci    "EvalMesh1",
1987bf215546Sopenharmony_ci    "EvalMesh2",
1988bf215546Sopenharmony_ci    "EvalPoint1",
1989bf215546Sopenharmony_ci    "EvalPoint2",
1990bf215546Sopenharmony_ci    "FeedbackBuffer",
1991bf215546Sopenharmony_ci    "FenceSync",
1992bf215546Sopenharmony_ci    "Finish",
1993bf215546Sopenharmony_ci    "Flush",
1994bf215546Sopenharmony_ci    "FlushMappedBufferRange",
1995bf215546Sopenharmony_ci    "FogCoordd",
1996bf215546Sopenharmony_ci    "FogCoorddEXT",
1997bf215546Sopenharmony_ci    "FogCoorddv",
1998bf215546Sopenharmony_ci    "FogCoorddvEXT",
1999bf215546Sopenharmony_ci    "FogCoordf",
2000bf215546Sopenharmony_ci    "FogCoordfEXT",
2001bf215546Sopenharmony_ci    "FogCoordfv",
2002bf215546Sopenharmony_ci    "FogCoordfvEXT",
2003bf215546Sopenharmony_ci    "FogCoordPointer",
2004bf215546Sopenharmony_ci    "FogCoordPointerEXT",
2005bf215546Sopenharmony_ci    "Fogf",
2006bf215546Sopenharmony_ci    "Fogfv",
2007bf215546Sopenharmony_ci    "Fogi",
2008bf215546Sopenharmony_ci    "Fogiv",
2009bf215546Sopenharmony_ci    "Fogx",
2010bf215546Sopenharmony_ci    "Fogxv",
2011bf215546Sopenharmony_ci    "FramebufferParameteri",
2012bf215546Sopenharmony_ci    "FramebufferRenderbuffer",
2013bf215546Sopenharmony_ci    "FramebufferRenderbufferEXT",
2014bf215546Sopenharmony_ci    "FramebufferTexture",
2015bf215546Sopenharmony_ci    "FramebufferTexture1D",
2016bf215546Sopenharmony_ci    "FramebufferTexture1DEXT",
2017bf215546Sopenharmony_ci    "FramebufferTexture2D",
2018bf215546Sopenharmony_ci    "FramebufferTexture2DEXT",
2019bf215546Sopenharmony_ci    "FramebufferTexture3D",
2020bf215546Sopenharmony_ci    "FramebufferTexture3DEXT",
2021bf215546Sopenharmony_ci    "FramebufferTextureARB",
2022bf215546Sopenharmony_ci    "FramebufferTextureLayer",
2023bf215546Sopenharmony_ci    "FramebufferTextureLayerARB",
2024bf215546Sopenharmony_ci    "FramebufferTextureLayerEXT",
2025bf215546Sopenharmony_ci    "FrontFace",
2026bf215546Sopenharmony_ci    "Frustum",
2027bf215546Sopenharmony_ci    "Frustumf",
2028bf215546Sopenharmony_ci    "Frustumx",
2029bf215546Sopenharmony_ci    "GenBuffers",
2030bf215546Sopenharmony_ci    "GenBuffersARB",
2031bf215546Sopenharmony_ci    "GenerateMipmap",
2032bf215546Sopenharmony_ci    "GenerateMipmapEXT",
2033bf215546Sopenharmony_ci    "GenFramebuffers",
2034bf215546Sopenharmony_ci    "GenFramebuffersEXT",
2035bf215546Sopenharmony_ci    "GenLists",
2036bf215546Sopenharmony_ci    "GenProgramPipelines",
2037bf215546Sopenharmony_ci    "GenProgramsARB",
2038bf215546Sopenharmony_ci    "GenQueries",
2039bf215546Sopenharmony_ci    "GenQueriesARB",
2040bf215546Sopenharmony_ci    "GenRenderbuffers",
2041bf215546Sopenharmony_ci    "GenRenderbuffersEXT",
2042bf215546Sopenharmony_ci    "GenSamplers",
2043bf215546Sopenharmony_ci    "GenTextures",
2044bf215546Sopenharmony_ci    "GenTexturesEXT",
2045bf215546Sopenharmony_ci    "GenTransformFeedbacks",
2046bf215546Sopenharmony_ci    "GenVertexArrays",
2047bf215546Sopenharmony_ci    "GetActiveAtomicCounterBufferiv",
2048bf215546Sopenharmony_ci    "GetActiveAttrib",
2049bf215546Sopenharmony_ci    "GetActiveAttribARB",
2050bf215546Sopenharmony_ci    "GetActiveUniform",
2051bf215546Sopenharmony_ci    "GetActiveUniformARB",
2052bf215546Sopenharmony_ci    "GetActiveUniformBlockiv",
2053bf215546Sopenharmony_ci    "GetActiveUniformBlockName",
2054bf215546Sopenharmony_ci    "GetActiveUniformName",
2055bf215546Sopenharmony_ci    "GetActiveUniformsiv",
2056bf215546Sopenharmony_ci    "GetAttachedObjectsARB",
2057bf215546Sopenharmony_ci    "GetAttachedShaders",
2058bf215546Sopenharmony_ci    "GetAttribLocation",
2059bf215546Sopenharmony_ci    "GetAttribLocationARB",
2060bf215546Sopenharmony_ci    "GetBooleani_v",
2061bf215546Sopenharmony_ci    "GetBooleanIndexedvEXT",
2062bf215546Sopenharmony_ci    "GetBooleanv",
2063bf215546Sopenharmony_ci    "GetBufferParameteri64v",
2064bf215546Sopenharmony_ci    "GetBufferParameteriv",
2065bf215546Sopenharmony_ci    "GetBufferParameterivARB",
2066bf215546Sopenharmony_ci    "GetBufferPointerv",
2067bf215546Sopenharmony_ci    "GetBufferPointervARB",
2068bf215546Sopenharmony_ci    "GetBufferSubData",
2069bf215546Sopenharmony_ci    "GetBufferSubDataARB",
2070bf215546Sopenharmony_ci    "GetClipPlane",
2071bf215546Sopenharmony_ci    "GetClipPlanef",
2072bf215546Sopenharmony_ci    "GetClipPlanex",
2073bf215546Sopenharmony_ci    "GetColorTable",
2074bf215546Sopenharmony_ci    "GetColorTableParameterfv",
2075bf215546Sopenharmony_ci    "GetColorTableParameteriv",
2076bf215546Sopenharmony_ci    "GetCompressedTexImage",
2077bf215546Sopenharmony_ci    "GetCompressedTexImageARB",
2078bf215546Sopenharmony_ci    "GetConvolutionFilter",
2079bf215546Sopenharmony_ci    "GetConvolutionParameterfv",
2080bf215546Sopenharmony_ci    "GetConvolutionParameteriv",
2081bf215546Sopenharmony_ci    "GetDebugMessageLog",
2082bf215546Sopenharmony_ci    "GetDebugMessageLogARB",
2083bf215546Sopenharmony_ci    "GetDoublei_v",
2084bf215546Sopenharmony_ci    "GetDoublev",
2085bf215546Sopenharmony_ci    "GetError",
2086bf215546Sopenharmony_ci    "GetFixedv",
2087bf215546Sopenharmony_ci    "GetFloati_v",
2088bf215546Sopenharmony_ci    "GetFloatv",
2089bf215546Sopenharmony_ci    "GetFragDataIndex",
2090bf215546Sopenharmony_ci    "GetFragDataLocation",
2091bf215546Sopenharmony_ci    "GetFragDataLocationEXT",
2092bf215546Sopenharmony_ci    "GetFramebufferAttachmentParameteriv",
2093bf215546Sopenharmony_ci    "GetFramebufferAttachmentParameterivEXT",
2094bf215546Sopenharmony_ci    "GetFramebufferParameteriv",
2095bf215546Sopenharmony_ci    "GetGraphicsResetStatus",
2096bf215546Sopenharmony_ci    "GetGraphicsResetStatusARB",
2097bf215546Sopenharmony_ci    "GetHandleARB",
2098bf215546Sopenharmony_ci    "GetHistogram",
2099bf215546Sopenharmony_ci    "GetHistogramParameterfv",
2100bf215546Sopenharmony_ci    "GetHistogramParameteriv",
2101bf215546Sopenharmony_ci    "GetInfoLogARB",
2102bf215546Sopenharmony_ci    "GetInteger64i_v",
2103bf215546Sopenharmony_ci    "GetInteger64v",
2104bf215546Sopenharmony_ci    "GetIntegeri_v",
2105bf215546Sopenharmony_ci    "GetIntegerIndexedvEXT",
2106bf215546Sopenharmony_ci    "GetIntegerv",
2107bf215546Sopenharmony_ci    "GetLightfv",
2108bf215546Sopenharmony_ci    "GetLightiv",
2109bf215546Sopenharmony_ci    "GetLightxv",
2110bf215546Sopenharmony_ci    "GetMapdv",
2111bf215546Sopenharmony_ci    "GetMapfv",
2112bf215546Sopenharmony_ci    "GetMapiv",
2113bf215546Sopenharmony_ci    "GetMaterialfv",
2114bf215546Sopenharmony_ci    "GetMaterialiv",
2115bf215546Sopenharmony_ci    "GetMaterialxv",
2116bf215546Sopenharmony_ci    "GetMinmax",
2117bf215546Sopenharmony_ci    "GetMinmaxParameterfv",
2118bf215546Sopenharmony_ci    "GetMinmaxParameteriv",
2119bf215546Sopenharmony_ci    "GetMultisamplefv",
2120bf215546Sopenharmony_ci    "GetnColorTableARB",
2121bf215546Sopenharmony_ci    "GetnCompressedTexImageARB",
2122bf215546Sopenharmony_ci    "GetnConvolutionFilterARB",
2123bf215546Sopenharmony_ci    "GetnHistogramARB",
2124bf215546Sopenharmony_ci    "GetnMapdvARB",
2125bf215546Sopenharmony_ci    "GetnMapfvARB",
2126bf215546Sopenharmony_ci    "GetnMapivARB",
2127bf215546Sopenharmony_ci    "GetnMinmaxARB",
2128bf215546Sopenharmony_ci    "GetnPixelMapfvARB",
2129bf215546Sopenharmony_ci    "GetnPixelMapuivARB",
2130bf215546Sopenharmony_ci    "GetnPixelMapusvARB",
2131bf215546Sopenharmony_ci    "GetnPolygonStippleARB",
2132bf215546Sopenharmony_ci    "GetnSeparableFilterARB",
2133bf215546Sopenharmony_ci    "GetnTexImageARB",
2134bf215546Sopenharmony_ci    "GetnUniformdvARB",
2135bf215546Sopenharmony_ci    "GetnUniformfv",
2136bf215546Sopenharmony_ci    "GetnUniformfvARB",
2137bf215546Sopenharmony_ci    "GetnUniformiv",
2138bf215546Sopenharmony_ci    "GetnUniformivARB",
2139bf215546Sopenharmony_ci    "GetnUniformuiv",
2140bf215546Sopenharmony_ci    "GetnUniformuivARB",
2141bf215546Sopenharmony_ci    "GetObjectLabel",
2142bf215546Sopenharmony_ci    "GetObjectParameterfvARB",
2143bf215546Sopenharmony_ci    "GetObjectParameterivARB",
2144bf215546Sopenharmony_ci    "GetObjectPtrLabel",
2145bf215546Sopenharmony_ci    "GetPixelMapfv",
2146bf215546Sopenharmony_ci    "GetPixelMapuiv",
2147bf215546Sopenharmony_ci    "GetPixelMapusv",
2148bf215546Sopenharmony_ci    "GetPointerv",
2149bf215546Sopenharmony_ci    "GetPointervEXT",
2150bf215546Sopenharmony_ci    "GetPolygonStipple",
2151bf215546Sopenharmony_ci    "GetProgramBinary",
2152bf215546Sopenharmony_ci    "GetProgramEnvParameterdvARB",
2153bf215546Sopenharmony_ci    "GetProgramEnvParameterfvARB",
2154bf215546Sopenharmony_ci    "GetProgramInfoLog",
2155bf215546Sopenharmony_ci    "GetProgramInterfaceiv",
2156bf215546Sopenharmony_ci    "GetProgramiv",
2157bf215546Sopenharmony_ci    "GetProgramivARB",
2158bf215546Sopenharmony_ci    "GetProgramLocalParameterdvARB",
2159bf215546Sopenharmony_ci    "GetProgramLocalParameterfvARB",
2160bf215546Sopenharmony_ci    "GetProgramPipelineInfoLog",
2161bf215546Sopenharmony_ci    "GetProgramPipelineiv",
2162bf215546Sopenharmony_ci    "GetProgramResourceIndex",
2163bf215546Sopenharmony_ci    "GetProgramResourceiv",
2164bf215546Sopenharmony_ci    "GetProgramResourceLocation",
2165bf215546Sopenharmony_ci    "GetProgramResourceName",
2166bf215546Sopenharmony_ci    "GetProgramStringARB",
2167bf215546Sopenharmony_ci    "GetQueryIndexediv",
2168bf215546Sopenharmony_ci    "GetQueryiv",
2169bf215546Sopenharmony_ci    "GetQueryivARB",
2170bf215546Sopenharmony_ci    "GetQueryObjectiv",
2171bf215546Sopenharmony_ci    "GetQueryObjectivARB",
2172bf215546Sopenharmony_ci    "GetQueryObjectuiv",
2173bf215546Sopenharmony_ci    "GetQueryObjectuivARB",
2174bf215546Sopenharmony_ci    "GetRenderbufferParameteriv",
2175bf215546Sopenharmony_ci    "GetRenderbufferParameterivEXT",
2176bf215546Sopenharmony_ci    "GetSamplerParameterfv",
2177bf215546Sopenharmony_ci    "GetSamplerParameterIiv",
2178bf215546Sopenharmony_ci    "GetSamplerParameterIuiv",
2179bf215546Sopenharmony_ci    "GetSamplerParameteriv",
2180bf215546Sopenharmony_ci    "GetSeparableFilter",
2181bf215546Sopenharmony_ci    "GetShaderInfoLog",
2182bf215546Sopenharmony_ci    "GetShaderiv",
2183bf215546Sopenharmony_ci    "GetShaderPrecisionFormat",
2184bf215546Sopenharmony_ci    "GetShaderSource",
2185bf215546Sopenharmony_ci    "GetShaderSourceARB",
2186bf215546Sopenharmony_ci    "GetString",
2187bf215546Sopenharmony_ci    "GetStringi",
2188bf215546Sopenharmony_ci    "GetSynciv",
2189bf215546Sopenharmony_ci    "GetTexEnvfv",
2190bf215546Sopenharmony_ci    "GetTexEnviv",
2191bf215546Sopenharmony_ci    "GetTexEnvxv",
2192bf215546Sopenharmony_ci    "GetTexGendv",
2193bf215546Sopenharmony_ci    "GetTexGenfv",
2194bf215546Sopenharmony_ci    "GetTexGeniv",
2195bf215546Sopenharmony_ci    "GetTexImage",
2196bf215546Sopenharmony_ci    "GetTexLevelParameterfv",
2197bf215546Sopenharmony_ci    "GetTexLevelParameteriv",
2198bf215546Sopenharmony_ci    "GetTexParameterfv",
2199bf215546Sopenharmony_ci    "GetTexParameterIiv",
2200bf215546Sopenharmony_ci    "GetTexParameterIivEXT",
2201bf215546Sopenharmony_ci    "GetTexParameterIuiv",
2202bf215546Sopenharmony_ci    "GetTexParameterIuivEXT",
2203bf215546Sopenharmony_ci    "GetTexParameteriv",
2204bf215546Sopenharmony_ci    "GetTexParameterxv",
2205bf215546Sopenharmony_ci    "GetTransformFeedbackVarying",
2206bf215546Sopenharmony_ci    "GetUniformBlockIndex",
2207bf215546Sopenharmony_ci    "GetUniformfv",
2208bf215546Sopenharmony_ci    "GetUniformfvARB",
2209bf215546Sopenharmony_ci    "GetUniformIndices",
2210bf215546Sopenharmony_ci    "GetUniformiv",
2211bf215546Sopenharmony_ci    "GetUniformivARB",
2212bf215546Sopenharmony_ci    "GetUniformLocation",
2213bf215546Sopenharmony_ci    "GetUniformLocationARB",
2214bf215546Sopenharmony_ci    "GetUniformuiv",
2215bf215546Sopenharmony_ci    "GetUniformuivEXT",
2216bf215546Sopenharmony_ci    "GetVertexAttribdv",
2217bf215546Sopenharmony_ci    "GetVertexAttribdvARB",
2218bf215546Sopenharmony_ci    "GetVertexAttribfv",
2219bf215546Sopenharmony_ci    "GetVertexAttribfvARB",
2220bf215546Sopenharmony_ci    "GetVertexAttribIiv",
2221bf215546Sopenharmony_ci    "GetVertexAttribIivEXT",
2222bf215546Sopenharmony_ci    "GetVertexAttribIuiv",
2223bf215546Sopenharmony_ci    "GetVertexAttribIuivEXT",
2224bf215546Sopenharmony_ci    "GetVertexAttribiv",
2225bf215546Sopenharmony_ci    "GetVertexAttribivARB",
2226bf215546Sopenharmony_ci    "GetVertexAttribPointerv",
2227bf215546Sopenharmony_ci    "GetVertexAttribPointervARB",
2228bf215546Sopenharmony_ci    "Hint",
2229bf215546Sopenharmony_ci    "Histogram",
2230bf215546Sopenharmony_ci    "Indexd",
2231bf215546Sopenharmony_ci    "Indexdv",
2232bf215546Sopenharmony_ci    "Indexf",
2233bf215546Sopenharmony_ci    "Indexfv",
2234bf215546Sopenharmony_ci    "Indexi",
2235bf215546Sopenharmony_ci    "Indexiv",
2236bf215546Sopenharmony_ci    "IndexMask",
2237bf215546Sopenharmony_ci    "IndexPointer",
2238bf215546Sopenharmony_ci    "IndexPointerEXT",
2239bf215546Sopenharmony_ci    "Indexs",
2240bf215546Sopenharmony_ci    "Indexsv",
2241bf215546Sopenharmony_ci    "Indexub",
2242bf215546Sopenharmony_ci    "Indexubv",
2243bf215546Sopenharmony_ci    "InitNames",
2244bf215546Sopenharmony_ci    "InterleavedArrays",
2245bf215546Sopenharmony_ci    "InvalidateBufferData",
2246bf215546Sopenharmony_ci    "InvalidateBufferSubData",
2247bf215546Sopenharmony_ci    "InvalidateFramebuffer",
2248bf215546Sopenharmony_ci    "InvalidateSubFramebuffer",
2249bf215546Sopenharmony_ci    "InvalidateTexImage",
2250bf215546Sopenharmony_ci    "InvalidateTexSubImage",
2251bf215546Sopenharmony_ci    "IsBuffer",
2252bf215546Sopenharmony_ci    "IsBufferARB",
2253bf215546Sopenharmony_ci    "IsEnabled",
2254bf215546Sopenharmony_ci    "IsEnabledi",
2255bf215546Sopenharmony_ci    "IsEnabledIndexedEXT",
2256bf215546Sopenharmony_ci    "IsFramebuffer",
2257bf215546Sopenharmony_ci    "IsFramebufferEXT",
2258bf215546Sopenharmony_ci    "IsList",
2259bf215546Sopenharmony_ci    "IsProgram",
2260bf215546Sopenharmony_ci    "IsProgramARB",
2261bf215546Sopenharmony_ci    "IsProgramPipeline",
2262bf215546Sopenharmony_ci    "IsQuery",
2263bf215546Sopenharmony_ci    "IsQueryARB",
2264bf215546Sopenharmony_ci    "IsRenderbuffer",
2265bf215546Sopenharmony_ci    "IsRenderbufferEXT",
2266bf215546Sopenharmony_ci    "IsSampler",
2267bf215546Sopenharmony_ci    "IsShader",
2268bf215546Sopenharmony_ci    "IsSync",
2269bf215546Sopenharmony_ci    "IsTexture",
2270bf215546Sopenharmony_ci    "IsTextureEXT",
2271bf215546Sopenharmony_ci    "IsTransformFeedback",
2272bf215546Sopenharmony_ci    "IsVertexArray",
2273bf215546Sopenharmony_ci    "Lightf",
2274bf215546Sopenharmony_ci    "Lightfv",
2275bf215546Sopenharmony_ci    "Lighti",
2276bf215546Sopenharmony_ci    "Lightiv",
2277bf215546Sopenharmony_ci    "LightModelf",
2278bf215546Sopenharmony_ci    "LightModelfv",
2279bf215546Sopenharmony_ci    "LightModeli",
2280bf215546Sopenharmony_ci    "LightModeliv",
2281bf215546Sopenharmony_ci    "LightModelx",
2282bf215546Sopenharmony_ci    "LightModelxv",
2283bf215546Sopenharmony_ci    "Lightx",
2284bf215546Sopenharmony_ci    "Lightxv",
2285bf215546Sopenharmony_ci    "LineStipple",
2286bf215546Sopenharmony_ci    "LineWidth",
2287bf215546Sopenharmony_ci    "LineWidthx",
2288bf215546Sopenharmony_ci    "LinkProgram",
2289bf215546Sopenharmony_ci    "LinkProgramARB",
2290bf215546Sopenharmony_ci    "ListBase",
2291bf215546Sopenharmony_ci    "LoadIdentity",
2292bf215546Sopenharmony_ci    "LoadMatrixd",
2293bf215546Sopenharmony_ci    "LoadMatrixf",
2294bf215546Sopenharmony_ci    "LoadMatrixx",
2295bf215546Sopenharmony_ci    "LoadName",
2296bf215546Sopenharmony_ci    "LoadTransposeMatrixd",
2297bf215546Sopenharmony_ci    "LoadTransposeMatrixdARB",
2298bf215546Sopenharmony_ci    "LoadTransposeMatrixf",
2299bf215546Sopenharmony_ci    "LoadTransposeMatrixfARB",
2300bf215546Sopenharmony_ci    "LockArraysEXT",
2301bf215546Sopenharmony_ci    "LogicOp",
2302bf215546Sopenharmony_ci    "Map1d",
2303bf215546Sopenharmony_ci    "Map1f",
2304bf215546Sopenharmony_ci    "Map2d",
2305bf215546Sopenharmony_ci    "Map2f",
2306bf215546Sopenharmony_ci    "MapBuffer",
2307bf215546Sopenharmony_ci    "MapBufferARB",
2308bf215546Sopenharmony_ci    "MapBufferRange",
2309bf215546Sopenharmony_ci    "MapGrid1d",
2310bf215546Sopenharmony_ci    "MapGrid1f",
2311bf215546Sopenharmony_ci    "MapGrid2d",
2312bf215546Sopenharmony_ci    "MapGrid2f",
2313bf215546Sopenharmony_ci    "Materialf",
2314bf215546Sopenharmony_ci    "Materialfv",
2315bf215546Sopenharmony_ci    "Materiali",
2316bf215546Sopenharmony_ci    "Materialiv",
2317bf215546Sopenharmony_ci    "Materialx",
2318bf215546Sopenharmony_ci    "Materialxv",
2319bf215546Sopenharmony_ci    "MatrixMode",
2320bf215546Sopenharmony_ci    "MemoryBarrier",
2321bf215546Sopenharmony_ci    "MemoryBarrierByRegion",
2322bf215546Sopenharmony_ci    "Minmax",
2323bf215546Sopenharmony_ci    "MinSampleShading",
2324bf215546Sopenharmony_ci    "MinSampleShadingARB",
2325bf215546Sopenharmony_ci    "MultiDrawArrays",
2326bf215546Sopenharmony_ci    "MultiDrawArraysEXT",
2327bf215546Sopenharmony_ci    "MultiDrawArraysIndirect",
2328bf215546Sopenharmony_ci    "MultiDrawElements",
2329bf215546Sopenharmony_ci    "MultiDrawElementsBaseVertex",
2330bf215546Sopenharmony_ci    "MultiDrawElementsEXT",
2331bf215546Sopenharmony_ci    "MultiDrawElementsIndirect",
2332bf215546Sopenharmony_ci    "MultiTexCoord1d",
2333bf215546Sopenharmony_ci    "MultiTexCoord1dARB",
2334bf215546Sopenharmony_ci    "MultiTexCoord1dv",
2335bf215546Sopenharmony_ci    "MultiTexCoord1dvARB",
2336bf215546Sopenharmony_ci    "MultiTexCoord1f",
2337bf215546Sopenharmony_ci    "MultiTexCoord1fARB",
2338bf215546Sopenharmony_ci    "MultiTexCoord1fv",
2339bf215546Sopenharmony_ci    "MultiTexCoord1fvARB",
2340bf215546Sopenharmony_ci    "MultiTexCoord1i",
2341bf215546Sopenharmony_ci    "MultiTexCoord1iARB",
2342bf215546Sopenharmony_ci    "MultiTexCoord1iv",
2343bf215546Sopenharmony_ci    "MultiTexCoord1ivARB",
2344bf215546Sopenharmony_ci    "MultiTexCoord1s",
2345bf215546Sopenharmony_ci    "MultiTexCoord1sARB",
2346bf215546Sopenharmony_ci    "MultiTexCoord1sv",
2347bf215546Sopenharmony_ci    "MultiTexCoord1svARB",
2348bf215546Sopenharmony_ci    "MultiTexCoord2d",
2349bf215546Sopenharmony_ci    "MultiTexCoord2dARB",
2350bf215546Sopenharmony_ci    "MultiTexCoord2dv",
2351bf215546Sopenharmony_ci    "MultiTexCoord2dvARB",
2352bf215546Sopenharmony_ci    "MultiTexCoord2f",
2353bf215546Sopenharmony_ci    "MultiTexCoord2fARB",
2354bf215546Sopenharmony_ci    "MultiTexCoord2fv",
2355bf215546Sopenharmony_ci    "MultiTexCoord2fvARB",
2356bf215546Sopenharmony_ci    "MultiTexCoord2i",
2357bf215546Sopenharmony_ci    "MultiTexCoord2iARB",
2358bf215546Sopenharmony_ci    "MultiTexCoord2iv",
2359bf215546Sopenharmony_ci    "MultiTexCoord2ivARB",
2360bf215546Sopenharmony_ci    "MultiTexCoord2s",
2361bf215546Sopenharmony_ci    "MultiTexCoord2sARB",
2362bf215546Sopenharmony_ci    "MultiTexCoord2sv",
2363bf215546Sopenharmony_ci    "MultiTexCoord2svARB",
2364bf215546Sopenharmony_ci    "MultiTexCoord3d",
2365bf215546Sopenharmony_ci    "MultiTexCoord3dARB",
2366bf215546Sopenharmony_ci    "MultiTexCoord3dv",
2367bf215546Sopenharmony_ci    "MultiTexCoord3dvARB",
2368bf215546Sopenharmony_ci    "MultiTexCoord3f",
2369bf215546Sopenharmony_ci    "MultiTexCoord3fARB",
2370bf215546Sopenharmony_ci    "MultiTexCoord3fv",
2371bf215546Sopenharmony_ci    "MultiTexCoord3fvARB",
2372bf215546Sopenharmony_ci    "MultiTexCoord3i",
2373bf215546Sopenharmony_ci    "MultiTexCoord3iARB",
2374bf215546Sopenharmony_ci    "MultiTexCoord3iv",
2375bf215546Sopenharmony_ci    "MultiTexCoord3ivARB",
2376bf215546Sopenharmony_ci    "MultiTexCoord3s",
2377bf215546Sopenharmony_ci    "MultiTexCoord3sARB",
2378bf215546Sopenharmony_ci    "MultiTexCoord3sv",
2379bf215546Sopenharmony_ci    "MultiTexCoord3svARB",
2380bf215546Sopenharmony_ci    "MultiTexCoord4d",
2381bf215546Sopenharmony_ci    "MultiTexCoord4dARB",
2382bf215546Sopenharmony_ci    "MultiTexCoord4dv",
2383bf215546Sopenharmony_ci    "MultiTexCoord4dvARB",
2384bf215546Sopenharmony_ci    "MultiTexCoord4f",
2385bf215546Sopenharmony_ci    "MultiTexCoord4fARB",
2386bf215546Sopenharmony_ci    "MultiTexCoord4fv",
2387bf215546Sopenharmony_ci    "MultiTexCoord4fvARB",
2388bf215546Sopenharmony_ci    "MultiTexCoord4i",
2389bf215546Sopenharmony_ci    "MultiTexCoord4iARB",
2390bf215546Sopenharmony_ci    "MultiTexCoord4iv",
2391bf215546Sopenharmony_ci    "MultiTexCoord4ivARB",
2392bf215546Sopenharmony_ci    "MultiTexCoord4s",
2393bf215546Sopenharmony_ci    "MultiTexCoord4sARB",
2394bf215546Sopenharmony_ci    "MultiTexCoord4sv",
2395bf215546Sopenharmony_ci    "MultiTexCoord4svARB",
2396bf215546Sopenharmony_ci    "MultiTexCoord4x",
2397bf215546Sopenharmony_ci    "MultiTexCoordP1ui",
2398bf215546Sopenharmony_ci    "MultiTexCoordP1uiv",
2399bf215546Sopenharmony_ci    "MultiTexCoordP2ui",
2400bf215546Sopenharmony_ci    "MultiTexCoordP2uiv",
2401bf215546Sopenharmony_ci    "MultiTexCoordP3ui",
2402bf215546Sopenharmony_ci    "MultiTexCoordP3uiv",
2403bf215546Sopenharmony_ci    "MultiTexCoordP4ui",
2404bf215546Sopenharmony_ci    "MultiTexCoordP4uiv",
2405bf215546Sopenharmony_ci    "MultMatrixd",
2406bf215546Sopenharmony_ci    "MultMatrixf",
2407bf215546Sopenharmony_ci    "MultMatrixx",
2408bf215546Sopenharmony_ci    "MultTransposeMatrixd",
2409bf215546Sopenharmony_ci    "MultTransposeMatrixdARB",
2410bf215546Sopenharmony_ci    "MultTransposeMatrixf",
2411bf215546Sopenharmony_ci    "MultTransposeMatrixfARB",
2412bf215546Sopenharmony_ci    "NewList",
2413bf215546Sopenharmony_ci    "Normal3b",
2414bf215546Sopenharmony_ci    "Normal3bv",
2415bf215546Sopenharmony_ci    "Normal3d",
2416bf215546Sopenharmony_ci    "Normal3dv",
2417bf215546Sopenharmony_ci    "Normal3f",
2418bf215546Sopenharmony_ci    "Normal3fv",
2419bf215546Sopenharmony_ci    "Normal3i",
2420bf215546Sopenharmony_ci    "Normal3iv",
2421bf215546Sopenharmony_ci    "Normal3s",
2422bf215546Sopenharmony_ci    "Normal3sv",
2423bf215546Sopenharmony_ci    "Normal3x",
2424bf215546Sopenharmony_ci    "NormalP3ui",
2425bf215546Sopenharmony_ci    "NormalP3uiv",
2426bf215546Sopenharmony_ci    "NormalPointer",
2427bf215546Sopenharmony_ci    "NormalPointerEXT",
2428bf215546Sopenharmony_ci    "ObjectLabel",
2429bf215546Sopenharmony_ci    "ObjectPtrLabel",
2430bf215546Sopenharmony_ci    "Ortho",
2431bf215546Sopenharmony_ci    "Orthof",
2432bf215546Sopenharmony_ci    "Orthox",
2433bf215546Sopenharmony_ci    "PassThrough",
2434bf215546Sopenharmony_ci    "PatchParameteri",
2435bf215546Sopenharmony_ci    "PauseTransformFeedback",
2436bf215546Sopenharmony_ci    "PixelMapfv",
2437bf215546Sopenharmony_ci    "PixelMapuiv",
2438bf215546Sopenharmony_ci    "PixelMapusv",
2439bf215546Sopenharmony_ci    "PixelStoref",
2440bf215546Sopenharmony_ci    "PixelStorei",
2441bf215546Sopenharmony_ci    "PixelTransferf",
2442bf215546Sopenharmony_ci    "PixelTransferi",
2443bf215546Sopenharmony_ci    "PixelZoom",
2444bf215546Sopenharmony_ci    "PointParameterf",
2445bf215546Sopenharmony_ci    "PointParameterfARB",
2446bf215546Sopenharmony_ci    "PointParameterfEXT",
2447bf215546Sopenharmony_ci    "PointParameterfv",
2448bf215546Sopenharmony_ci    "PointParameterfvARB",
2449bf215546Sopenharmony_ci    "PointParameterfvEXT",
2450bf215546Sopenharmony_ci    "PointParameteri",
2451bf215546Sopenharmony_ci    "PointParameteriv",
2452bf215546Sopenharmony_ci    "PointParameterx",
2453bf215546Sopenharmony_ci    "PointParameterxv",
2454bf215546Sopenharmony_ci    "PointSize",
2455bf215546Sopenharmony_ci    "PointSizePointerOES",
2456bf215546Sopenharmony_ci    "PointSizex",
2457bf215546Sopenharmony_ci    "PolygonMode",
2458bf215546Sopenharmony_ci    "PolygonOffset",
2459bf215546Sopenharmony_ci    "PolygonOffsetx",
2460bf215546Sopenharmony_ci    "PolygonStipple",
2461bf215546Sopenharmony_ci    "PopAttrib",
2462bf215546Sopenharmony_ci    "PopClientAttrib",
2463bf215546Sopenharmony_ci    "PopDebugGroup",
2464bf215546Sopenharmony_ci    "PopMatrix",
2465bf215546Sopenharmony_ci    "PopName",
2466bf215546Sopenharmony_ci    "PrimitiveBoundingBox",
2467bf215546Sopenharmony_ci    "PrimitiveRestartIndex",
2468bf215546Sopenharmony_ci    "PrimitiveRestartIndexNV",
2469bf215546Sopenharmony_ci    "PrimitiveRestartNV",
2470bf215546Sopenharmony_ci    "PrioritizeTextures",
2471bf215546Sopenharmony_ci    "PrioritizeTexturesEXT",
2472bf215546Sopenharmony_ci    "ProgramBinary",
2473bf215546Sopenharmony_ci    "ProgramEnvParameter4dARB",
2474bf215546Sopenharmony_ci    "ProgramEnvParameter4dvARB",
2475bf215546Sopenharmony_ci    "ProgramEnvParameter4fARB",
2476bf215546Sopenharmony_ci    "ProgramEnvParameter4fvARB",
2477bf215546Sopenharmony_ci    "ProgramLocalParameter4dARB",
2478bf215546Sopenharmony_ci    "ProgramLocalParameter4dvARB",
2479bf215546Sopenharmony_ci    "ProgramLocalParameter4fARB",
2480bf215546Sopenharmony_ci    "ProgramLocalParameter4fvARB",
2481bf215546Sopenharmony_ci    "ProgramParameteri",
2482bf215546Sopenharmony_ci    "ProgramParameteriARB",
2483bf215546Sopenharmony_ci    "ProgramStringARB",
2484bf215546Sopenharmony_ci    "ProgramUniform1f",
2485bf215546Sopenharmony_ci    "ProgramUniform1fv",
2486bf215546Sopenharmony_ci    "ProgramUniform1i",
2487bf215546Sopenharmony_ci    "ProgramUniform1iv",
2488bf215546Sopenharmony_ci    "ProgramUniform1ui",
2489bf215546Sopenharmony_ci    "ProgramUniform1uiv",
2490bf215546Sopenharmony_ci    "ProgramUniform2f",
2491bf215546Sopenharmony_ci    "ProgramUniform2fv",
2492bf215546Sopenharmony_ci    "ProgramUniform2i",
2493bf215546Sopenharmony_ci    "ProgramUniform2iv",
2494bf215546Sopenharmony_ci    "ProgramUniform2ui",
2495bf215546Sopenharmony_ci    "ProgramUniform2uiv",
2496bf215546Sopenharmony_ci    "ProgramUniform3f",
2497bf215546Sopenharmony_ci    "ProgramUniform3fv",
2498bf215546Sopenharmony_ci    "ProgramUniform3i",
2499bf215546Sopenharmony_ci    "ProgramUniform3iv",
2500bf215546Sopenharmony_ci    "ProgramUniform3ui",
2501bf215546Sopenharmony_ci    "ProgramUniform3uiv",
2502bf215546Sopenharmony_ci    "ProgramUniform4f",
2503bf215546Sopenharmony_ci    "ProgramUniform4fv",
2504bf215546Sopenharmony_ci    "ProgramUniform4i",
2505bf215546Sopenharmony_ci    "ProgramUniform4iv",
2506bf215546Sopenharmony_ci    "ProgramUniform4ui",
2507bf215546Sopenharmony_ci    "ProgramUniform4uiv",
2508bf215546Sopenharmony_ci    "ProgramUniformMatrix2fv",
2509bf215546Sopenharmony_ci    "ProgramUniformMatrix2x3fv",
2510bf215546Sopenharmony_ci    "ProgramUniformMatrix2x4fv",
2511bf215546Sopenharmony_ci    "ProgramUniformMatrix3fv",
2512bf215546Sopenharmony_ci    "ProgramUniformMatrix3x2fv",
2513bf215546Sopenharmony_ci    "ProgramUniformMatrix3x4fv",
2514bf215546Sopenharmony_ci    "ProgramUniformMatrix4fv",
2515bf215546Sopenharmony_ci    "ProgramUniformMatrix4x2fv",
2516bf215546Sopenharmony_ci    "ProgramUniformMatrix4x3fv",
2517bf215546Sopenharmony_ci    "ProvokingVertex",
2518bf215546Sopenharmony_ci    "ProvokingVertexEXT",
2519bf215546Sopenharmony_ci    "PushAttrib",
2520bf215546Sopenharmony_ci    "PushClientAttrib",
2521bf215546Sopenharmony_ci    "PushDebugGroup",
2522bf215546Sopenharmony_ci    "PushMatrix",
2523bf215546Sopenharmony_ci    "PushName",
2524bf215546Sopenharmony_ci    "RasterPos2d",
2525bf215546Sopenharmony_ci    "RasterPos2dv",
2526bf215546Sopenharmony_ci    "RasterPos2f",
2527bf215546Sopenharmony_ci    "RasterPos2fv",
2528bf215546Sopenharmony_ci    "RasterPos2i",
2529bf215546Sopenharmony_ci    "RasterPos2iv",
2530bf215546Sopenharmony_ci    "RasterPos2s",
2531bf215546Sopenharmony_ci    "RasterPos2sv",
2532bf215546Sopenharmony_ci    "RasterPos3d",
2533bf215546Sopenharmony_ci    "RasterPos3dv",
2534bf215546Sopenharmony_ci    "RasterPos3f",
2535bf215546Sopenharmony_ci    "RasterPos3fv",
2536bf215546Sopenharmony_ci    "RasterPos3i",
2537bf215546Sopenharmony_ci    "RasterPos3iv",
2538bf215546Sopenharmony_ci    "RasterPos3s",
2539bf215546Sopenharmony_ci    "RasterPos3sv",
2540bf215546Sopenharmony_ci    "RasterPos4d",
2541bf215546Sopenharmony_ci    "RasterPos4dv",
2542bf215546Sopenharmony_ci    "RasterPos4f",
2543bf215546Sopenharmony_ci    "RasterPos4fv",
2544bf215546Sopenharmony_ci    "RasterPos4i",
2545bf215546Sopenharmony_ci    "RasterPos4iv",
2546bf215546Sopenharmony_ci    "RasterPos4s",
2547bf215546Sopenharmony_ci    "RasterPos4sv",
2548bf215546Sopenharmony_ci    "ReadBuffer",
2549bf215546Sopenharmony_ci    "ReadnPixels",
2550bf215546Sopenharmony_ci    "ReadnPixelsARB",
2551bf215546Sopenharmony_ci    "ReadPixels",
2552bf215546Sopenharmony_ci    "Rectd",
2553bf215546Sopenharmony_ci    "Rectdv",
2554bf215546Sopenharmony_ci    "Rectf",
2555bf215546Sopenharmony_ci    "Rectfv",
2556bf215546Sopenharmony_ci    "Recti",
2557bf215546Sopenharmony_ci    "Rectiv",
2558bf215546Sopenharmony_ci    "Rects",
2559bf215546Sopenharmony_ci    "Rectsv",
2560bf215546Sopenharmony_ci    "ReleaseShaderCompiler",
2561bf215546Sopenharmony_ci    "RenderbufferStorage",
2562bf215546Sopenharmony_ci    "RenderbufferStorageEXT",
2563bf215546Sopenharmony_ci    "RenderbufferStorageMultisample",
2564bf215546Sopenharmony_ci    "RenderbufferStorageMultisampleEXT",
2565bf215546Sopenharmony_ci    "RenderMode",
2566bf215546Sopenharmony_ci    "ResetHistogram",
2567bf215546Sopenharmony_ci    "ResetMinmax",
2568bf215546Sopenharmony_ci    "ResumeTransformFeedback",
2569bf215546Sopenharmony_ci    "Rotated",
2570bf215546Sopenharmony_ci    "Rotatef",
2571bf215546Sopenharmony_ci    "Rotatex",
2572bf215546Sopenharmony_ci    "SampleCoverage",
2573bf215546Sopenharmony_ci    "SampleCoverageARB",
2574bf215546Sopenharmony_ci    "SampleCoveragex",
2575bf215546Sopenharmony_ci    "SampleMaski",
2576bf215546Sopenharmony_ci    "SamplerParameterf",
2577bf215546Sopenharmony_ci    "SamplerParameterfv",
2578bf215546Sopenharmony_ci    "SamplerParameteri",
2579bf215546Sopenharmony_ci    "SamplerParameterIiv",
2580bf215546Sopenharmony_ci    "SamplerParameterIuiv",
2581bf215546Sopenharmony_ci    "SamplerParameteriv",
2582bf215546Sopenharmony_ci    "Scaled",
2583bf215546Sopenharmony_ci    "Scalef",
2584bf215546Sopenharmony_ci    "Scalex",
2585bf215546Sopenharmony_ci    "Scissor",
2586bf215546Sopenharmony_ci    "ScissorArrayv",
2587bf215546Sopenharmony_ci    "ScissorIndexed",
2588bf215546Sopenharmony_ci    "ScissorIndexedv",
2589bf215546Sopenharmony_ci    "SecondaryColor3b",
2590bf215546Sopenharmony_ci    "SecondaryColor3bEXT",
2591bf215546Sopenharmony_ci    "SecondaryColor3bv",
2592bf215546Sopenharmony_ci    "SecondaryColor3bvEXT",
2593bf215546Sopenharmony_ci    "SecondaryColor3d",
2594bf215546Sopenharmony_ci    "SecondaryColor3dEXT",
2595bf215546Sopenharmony_ci    "SecondaryColor3dv",
2596bf215546Sopenharmony_ci    "SecondaryColor3dvEXT",
2597bf215546Sopenharmony_ci    "SecondaryColor3f",
2598bf215546Sopenharmony_ci    "SecondaryColor3fEXT",
2599bf215546Sopenharmony_ci    "SecondaryColor3fv",
2600bf215546Sopenharmony_ci    "SecondaryColor3fvEXT",
2601bf215546Sopenharmony_ci    "SecondaryColor3i",
2602bf215546Sopenharmony_ci    "SecondaryColor3iEXT",
2603bf215546Sopenharmony_ci    "SecondaryColor3iv",
2604bf215546Sopenharmony_ci    "SecondaryColor3ivEXT",
2605bf215546Sopenharmony_ci    "SecondaryColor3s",
2606bf215546Sopenharmony_ci    "SecondaryColor3sEXT",
2607bf215546Sopenharmony_ci    "SecondaryColor3sv",
2608bf215546Sopenharmony_ci    "SecondaryColor3svEXT",
2609bf215546Sopenharmony_ci    "SecondaryColor3ub",
2610bf215546Sopenharmony_ci    "SecondaryColor3ubEXT",
2611bf215546Sopenharmony_ci    "SecondaryColor3ubv",
2612bf215546Sopenharmony_ci    "SecondaryColor3ubvEXT",
2613bf215546Sopenharmony_ci    "SecondaryColor3ui",
2614bf215546Sopenharmony_ci    "SecondaryColor3uiEXT",
2615bf215546Sopenharmony_ci    "SecondaryColor3uiv",
2616bf215546Sopenharmony_ci    "SecondaryColor3uivEXT",
2617bf215546Sopenharmony_ci    "SecondaryColor3us",
2618bf215546Sopenharmony_ci    "SecondaryColor3usEXT",
2619bf215546Sopenharmony_ci    "SecondaryColor3usv",
2620bf215546Sopenharmony_ci    "SecondaryColor3usvEXT",
2621bf215546Sopenharmony_ci    "SecondaryColorP3ui",
2622bf215546Sopenharmony_ci    "SecondaryColorP3uiv",
2623bf215546Sopenharmony_ci    "SecondaryColorPointer",
2624bf215546Sopenharmony_ci    "SecondaryColorPointerEXT",
2625bf215546Sopenharmony_ci    "SelectBuffer",
2626bf215546Sopenharmony_ci    "SeparableFilter2D",
2627bf215546Sopenharmony_ci    "ShadeModel",
2628bf215546Sopenharmony_ci    "ShaderBinary",
2629bf215546Sopenharmony_ci    "ShaderSource",
2630bf215546Sopenharmony_ci    "ShaderSourceARB",
2631bf215546Sopenharmony_ci    "StencilFunc",
2632bf215546Sopenharmony_ci    "StencilFuncSeparate",
2633bf215546Sopenharmony_ci    "StencilMask",
2634bf215546Sopenharmony_ci    "StencilMaskSeparate",
2635bf215546Sopenharmony_ci    "StencilOp",
2636bf215546Sopenharmony_ci    "StencilOpSeparate",
2637bf215546Sopenharmony_ci    "TexBuffer",
2638bf215546Sopenharmony_ci    "TexBufferARB",
2639bf215546Sopenharmony_ci    "TexBufferRange",
2640bf215546Sopenharmony_ci    "TexCoord1d",
2641bf215546Sopenharmony_ci    "TexCoord1dv",
2642bf215546Sopenharmony_ci    "TexCoord1f",
2643bf215546Sopenharmony_ci    "TexCoord1fv",
2644bf215546Sopenharmony_ci    "TexCoord1i",
2645bf215546Sopenharmony_ci    "TexCoord1iv",
2646bf215546Sopenharmony_ci    "TexCoord1s",
2647bf215546Sopenharmony_ci    "TexCoord1sv",
2648bf215546Sopenharmony_ci    "TexCoord2d",
2649bf215546Sopenharmony_ci    "TexCoord2dv",
2650bf215546Sopenharmony_ci    "TexCoord2f",
2651bf215546Sopenharmony_ci    "TexCoord2fv",
2652bf215546Sopenharmony_ci    "TexCoord2i",
2653bf215546Sopenharmony_ci    "TexCoord2iv",
2654bf215546Sopenharmony_ci    "TexCoord2s",
2655bf215546Sopenharmony_ci    "TexCoord2sv",
2656bf215546Sopenharmony_ci    "TexCoord3d",
2657bf215546Sopenharmony_ci    "TexCoord3dv",
2658bf215546Sopenharmony_ci    "TexCoord3f",
2659bf215546Sopenharmony_ci    "TexCoord3fv",
2660bf215546Sopenharmony_ci    "TexCoord3i",
2661bf215546Sopenharmony_ci    "TexCoord3iv",
2662bf215546Sopenharmony_ci    "TexCoord3s",
2663bf215546Sopenharmony_ci    "TexCoord3sv",
2664bf215546Sopenharmony_ci    "TexCoord4d",
2665bf215546Sopenharmony_ci    "TexCoord4dv",
2666bf215546Sopenharmony_ci    "TexCoord4f",
2667bf215546Sopenharmony_ci    "TexCoord4fv",
2668bf215546Sopenharmony_ci    "TexCoord4i",
2669bf215546Sopenharmony_ci    "TexCoord4iv",
2670bf215546Sopenharmony_ci    "TexCoord4s",
2671bf215546Sopenharmony_ci    "TexCoord4sv",
2672bf215546Sopenharmony_ci    "TexCoordP1ui",
2673bf215546Sopenharmony_ci    "TexCoordP1uiv",
2674bf215546Sopenharmony_ci    "TexCoordP2ui",
2675bf215546Sopenharmony_ci    "TexCoordP2uiv",
2676bf215546Sopenharmony_ci    "TexCoordP3ui",
2677bf215546Sopenharmony_ci    "TexCoordP3uiv",
2678bf215546Sopenharmony_ci    "TexCoordP4ui",
2679bf215546Sopenharmony_ci    "TexCoordP4uiv",
2680bf215546Sopenharmony_ci    "TexCoordPointer",
2681bf215546Sopenharmony_ci    "TexCoordPointerEXT",
2682bf215546Sopenharmony_ci    "TexEnvf",
2683bf215546Sopenharmony_ci    "TexEnvfv",
2684bf215546Sopenharmony_ci    "TexEnvi",
2685bf215546Sopenharmony_ci    "TexEnviv",
2686bf215546Sopenharmony_ci    "TexEnvx",
2687bf215546Sopenharmony_ci    "TexEnvxv",
2688bf215546Sopenharmony_ci    "TexGend",
2689bf215546Sopenharmony_ci    "TexGendv",
2690bf215546Sopenharmony_ci    "TexGenf",
2691bf215546Sopenharmony_ci    "TexGenfv",
2692bf215546Sopenharmony_ci    "TexGeni",
2693bf215546Sopenharmony_ci    "TexGeniv",
2694bf215546Sopenharmony_ci    "TexImage1D",
2695bf215546Sopenharmony_ci    "TexImage2D",
2696bf215546Sopenharmony_ci    "TexImage2DMultisample",
2697bf215546Sopenharmony_ci    "TexImage3D",
2698bf215546Sopenharmony_ci    "TexImage3DEXT",
2699bf215546Sopenharmony_ci    "TexImage3DMultisample",
2700bf215546Sopenharmony_ci    "TexParameterf",
2701bf215546Sopenharmony_ci    "TexParameterfv",
2702bf215546Sopenharmony_ci    "TexParameteri",
2703bf215546Sopenharmony_ci    "TexParameterIiv",
2704bf215546Sopenharmony_ci    "TexParameterIivEXT",
2705bf215546Sopenharmony_ci    "TexParameterIuiv",
2706bf215546Sopenharmony_ci    "TexParameterIuivEXT",
2707bf215546Sopenharmony_ci    "TexParameteriv",
2708bf215546Sopenharmony_ci    "TexParameterx",
2709bf215546Sopenharmony_ci    "TexParameterxv",
2710bf215546Sopenharmony_ci    "TexStorage1D",
2711bf215546Sopenharmony_ci    "TexStorage2D",
2712bf215546Sopenharmony_ci    "TexStorage2DMultisample",
2713bf215546Sopenharmony_ci    "TexStorage3D",
2714bf215546Sopenharmony_ci    "TexStorage3DMultisample",
2715bf215546Sopenharmony_ci    "TexSubImage1D",
2716bf215546Sopenharmony_ci    "TexSubImage2D",
2717bf215546Sopenharmony_ci    "TexSubImage3D",
2718bf215546Sopenharmony_ci    "TexSubImage3DEXT",
2719bf215546Sopenharmony_ci    "TextureBarrierNV",
2720bf215546Sopenharmony_ci    "TextureStorage1DEXT",
2721bf215546Sopenharmony_ci    "TextureStorage2DEXT",
2722bf215546Sopenharmony_ci    "TextureStorage3DEXT",
2723bf215546Sopenharmony_ci    "TextureView",
2724bf215546Sopenharmony_ci    "TransformFeedbackVaryings",
2725bf215546Sopenharmony_ci    "Translated",
2726bf215546Sopenharmony_ci    "Translatef",
2727bf215546Sopenharmony_ci    "Translatex",
2728bf215546Sopenharmony_ci    "Uniform1f",
2729bf215546Sopenharmony_ci    "Uniform1fARB",
2730bf215546Sopenharmony_ci    "Uniform1fv",
2731bf215546Sopenharmony_ci    "Uniform1fvARB",
2732bf215546Sopenharmony_ci    "Uniform1i",
2733bf215546Sopenharmony_ci    "Uniform1iARB",
2734bf215546Sopenharmony_ci    "Uniform1iv",
2735bf215546Sopenharmony_ci    "Uniform1ivARB",
2736bf215546Sopenharmony_ci    "Uniform1ui",
2737bf215546Sopenharmony_ci    "Uniform1uiEXT",
2738bf215546Sopenharmony_ci    "Uniform1uiv",
2739bf215546Sopenharmony_ci    "Uniform1uivEXT",
2740bf215546Sopenharmony_ci    "Uniform2f",
2741bf215546Sopenharmony_ci    "Uniform2fARB",
2742bf215546Sopenharmony_ci    "Uniform2fv",
2743bf215546Sopenharmony_ci    "Uniform2fvARB",
2744bf215546Sopenharmony_ci    "Uniform2i",
2745bf215546Sopenharmony_ci    "Uniform2iARB",
2746bf215546Sopenharmony_ci    "Uniform2iv",
2747bf215546Sopenharmony_ci    "Uniform2ivARB",
2748bf215546Sopenharmony_ci    "Uniform2ui",
2749bf215546Sopenharmony_ci    "Uniform2uiEXT",
2750bf215546Sopenharmony_ci    "Uniform2uiv",
2751bf215546Sopenharmony_ci    "Uniform2uivEXT",
2752bf215546Sopenharmony_ci    "Uniform3f",
2753bf215546Sopenharmony_ci    "Uniform3fARB",
2754bf215546Sopenharmony_ci    "Uniform3fv",
2755bf215546Sopenharmony_ci    "Uniform3fvARB",
2756bf215546Sopenharmony_ci    "Uniform3i",
2757bf215546Sopenharmony_ci    "Uniform3iARB",
2758bf215546Sopenharmony_ci    "Uniform3iv",
2759bf215546Sopenharmony_ci    "Uniform3ivARB",
2760bf215546Sopenharmony_ci    "Uniform3ui",
2761bf215546Sopenharmony_ci    "Uniform3uiEXT",
2762bf215546Sopenharmony_ci    "Uniform3uiv",
2763bf215546Sopenharmony_ci    "Uniform3uivEXT",
2764bf215546Sopenharmony_ci    "Uniform4f",
2765bf215546Sopenharmony_ci    "Uniform4fARB",
2766bf215546Sopenharmony_ci    "Uniform4fv",
2767bf215546Sopenharmony_ci    "Uniform4fvARB",
2768bf215546Sopenharmony_ci    "Uniform4i",
2769bf215546Sopenharmony_ci    "Uniform4iARB",
2770bf215546Sopenharmony_ci    "Uniform4iv",
2771bf215546Sopenharmony_ci    "Uniform4ivARB",
2772bf215546Sopenharmony_ci    "Uniform4ui",
2773bf215546Sopenharmony_ci    "Uniform4uiEXT",
2774bf215546Sopenharmony_ci    "Uniform4uiv",
2775bf215546Sopenharmony_ci    "Uniform4uivEXT",
2776bf215546Sopenharmony_ci    "UniformBlockBinding",
2777bf215546Sopenharmony_ci    "UniformMatrix2fv",
2778bf215546Sopenharmony_ci    "UniformMatrix2fvARB",
2779bf215546Sopenharmony_ci    "UniformMatrix2x3fv",
2780bf215546Sopenharmony_ci    "UniformMatrix2x4fv",
2781bf215546Sopenharmony_ci    "UniformMatrix3fv",
2782bf215546Sopenharmony_ci    "UniformMatrix3fvARB",
2783bf215546Sopenharmony_ci    "UniformMatrix3x2fv",
2784bf215546Sopenharmony_ci    "UniformMatrix3x4fv",
2785bf215546Sopenharmony_ci    "UniformMatrix4fv",
2786bf215546Sopenharmony_ci    "UniformMatrix4fvARB",
2787bf215546Sopenharmony_ci    "UniformMatrix4x2fv",
2788bf215546Sopenharmony_ci    "UniformMatrix4x3fv",
2789bf215546Sopenharmony_ci    "UnlockArraysEXT",
2790bf215546Sopenharmony_ci    "UnmapBuffer",
2791bf215546Sopenharmony_ci    "UnmapBufferARB",
2792bf215546Sopenharmony_ci    "UseProgram",
2793bf215546Sopenharmony_ci    "UseProgramObjectARB",
2794bf215546Sopenharmony_ci    "UseProgramStages",
2795bf215546Sopenharmony_ci    "ValidateProgram",
2796bf215546Sopenharmony_ci    "ValidateProgramARB",
2797bf215546Sopenharmony_ci    "ValidateProgramPipeline",
2798bf215546Sopenharmony_ci    "Vertex2d",
2799bf215546Sopenharmony_ci    "Vertex2dv",
2800bf215546Sopenharmony_ci    "Vertex2f",
2801bf215546Sopenharmony_ci    "Vertex2fv",
2802bf215546Sopenharmony_ci    "Vertex2i",
2803bf215546Sopenharmony_ci    "Vertex2iv",
2804bf215546Sopenharmony_ci    "Vertex2s",
2805bf215546Sopenharmony_ci    "Vertex2sv",
2806bf215546Sopenharmony_ci    "Vertex3d",
2807bf215546Sopenharmony_ci    "Vertex3dv",
2808bf215546Sopenharmony_ci    "Vertex3f",
2809bf215546Sopenharmony_ci    "Vertex3fv",
2810bf215546Sopenharmony_ci    "Vertex3i",
2811bf215546Sopenharmony_ci    "Vertex3iv",
2812bf215546Sopenharmony_ci    "Vertex3s",
2813bf215546Sopenharmony_ci    "Vertex3sv",
2814bf215546Sopenharmony_ci    "Vertex4d",
2815bf215546Sopenharmony_ci    "Vertex4dv",
2816bf215546Sopenharmony_ci    "Vertex4f",
2817bf215546Sopenharmony_ci    "Vertex4fv",
2818bf215546Sopenharmony_ci    "Vertex4i",
2819bf215546Sopenharmony_ci    "Vertex4iv",
2820bf215546Sopenharmony_ci    "Vertex4s",
2821bf215546Sopenharmony_ci    "Vertex4sv",
2822bf215546Sopenharmony_ci    "VertexAttrib1d",
2823bf215546Sopenharmony_ci    "VertexAttrib1dARB",
2824bf215546Sopenharmony_ci    "VertexAttrib1dv",
2825bf215546Sopenharmony_ci    "VertexAttrib1dvARB",
2826bf215546Sopenharmony_ci    "VertexAttrib1f",
2827bf215546Sopenharmony_ci    "VertexAttrib1fARB",
2828bf215546Sopenharmony_ci    "VertexAttrib1fv",
2829bf215546Sopenharmony_ci    "VertexAttrib1fvARB",
2830bf215546Sopenharmony_ci    "VertexAttrib1s",
2831bf215546Sopenharmony_ci    "VertexAttrib1sARB",
2832bf215546Sopenharmony_ci    "VertexAttrib1sv",
2833bf215546Sopenharmony_ci    "VertexAttrib1svARB",
2834bf215546Sopenharmony_ci    "VertexAttrib2d",
2835bf215546Sopenharmony_ci    "VertexAttrib2dARB",
2836bf215546Sopenharmony_ci    "VertexAttrib2dv",
2837bf215546Sopenharmony_ci    "VertexAttrib2dvARB",
2838bf215546Sopenharmony_ci    "VertexAttrib2f",
2839bf215546Sopenharmony_ci    "VertexAttrib2fARB",
2840bf215546Sopenharmony_ci    "VertexAttrib2fv",
2841bf215546Sopenharmony_ci    "VertexAttrib2fvARB",
2842bf215546Sopenharmony_ci    "VertexAttrib2s",
2843bf215546Sopenharmony_ci    "VertexAttrib2sARB",
2844bf215546Sopenharmony_ci    "VertexAttrib2sv",
2845bf215546Sopenharmony_ci    "VertexAttrib2svARB",
2846bf215546Sopenharmony_ci    "VertexAttrib3d",
2847bf215546Sopenharmony_ci    "VertexAttrib3dARB",
2848bf215546Sopenharmony_ci    "VertexAttrib3dv",
2849bf215546Sopenharmony_ci    "VertexAttrib3dvARB",
2850bf215546Sopenharmony_ci    "VertexAttrib3f",
2851bf215546Sopenharmony_ci    "VertexAttrib3fARB",
2852bf215546Sopenharmony_ci    "VertexAttrib3fv",
2853bf215546Sopenharmony_ci    "VertexAttrib3fvARB",
2854bf215546Sopenharmony_ci    "VertexAttrib3s",
2855bf215546Sopenharmony_ci    "VertexAttrib3sARB",
2856bf215546Sopenharmony_ci    "VertexAttrib3sv",
2857bf215546Sopenharmony_ci    "VertexAttrib3svARB",
2858bf215546Sopenharmony_ci    "VertexAttrib4bv",
2859bf215546Sopenharmony_ci    "VertexAttrib4bvARB",
2860bf215546Sopenharmony_ci    "VertexAttrib4d",
2861bf215546Sopenharmony_ci    "VertexAttrib4dARB",
2862bf215546Sopenharmony_ci    "VertexAttrib4dv",
2863bf215546Sopenharmony_ci    "VertexAttrib4dvARB",
2864bf215546Sopenharmony_ci    "VertexAttrib4f",
2865bf215546Sopenharmony_ci    "VertexAttrib4fARB",
2866bf215546Sopenharmony_ci    "VertexAttrib4fv",
2867bf215546Sopenharmony_ci    "VertexAttrib4fvARB",
2868bf215546Sopenharmony_ci    "VertexAttrib4iv",
2869bf215546Sopenharmony_ci    "VertexAttrib4ivARB",
2870bf215546Sopenharmony_ci    "VertexAttrib4Nbv",
2871bf215546Sopenharmony_ci    "VertexAttrib4NbvARB",
2872bf215546Sopenharmony_ci    "VertexAttrib4Niv",
2873bf215546Sopenharmony_ci    "VertexAttrib4NivARB",
2874bf215546Sopenharmony_ci    "VertexAttrib4Nsv",
2875bf215546Sopenharmony_ci    "VertexAttrib4NsvARB",
2876bf215546Sopenharmony_ci    "VertexAttrib4Nub",
2877bf215546Sopenharmony_ci    "VertexAttrib4NubARB",
2878bf215546Sopenharmony_ci    "VertexAttrib4Nubv",
2879bf215546Sopenharmony_ci    "VertexAttrib4NubvARB",
2880bf215546Sopenharmony_ci    "VertexAttrib4Nuiv",
2881bf215546Sopenharmony_ci    "VertexAttrib4NuivARB",
2882bf215546Sopenharmony_ci    "VertexAttrib4Nusv",
2883bf215546Sopenharmony_ci    "VertexAttrib4NusvARB",
2884bf215546Sopenharmony_ci    "VertexAttrib4s",
2885bf215546Sopenharmony_ci    "VertexAttrib4sARB",
2886bf215546Sopenharmony_ci    "VertexAttrib4sv",
2887bf215546Sopenharmony_ci    "VertexAttrib4svARB",
2888bf215546Sopenharmony_ci    "VertexAttrib4ubv",
2889bf215546Sopenharmony_ci    "VertexAttrib4ubvARB",
2890bf215546Sopenharmony_ci    "VertexAttrib4uiv",
2891bf215546Sopenharmony_ci    "VertexAttrib4uivARB",
2892bf215546Sopenharmony_ci    "VertexAttrib4usv",
2893bf215546Sopenharmony_ci    "VertexAttrib4usvARB",
2894bf215546Sopenharmony_ci    "VertexAttribBinding",
2895bf215546Sopenharmony_ci    "VertexAttribDivisor",
2896bf215546Sopenharmony_ci    "VertexAttribDivisorARB",
2897bf215546Sopenharmony_ci    "VertexAttribFormat",
2898bf215546Sopenharmony_ci    "VertexAttribI1i",
2899bf215546Sopenharmony_ci    "VertexAttribI1iEXT",
2900bf215546Sopenharmony_ci    "VertexAttribI1iv",
2901bf215546Sopenharmony_ci    "VertexAttribI1ivEXT",
2902bf215546Sopenharmony_ci    "VertexAttribI1ui",
2903bf215546Sopenharmony_ci    "VertexAttribI1uiEXT",
2904bf215546Sopenharmony_ci    "VertexAttribI1uiv",
2905bf215546Sopenharmony_ci    "VertexAttribI1uivEXT",
2906bf215546Sopenharmony_ci    "VertexAttribI2i",
2907bf215546Sopenharmony_ci    "VertexAttribI2iEXT",
2908bf215546Sopenharmony_ci    "VertexAttribI2iv",
2909bf215546Sopenharmony_ci    "VertexAttribI2ivEXT",
2910bf215546Sopenharmony_ci    "VertexAttribI2ui",
2911bf215546Sopenharmony_ci    "VertexAttribI2uiEXT",
2912bf215546Sopenharmony_ci    "VertexAttribI2uiv",
2913bf215546Sopenharmony_ci    "VertexAttribI2uivEXT",
2914bf215546Sopenharmony_ci    "VertexAttribI3i",
2915bf215546Sopenharmony_ci    "VertexAttribI3iEXT",
2916bf215546Sopenharmony_ci    "VertexAttribI3iv",
2917bf215546Sopenharmony_ci    "VertexAttribI3ivEXT",
2918bf215546Sopenharmony_ci    "VertexAttribI3ui",
2919bf215546Sopenharmony_ci    "VertexAttribI3uiEXT",
2920bf215546Sopenharmony_ci    "VertexAttribI3uiv",
2921bf215546Sopenharmony_ci    "VertexAttribI3uivEXT",
2922bf215546Sopenharmony_ci    "VertexAttribI4bv",
2923bf215546Sopenharmony_ci    "VertexAttribI4bvEXT",
2924bf215546Sopenharmony_ci    "VertexAttribI4i",
2925bf215546Sopenharmony_ci    "VertexAttribI4iEXT",
2926bf215546Sopenharmony_ci    "VertexAttribI4iv",
2927bf215546Sopenharmony_ci    "VertexAttribI4ivEXT",
2928bf215546Sopenharmony_ci    "VertexAttribI4sv",
2929bf215546Sopenharmony_ci    "VertexAttribI4svEXT",
2930bf215546Sopenharmony_ci    "VertexAttribI4ubv",
2931bf215546Sopenharmony_ci    "VertexAttribI4ubvEXT",
2932bf215546Sopenharmony_ci    "VertexAttribI4ui",
2933bf215546Sopenharmony_ci    "VertexAttribI4uiEXT",
2934bf215546Sopenharmony_ci    "VertexAttribI4uiv",
2935bf215546Sopenharmony_ci    "VertexAttribI4uivEXT",
2936bf215546Sopenharmony_ci    "VertexAttribI4usv",
2937bf215546Sopenharmony_ci    "VertexAttribI4usvEXT",
2938bf215546Sopenharmony_ci    "VertexAttribIFormat",
2939bf215546Sopenharmony_ci    "VertexAttribIPointer",
2940bf215546Sopenharmony_ci    "VertexAttribIPointerEXT",
2941bf215546Sopenharmony_ci    "VertexAttribLFormat",
2942bf215546Sopenharmony_ci    "VertexAttribP1ui",
2943bf215546Sopenharmony_ci    "VertexAttribP1uiv",
2944bf215546Sopenharmony_ci    "VertexAttribP2ui",
2945bf215546Sopenharmony_ci    "VertexAttribP2uiv",
2946bf215546Sopenharmony_ci    "VertexAttribP3ui",
2947bf215546Sopenharmony_ci    "VertexAttribP3uiv",
2948bf215546Sopenharmony_ci    "VertexAttribP4ui",
2949bf215546Sopenharmony_ci    "VertexAttribP4uiv",
2950bf215546Sopenharmony_ci    "VertexAttribPointer",
2951bf215546Sopenharmony_ci    "VertexAttribPointerARB",
2952bf215546Sopenharmony_ci    "VertexBindingDivisor",
2953bf215546Sopenharmony_ci    "VertexP2ui",
2954bf215546Sopenharmony_ci    "VertexP2uiv",
2955bf215546Sopenharmony_ci    "VertexP3ui",
2956bf215546Sopenharmony_ci    "VertexP3uiv",
2957bf215546Sopenharmony_ci    "VertexP4ui",
2958bf215546Sopenharmony_ci    "VertexP4uiv",
2959bf215546Sopenharmony_ci    "VertexPointer",
2960bf215546Sopenharmony_ci    "VertexPointerEXT",
2961bf215546Sopenharmony_ci    "Viewport",
2962bf215546Sopenharmony_ci    "ViewportArrayv",
2963bf215546Sopenharmony_ci    "ViewportIndexedf",
2964bf215546Sopenharmony_ci    "ViewportIndexedfv",
2965bf215546Sopenharmony_ci    "WaitSync",
2966bf215546Sopenharmony_ci    "WindowPos2d",
2967bf215546Sopenharmony_ci    "WindowPos2dARB",
2968bf215546Sopenharmony_ci    "WindowPos2dv",
2969bf215546Sopenharmony_ci    "WindowPos2dvARB",
2970bf215546Sopenharmony_ci    "WindowPos2f",
2971bf215546Sopenharmony_ci    "WindowPos2fARB",
2972bf215546Sopenharmony_ci    "WindowPos2fv",
2973bf215546Sopenharmony_ci    "WindowPos2fvARB",
2974bf215546Sopenharmony_ci    "WindowPos2i",
2975bf215546Sopenharmony_ci    "WindowPos2iARB",
2976bf215546Sopenharmony_ci    "WindowPos2iv",
2977bf215546Sopenharmony_ci    "WindowPos2ivARB",
2978bf215546Sopenharmony_ci    "WindowPos2s",
2979bf215546Sopenharmony_ci    "WindowPos2sARB",
2980bf215546Sopenharmony_ci    "WindowPos2sv",
2981bf215546Sopenharmony_ci    "WindowPos2svARB",
2982bf215546Sopenharmony_ci    "WindowPos3d",
2983bf215546Sopenharmony_ci    "WindowPos3dARB",
2984bf215546Sopenharmony_ci    "WindowPos3dv",
2985bf215546Sopenharmony_ci    "WindowPos3dvARB",
2986bf215546Sopenharmony_ci    "WindowPos3f",
2987bf215546Sopenharmony_ci    "WindowPos3fARB",
2988bf215546Sopenharmony_ci    "WindowPos3fv",
2989bf215546Sopenharmony_ci    "WindowPos3fvARB",
2990bf215546Sopenharmony_ci    "WindowPos3i",
2991bf215546Sopenharmony_ci    "WindowPos3iARB",
2992bf215546Sopenharmony_ci    "WindowPos3iv",
2993bf215546Sopenharmony_ci    "WindowPos3ivARB",
2994bf215546Sopenharmony_ci    "WindowPos3s",
2995bf215546Sopenharmony_ci    "WindowPos3sARB",
2996bf215546Sopenharmony_ci    "WindowPos3sv",
2997bf215546Sopenharmony_ci    "WindowPos3svARB",
2998bf215546Sopenharmony_ci]
2999bf215546Sopenharmony_ci
3000bf215546Sopenharmony_ci"""Functions that need dispatch slots but are not used
3001bf215546Sopenharmony_ci
3002bf215546Sopenharmony_ciSome of these functions may have GLX protocol support (for
3003bf215546Sopenharmony_ciindirect-rendering).  Other were used in previous versions of Mesa.  They keep
3004bf215546Sopenharmony_cislots in the dispatch table so that newer versions of libGL can still be used
3005bf215546Sopenharmony_ciwith older drivers."""
3006bf215546Sopenharmony_ciunused_functions = [
3007bf215546Sopenharmony_ci    # SGIS_multisample
3008bf215546Sopenharmony_ci    "SampleMaskSGIS",
3009bf215546Sopenharmony_ci    "SamplePatternSGIS",
3010bf215546Sopenharmony_ci
3011bf215546Sopenharmony_ci    # NV_vertex_program
3012bf215546Sopenharmony_ci    "AreProgramsResidentNV",
3013bf215546Sopenharmony_ci    "ExecuteProgramNV",
3014bf215546Sopenharmony_ci    "GetProgramParameterdvNV",
3015bf215546Sopenharmony_ci    "GetProgramParameterfvNV",
3016bf215546Sopenharmony_ci    "GetProgramivNV",
3017bf215546Sopenharmony_ci    "GetProgramStringNV",
3018bf215546Sopenharmony_ci    "GetTrackMatrixivNV",
3019bf215546Sopenharmony_ci    "GetVertexAttribdvNV",
3020bf215546Sopenharmony_ci    "GetVertexAttribfvNV",
3021bf215546Sopenharmony_ci    "GetVertexAttribivNV",
3022bf215546Sopenharmony_ci    "LoadProgramNV",
3023bf215546Sopenharmony_ci    "ProgramParameters4dvNV",
3024bf215546Sopenharmony_ci    "ProgramParameters4fvNV",
3025bf215546Sopenharmony_ci    "RequestResidentProgramsNV",
3026bf215546Sopenharmony_ci    "TrackMatrixNV",
3027bf215546Sopenharmony_ci    "VertexAttribPointerNV",
3028bf215546Sopenharmony_ci
3029bf215546Sopenharmony_ci    # MESA_resize_buffers
3030bf215546Sopenharmony_ci    "ResizeBuffersMESA",
3031bf215546Sopenharmony_ci
3032bf215546Sopenharmony_ci    # ATI_envmap_bumpmap
3033bf215546Sopenharmony_ci    "TexBumpParameterfvATI",
3034bf215546Sopenharmony_ci    "TexBumpParameterivATI",
3035bf215546Sopenharmony_ci    "GetTexBumpParameterfvATI",
3036bf215546Sopenharmony_ci    "GetTexBumpParameterivATI",
3037bf215546Sopenharmony_ci
3038bf215546Sopenharmony_ci    # NV_fragment_program
3039bf215546Sopenharmony_ci    "ProgramNamedParameter4fNV",
3040bf215546Sopenharmony_ci    "ProgramNamedParameter4dNV",
3041bf215546Sopenharmony_ci    "ProgramNamedParameter4fvNV",
3042bf215546Sopenharmony_ci    "ProgramNamedParameter4dvNV",
3043bf215546Sopenharmony_ci    "GetProgramNamedParameterfvNV",
3044bf215546Sopenharmony_ci    "GetProgramNamedParameterdvNV",
3045bf215546Sopenharmony_ci
3046bf215546Sopenharmony_ci    # APPLE_flush_buffer_range
3047bf215546Sopenharmony_ci    "BufferParameteriAPPLE",
3048bf215546Sopenharmony_ci    "FlushMappedBufferRangeAPPLE",
3049bf215546Sopenharmony_ci
3050bf215546Sopenharmony_ci    # EXT_separate_shader_objects
3051bf215546Sopenharmony_ci    "UseShaderProgramEXT",
3052bf215546Sopenharmony_ci    "ActiveProgramEXT",
3053bf215546Sopenharmony_ci    "CreateShaderProgramEXT",
3054bf215546Sopenharmony_ci]
3055