summaryrefslogtreecommitdiffstats
path: root/opengl/libs/GLES_trace/src/gltrace.pb.h
blob: 9bc7c58ce4e53e8b2662e0e7388b5239658c1c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: gltrace.proto

#ifndef PROTOBUF_gltrace_2eproto__INCLUDED
#define PROTOBUF_gltrace_2eproto__INCLUDED

#include <string>

#include <google/protobuf/stubs/common.h>

#if GOOGLE_PROTOBUF_VERSION < 2003000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please update
#error your headers.
#endif
#if 2003000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please
#error regenerate this file with a newer version of protoc.
#endif

#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/repeated_field.h>
#include <google/protobuf/extension_set.h>
// @@protoc_insertion_point(includes)

namespace android {
namespace gltrace {

// Internal implementation detail -- do not call these.
void  protobuf_AddDesc_gltrace_2eproto();
void protobuf_AssignDesc_gltrace_2eproto();
void protobuf_ShutdownFile_gltrace_2eproto();

class GLMessage;
class GLMessage_DataType;
class GLMessage_FrameBuffer;

enum GLMessage_DataType_Type {
  GLMessage_DataType_Type_VOID = 1,
  GLMessage_DataType_Type_CHAR = 2,
  GLMessage_DataType_Type_BYTE = 3,
  GLMessage_DataType_Type_INT = 4,
  GLMessage_DataType_Type_FLOAT = 5,
  GLMessage_DataType_Type_BOOL = 6,
  GLMessage_DataType_Type_ENUM = 7,
  GLMessage_DataType_Type_INT64 = 8
};
bool GLMessage_DataType_Type_IsValid(int value);
const GLMessage_DataType_Type GLMessage_DataType_Type_Type_MIN = GLMessage_DataType_Type_VOID;
const GLMessage_DataType_Type GLMessage_DataType_Type_Type_MAX = GLMessage_DataType_Type_INT64;
const int GLMessage_DataType_Type_Type_ARRAYSIZE = GLMessage_DataType_Type_Type_MAX + 1;

enum GLMessage_Function {
  GLMessage_Function_glActiveTexture = 0,
  GLMessage_Function_glAlphaFunc = 1,
  GLMessage_Function_glAlphaFuncx = 2,
  GLMessage_Function_glAlphaFuncxOES = 3,
  GLMessage_Function_glAttachShader = 4,
  GLMessage_Function_glBeginPerfMonitorAMD = 5,
  GLMessage_Function_glBindAttribLocation = 6,
  GLMessage_Function_glBindBuffer = 7,
  GLMessage_Function_glBindFramebuffer = 8,
  GLMessage_Function_glBindFramebufferOES = 9,
  GLMessage_Function_glBindRenderbuffer = 10,
  GLMessage_Function_glBindRenderbufferOES = 11,
  GLMessage_Function_glBindTexture = 12,
  GLMessage_Function_glBindVertexArrayOES = 13,
  GLMessage_Function_glBlendColor = 14,
  GLMessage_Function_glBlendEquation = 15,
  GLMessage_Function_glBlendEquationOES = 16,
  GLMessage_Function_glBlendEquationSeparate = 17,
  GLMessage_Function_glBlendEquationSeparateOES = 18,
  GLMessage_Function_glBlendFunc = 19,
  GLMessage_Function_glBlendFuncSeparate = 20,
  GLMessage_Function_glBlendFuncSeparateOES = 21,
  GLMessage_Function_glBufferData = 22,
  GLMessage_Function_glBufferSubData = 23,
  GLMessage_Function_glCheckFramebufferStatus = 24,
  GLMessage_Function_glCheckFramebufferStatusOES = 25,
  GLMessage_Function_glClearColor = 26,
  GLMessage_Function_glClearColorx = 27,
  GLMessage_Function_glClearColorxOES = 28,
  GLMessage_Function_glClearDepthf = 29,
  GLMessage_Function_glClearDepthfOES = 30,
  GLMessage_Function_glClearDepthx = 31,
  GLMessage_Function_glClearDepthxOES = 32,
  GLMessage_Function_glClear = 33,
  GLMessage_Function_glClearStencil = 34,
  GLMessage_Function_glClientActiveTexture = 35,
  GLMessage_Function_glClipPlanef = 36,
  GLMessage_Function_glClipPlanefIMG = 37,
  GLMessage_Function_glClipPlanefOES = 38,
  GLMessage_Function_glClipPlanex = 39,
  GLMessage_Function_glClipPlanexIMG = 40,
  GLMessage_Function_glClipPlanexOES = 41,
  GLMessage_Function_glColor4f = 42,
  GLMessage_Function_glColor4ub = 43,
  GLMessage_Function_glColor4x = 44,
  GLMessage_Function_glColor4xOES = 45,
  GLMessage_Function_glColorMask = 46,
  GLMessage_Function_glColorPointer = 47,
  GLMessage_Function_glCompileShader = 48,
  GLMessage_Function_glCompressedTexImage2D = 49,
  GLMessage_Function_glCompressedTexImage3DOES = 50,
  GLMessage_Function_glCompressedTexSubImage2D = 51,
  GLMessage_Function_glCompressedTexSubImage3DOES = 52,
  GLMessage_Function_glCopyTexImage2D = 53,
  GLMessage_Function_glCopyTexSubImage2D = 54,
  GLMessage_Function_glCopyTexSubImage3DOES = 55,
  GLMessage_Function_glCoverageMaskNV = 56,
  GLMessage_Function_glCoverageOperationNV = 57,
  GLMessage_Function_glCreateProgram = 58,
  GLMessage_Function_glCreateShader = 59,
  GLMessage_Function_glCullFace = 60,
  GLMessage_Function_glCurrentPaletteMatrixOES = 61,
  GLMessage_Function_glDeleteBuffers = 62,
  GLMessage_Function_glDeleteFencesNV = 63,
  GLMessage_Function_glDeleteFramebuffers = 64,
  GLMessage_Function_glDeleteFramebuffersOES = 65,
  GLMessage_Function_glDeletePerfMonitorsAMD = 66,
  GLMessage_Function_glDeleteProgram = 67,
  GLMessage_Function_glDeleteRenderbuffers = 68,
  GLMessage_Function_glDeleteRenderbuffersOES = 69,
  GLMessage_Function_glDeleteShader = 70,
  GLMessage_Function_glDeleteTextures = 71,
  GLMessage_Function_glDeleteVertexArraysOES = 72,
  GLMessage_Function_glDepthFunc = 73,
  GLMessage_Function_glDepthMask = 74,
  GLMessage_Function_glDepthRangef = 75,
  GLMessage_Function_glDepthRangefOES = 76,
  GLMessage_Function_glDepthRangex = 77,
  GLMessage_Function_glDepthRangexOES = 78,
  GLMessage_Function_glDetachShader = 79,
  GLMessage_Function_glDisableClientState = 80,
  GLMessage_Function_glDisableDriverControlQCOM = 81,
  GLMessage_Function_glDisable = 82,
  GLMessage_Function_glDisableVertexAttribArray = 83,
  GLMessage_Function_glDiscardFramebufferEXT = 84,
  GLMessage_Function_glDrawArrays = 85,
  GLMessage_Function_glDrawElements = 86,
  GLMessage_Function_glDrawTexfOES = 87,
  GLMessage_Function_glDrawTexfvOES = 88,
  GLMessage_Function_glDrawTexiOES = 89,
  GLMessage_Function_glDrawTexivOES = 90,
  GLMessage_Function_glDrawTexsOES = 91,
  GLMessage_Function_glDrawTexsvOES = 92,
  GLMessage_Function_glDrawTexxOES = 93,
  GLMessage_Function_glDrawTexxvOES = 94,
  GLMessage_Function_glEGLImageTargetRenderbufferStorageOES = 95,
  GLMessage_Function_glEGLImageTargetTexture2DOES = 96,
  GLMessage_Function_glEnableClientState = 97,
  GLMessage_Function_glEnableDriverControlQCOM = 98,
  GLMessage_Function_glEnable = 99,
  GLMessage_Function_glEnableVertexAttribArray = 100,
  GLMessage_Function_glEndPerfMonitorAMD = 101,
  GLMessage_Function_glEndTilingQCOM = 102,
  GLMessage_Function_glExtGetBufferPointervQCOM = 103,
  GLMessage_Function_glExtGetBuffersQCOM = 104,
  GLMessage_Function_glExtGetFramebuffersQCOM = 105,
  GLMessage_Function_glExtGetProgramBinarySourceQCOM = 106,
  GLMessage_Function_glExtGetProgramsQCOM = 107,
  GLMessage_Function_glExtGetRenderbuffersQCOM = 108,
  GLMessage_Function_glExtGetShadersQCOM = 109,
  GLMessage_Function_glExtGetTexLevelParameterivQCOM = 110,
  GLMessage_Function_glExtGetTexSubImageQCOM = 111,
  GLMessage_Function_glExtGetTexturesQCOM = 112,
  GLMessage_Function_glExtIsProgramBinaryQCOM = 113,
  GLMessage_Function_glExtTexObjectStateOverrideiQCOM = 114,
  GLMessage_Function_glFinishFenceNV = 115,
  GLMessage_Function_glFinish = 116,
  GLMessage_Function_glFlush = 117,
  GLMessage_Function_glFogf = 118,
  GLMessage_Function_glFogfv = 119,
  GLMessage_Function_glFogx = 120,
  GLMessage_Function_glFogxOES = 121,
  GLMessage_Function_glFogxv = 122,
  GLMessage_Function_glFogxvOES = 123,
  GLMessage_Function_glFramebufferRenderbuffer = 124,
  GLMessage_Function_glFramebufferRenderbufferOES = 125,
  GLMessage_Function_glFramebufferTexture2D = 126,
  GLMessage_Function_glFramebufferTexture2DMultisampleIMG = 127,
  GLMessage_Function_glFramebufferTexture2DOES = 128,
  GLMessage_Function_glFramebufferTexture3DOES = 129,
  GLMessage_Function_glFrontFace = 130,
  GLMessage_Function_glFrustumf = 131,
  GLMessage_Function_glFrustumfOES = 132,
  GLMessage_Function_glFrustumx = 133,
  GLMessage_Function_glFrustumxOES = 134,
  GLMessage_Function_glGenBuffers = 135,
  GLMessage_Function_glGenerateMipmap = 136,
  GLMessage_Function_glGenerateMipmapOES = 137,
  GLMessage_Function_glGenFencesNV = 138,
  GLMessage_Function_glGenFramebuffers = 139,
  GLMessage_Function_glGenFramebuffersOES = 140,
  GLMessage_Function_glGenPerfMonitorsAMD = 141,
  GLMessage_Function_glGenRenderbuffers = 142,
  GLMessage_Function_glGenRenderbuffersOES = 143,
  GLMessage_Function_glGenTextures = 144,
  GLMessage_Function_glGenVertexArraysOES = 145,
  GLMessage_Function_glGetActiveAttrib = 146,
  GLMessage_Function_glGetActiveUniform = 147,
  GLMessage_Function_glGetAttachedShaders = 148,
  GLMessage_Function_glGetAttribLocation = 149,
  GLMessage_Function_glGetBooleanv = 150,
  GLMessage_Function_glGetBufferParameteriv = 151,
  GLMessage_Function_glGetBufferPointervOES = 152,
  GLMessage_Function_glGetClipPlanef = 153,
  GLMessage_Function_glGetClipPlanefOES = 154,
  GLMessage_Function_glGetClipPlanex = 155,
  GLMessage_Function_glGetClipPlanexOES = 156,
  GLMessage_Function_glGetDriverControlsQCOM = 157,
  GLMessage_Function_glGetDriverControlStringQCOM = 158,
  GLMessage_Function_glGetError = 159,
  GLMessage_Function_glGetFenceivNV = 160,
  GLMessage_Function_glGetFixedv = 161,
  GLMessage_Function_glGetFixedvOES = 162,
  GLMessage_Function_glGetFloatv = 163,
  GLMessage_Function_glGetFramebufferAttachmentParameteriv = 164,
  GLMessage_Function_glGetFramebufferAttachmentParameterivOES = 165,
  GLMessage_Function_glGetIntegerv = 166,
  GLMessage_Function_glGetLightfv = 167,
  GLMessage_Function_glGetLightxv = 168,
  GLMessage_Function_glGetLightxvOES = 169,
  GLMessage_Function_glGetMaterialfv = 170,
  GLMessage_Function_glGetMaterialxv = 171,
  GLMessage_Function_glGetMaterialxvOES = 172,
  GLMessage_Function_glGetPerfMonitorCounterDataAMD = 173,
  GLMessage_Function_glGetPerfMonitorCounterInfoAMD = 174,
  GLMessage_Function_glGetPerfMonitorCountersAMD = 175,
  GLMessage_Function_glGetPerfMonitorCounterStringAMD = 176,
  GLMessage_Function_glGetPerfMonitorGroupsAMD = 177,
  GLMessage_Function_glGetPerfMonitorGroupStringAMD = 178,
  GLMessage_Function_glGetPointerv = 179,
  GLMessage_Function_glGetProgramBinaryOES = 180,
  GLMessage_Function_glGetProgramInfoLog = 181,
  GLMessage_Function_glGetProgramiv = 182,
  GLMessage_Function_glGetRenderbufferParameteriv = 183,
  GLMessage_Function_glGetRenderbufferParameterivOES = 184,
  GLMessage_Function_glGetShaderInfoLog = 185,
  GLMessage_Function_glGetShaderiv = 186,
  GLMessage_Function_glGetShaderPrecisionFormat = 187,
  GLMessage_Function_glGetShaderSource = 188,
  GLMessage_Function_glGetString = 189,
  GLMessage_Function_glGetTexEnvfv = 190,
  GLMessage_Function_glGetTexEnviv = 191,
  GLMessage_Function_glGetTexEnvxv = 192,
  GLMessage_Function_glGetTexEnvxvOES = 193,
  GLMessage_Function_glGetTexGenfvOES = 194,
  GLMessage_Function_glGetTexGenivOES = 195,
  GLMessage_Function_glGetTexGenxvOES = 196,
  GLMessage_Function_glGetTexParameterfv = 197,
  GLMessage_Function_glGetTexParameteriv = 198,
  GLMessage_Function_glGetTexParameterxv = 199,
  GLMessage_Function_glGetTexParameterxvOES = 200,
  GLMessage_Function_glGetUniformfv = 201,
  GLMessage_Function_glGetUniformiv = 202,
  GLMessage_Function_glGetUniformLocation = 203,
  GLMessage_Function_glGetVertexAttribfv = 204,
  GLMessage_Function_glGetVertexAttribiv = 205,
  GLMessage_Function_glGetVertexAttribPointerv = 206,
  GLMessage_Function_glHint = 207,
  GLMessage_Function_glIsBuffer = 208,
  GLMessage_Function_glIsEnabled = 209,
  GLMessage_Function_glIsFenceNV = 210,
  GLMessage_Function_glIsFramebuffer = 211,
  GLMessage_Function_glIsFramebufferOES = 212,
  GLMessage_Function_glIsProgram = 213,
  GLMessage_Function_glIsRenderbuffer = 214,
  GLMessage_Function_glIsRenderbufferOES = 215,
  GLMessage_Function_glIsShader = 216,
  GLMessage_Function_glIsTexture = 217,
  GLMessage_Function_glIsVertexArrayOES = 218,
  GLMessage_Function_glLightf = 219,
  GLMessage_Function_glLightfv = 220,
  GLMessage_Function_glLightModelf = 221,
  GLMessage_Function_glLightModelfv = 222,
  GLMessage_Function_glLightModelx = 223,
  GLMessage_Function_glLightModelxOES = 224,
  GLMessage_Function_glLightModelxv = 225,
  GLMessage_Function_glLightModelxvOES = 226,
  GLMessage_Function_glLightx = 227,
  GLMessage_Function_glLightxOES = 228,
  GLMessage_Function_glLightxv = 229,
  GLMessage_Function_glLightxvOES = 230,
  GLMessage_Function_glLineWidth = 231,
  GLMessage_Function_glLineWidthx = 232,
  GLMessage_Function_glLineWidthxOES = 233,
  GLMessage_Function_glLinkProgram = 234,
  GLMessage_Function_glLoadIdentity = 235,
  GLMessage_Function_glLoadMatrixf = 236,
  GLMessage_Function_glLoadMatrixx = 237,
  GLMessage_Function_glLoadMatrixxOES = 238,
  GLMessage_Function_glLoadPaletteFromModelViewMatrixOES = 239,
  GLMessage_Function_glLogicOp = 240,
  GLMessage_Function_glMapBufferOES = 241,
  GLMessage_Function_glMaterialf = 242,
  GLMessage_Function_glMaterialfv = 243,
  GLMessage_Function_glMaterialx = 244,
  GLMessage_Function_glMaterialxOES = 245,
  GLMessage_Function_glMaterialxv = 246,
  GLMessage_Function_glMaterialxvOES = 247,
  GLMessage_Function_glMatrixIndexPointerOES = 248,
  GLMessage_Function_glMatrixMode = 249,
  GLMessage_Function_glMultiDrawArraysEXT = 250,
  GLMessage_Function_glMultiDrawElementsEXT = 251,
  GLMessage_Function_glMultiTexCoord4f = 252,
  GLMessage_Function_glMultiTexCoord4x = 253,
  GLMessage_Function_glMultiTexCoord4xOES = 254,
  GLMessage_Function_glMultMatrixf = 255,
  GLMessage_Function_glMultMatrixx = 256,
  GLMessage_Function_glMultMatrixxOES = 257,
  GLMessage_Function_glNormal3f = 258,
  GLMessage_Function_glNormal3x = 259,
  GLMessage_Function_glNormal3xOES = 260,
  GLMessage_Function_glNormalPointer = 261,
  GLMessage_Function_glOrthof = 262,
  GLMessage_Function_glOrthofOES = 263,
  GLMessage_Function_glOrthox = 264,
  GLMessage_Function_glOrthoxOES = 265,
  GLMessage_Function_glPixelStorei = 266,
  GLMessage_Function_glPointParameterf = 267,
  GLMessage_Function_glPointParameterfv = 268,
  GLMessage_Function_glPointParameterx = 269,
  GLMessage_Function_glPointParameterxOES = 270,
  GLMessage_Function_glPointParameterxv = 271,
  GLMessage_Function_glPointParameterxvOES = 272,
  GLMessage_Function_glPointSize = 273,
  GLMessage_Function_glPointSizePointerOES = 274,
  GLMessage_Function_glPointSizex = 275,
  GLMessage_Function_glPointSizexOES = 276,
  GLMessage_Function_glPolygonOffset = 277,
  GLMessage_Function_glPolygonOffsetx = 278,
  GLMessage_Function_glPolygonOffsetxOES = 279,
  GLMessage_Function_glPopMatrix = 280,
  GLMessage_Function_glProgramBinaryOES = 281,
  GLMessage_Function_glPushMatrix = 282,
  GLMessage_Function_glQueryMatrixxOES = 283,
  GLMessage_Function_glReadPixels = 284,
  GLMessage_Function_glReleaseShaderCompiler = 285,
  GLMessage_Function_glRenderbufferStorage = 286,
  GLMessage_Function_glRenderbufferStorageMultisampleIMG = 287,
  GLMessage_Function_glRenderbufferStorageOES = 288,
  GLMessage_Function_glRotatef = 289,
  GLMessage_Function_glRotatex = 290,
  GLMessage_Function_glRotatexOES = 291,
  GLMessage_Function_glSampleCoverage = 292,
  GLMessage_Function_glSampleCoveragex = 293,
  GLMessage_Function_glSampleCoveragexOES = 294,
  GLMessage_Function_glScalef = 295,
  GLMessage_Function_glScalex = 296,
  GLMessage_Function_glScalexOES = 297,
  GLMessage_Function_glScissor = 298,
  GLMessage_Function_glSelectPerfMonitorCountersAMD = 299,
  GLMessage_Function_glSetFenceNV = 300,
  GLMessage_Function_glShadeModel = 301,
  GLMessage_Function_glShaderBinary = 302,
  GLMessage_Function_glShaderSource = 303,
  GLMessage_Function_glStartTilingQCOM = 304,
  GLMessage_Function_glStencilFunc = 305,
  GLMessage_Function_glStencilFuncSeparate = 306,
  GLMessage_Function_glStencilMask = 307,
  GLMessage_Function_glStencilMaskSeparate = 308,
  GLMessage_Function_glStencilOp = 309,
  GLMessage_Function_glStencilOpSeparate = 310,
  GLMessage_Function_glTestFenceNV = 311,
  GLMessage_Function_glTexCoordPointer = 312,
  GLMessage_Function_glTexEnvf = 313,
  GLMessage_Function_glTexEnvfv = 314,
  GLMessage_Function_glTexEnvi = 315,
  GLMessage_Function_glTexEnviv = 316,
  GLMessage_Function_glTexEnvx = 317,
  GLMessage_Function_glTexEnvxOES = 318,
  GLMessage_Function_glTexEnvxv = 319,
  GLMessage_Function_glTexEnvxvOES = 320,
  GLMessage_Function_glTexGenfOES = 321,
  GLMessage_Function_glTexGenfvOES = 322,
  GLMessage_Function_glTexGeniOES = 323,
  GLMessage_Function_glTexGenivOES = 324,
  GLMessage_Function_glTexGenxOES = 325,
  GLMessage_Function_glTexGenxvOES = 326,
  GLMessage_Function_glTexImage2D = 327,
  GLMessage_Function_glTexImage3DOES = 328,
  GLMessage_Function_glTexParameterf = 329,
  GLMessage_Function_glTexParameterfv = 330,
  GLMessage_Function_glTexParameteri = 331,
  GLMessage_Function_glTexParameteriv = 332,
  GLMessage_Function_glTexParameterx = 333,
  GLMessage_Function_glTexParameterxOES = 334,
  GLMessage_Function_glTexParameterxv = 335,
  GLMessage_Function_glTexParameterxvOES = 336,
  GLMessage_Function_glTexSubImage2D = 337,
  GLMessage_Function_glTexSubImage3DOES = 338,
  GLMessage_Function_glTranslatef = 339,
  GLMessage_Function_glTranslatex = 340,
  GLMessage_Function_glTranslatexOES = 341,
  GLMessage_Function_glUniform1f = 342,
  GLMessage_Function_glUniform1fv = 343,
  GLMessage_Function_glUniform1i = 344,
  GLMessage_Function_glUniform1iv = 345,
  GLMessage_Function_glUniform2f = 346,
  GLMessage_Function_glUniform2fv = 347,
  GLMessage_Function_glUniform2i = 348,
  GLMessage_Function_glUniform2iv = 349,
  GLMessage_Function_glUniform3f = 350,
  GLMessage_Function_glUniform3fv = 351,
  GLMessage_Function_glUniform3i = 352,
  GLMessage_Function_glUniform3iv = 353,
  GLMessage_Function_glUniform4f = 354,
  GLMessage_Function_glUniform4fv = 355,
  GLMessage_Function_glUniform4i = 356,
  GLMessage_Function_glUniform4iv = 357,
  GLMessage_Function_glUniformMatrix2fv = 358,
  GLMessage_Function_glUniformMatrix3fv = 359,
  GLMessage_Function_glUniformMatrix4fv = 360,
  GLMessage_Function_glUnmapBufferOES = 361,
  GLMessage_Function_glUseProgram = 362,
  GLMessage_Function_glValidateProgram = 363,
  GLMessage_Function_glVertexAttrib1f = 364,
  GLMessage_Function_glVertexAttrib1fv = 365,
  GLMessage_Function_glVertexAttrib2f = 366,
  GLMessage_Function_glVertexAttrib2fv = 367,
  GLMessage_Function_glVertexAttrib3f = 368,
  GLMessage_Function_glVertexAttrib3fv = 369,
  GLMessage_Function_glVertexAttrib4f = 370,
  GLMessage_Function_glVertexAttrib4fv = 371,
  GLMessage_Function_glVertexAttribPointer = 372,
  GLMessage_Function_glVertexPointer = 373,
  GLMessage_Function_glViewport = 374,
  GLMessage_Function_glWeightPointerOES = 375,
  GLMessage_Function_glReadBuffer = 376,
  GLMessage_Function_glDrawRangeElements = 377,
  GLMessage_Function_glTexImage3D = 378,
  GLMessage_Function_glTexSubImage3D = 379,
  GLMessage_Function_glCopyTexSubImage3D = 380,
  GLMessage_Function_glCompressedTexImage3D = 381,
  GLMessage_Function_glCompressedTexSubImage3D = 382,
  GLMessage_Function_glGenQueries = 383,
  GLMessage_Function_glDeleteQueries = 384,
  GLMessage_Function_glIsQuery = 385,
  GLMessage_Function_glBeginQuery = 386,
  GLMessage_Function_glEndQuery = 387,
  GLMessage_Function_glGetQueryiv = 388,
  GLMessage_Function_glGetQueryObjectuiv = 389,
  GLMessage_Function_glUnmapBuffer = 390,
  GLMessage_Function_glGetBufferPointerv = 391,
  GLMessage_Function_glDrawBuffers = 392,
  GLMessage_Function_glUniformMatrix2x3fv = 393,
  GLMessage_Function_glUniformMatrix3x2fv = 394,
  GLMessage_Function_glUniformMatrix2x4fv = 395,
  GLMessage_Function_glUniformMatrix4x2fv = 396,
  GLMessage_Function_glUniformMatrix3x4fv = 397,
  GLMessage_Function_glUniformMatrix4x3fv = 398,
  GLMessage_Function_glBlitFramebuffer = 399,
  GLMessage_Function_glRenderbufferStorageMultisample = 400,
  GLMessage_Function_glFramebufferTextureLayer = 401,
  GLMessage_Function_glMapBufferRange = 402,
  GLMessage_Function_glFlushMappedBufferRange = 403,
  GLMessage_Function_glBindVertexArray = 404,
  GLMessage_Function_glDeleteVertexArrays = 405,
  GLMessage_Function_glGenVertexArrays = 406,
  GLMessage_Function_glIsVertexArray = 407,
  GLMessage_Function_glGetIntegeri_v = 408,
  GLMessage_Function_glBeginTransformFeedback = 409,
  GLMessage_Function_glEndTransformFeedback = 410,
  GLMessage_Function_glBindBufferRange = 411,
  GLMessage_Function_glBindBufferBase = 412,
  GLMessage_Function_glTransformFeedbackVaryings = 413,
  GLMessage_Function_glGetTransformFeedbackVarying = 414,
  GLMessage_Function_glVertexAttribIPointer = 415,
  GLMessage_Function_glGetVertexAttribIiv = 416,
  GLMessage_Function_glGetVertexAttribIuiv = 417,
  GLMessage_Function_glVertexAttribI4i = 418,
  GLMessage_Function_glVertexAttribI4ui = 419,
  GLMessage_Function_glVertexAttribI4iv = 420,
  GLMessage_Function_glVertexAttribI4uiv = 421,
  GLMessage_Function_glGetUniformuiv = 422,
  GLMessage_Function_glGetFragDataLocation = 423,
  GLMessage_Function_glUniform1ui = 424,
  GLMessage_Function_glUniform2ui = 425,
  GLMessage_Function_glUniform3ui = 426,
  GLMessage_Function_glUniform4ui = 427,
  GLMessage_Function_glUniform1uiv = 428,
  GLMessage_Function_glUniform2uiv = 429,
  GLMessage_Function_glUniform3uiv = 430,
  GLMessage_Function_glUniform4uiv = 431,
  GLMessage_Function_glClearBufferiv = 432,
  GLMessage_Function_glClearBufferuiv = 433,
  GLMessage_Function_glClearBufferfv = 434,
  GLMessage_Function_glClearBufferfi = 435,
  GLMessage_Function_glGetStringi = 436,
  GLMessage_Function_glCopyBufferSubData = 437,
  GLMessage_Function_glGetUniformIndices = 438,
  GLMessage_Function_glGetActiveUniformsiv = 439,
  GLMessage_Function_glGetUniformBlockIndex = 440,
  GLMessage_Function_glGetActiveUniformBlockiv = 441,
  GLMessage_Function_glGetActiveUniformBlockName = 442,
  GLMessage_Function_glUniformBlockBinding = 443,
  GLMessage_Function_glDrawArraysInstanced = 444,
  GLMessage_Function_glDrawElementsInstanced = 445,
  GLMessage_Function_glFenceSync = 446,
  GLMessage_Function_glIsSync = 447,
  GLMessage_Function_glDeleteSync = 448,
  GLMessage_Function_glClientWaitSync = 449,
  GLMessage_Function_glWaitSync = 450,
  GLMessage_Function_glGetInteger64v = 451,
  GLMessage_Function_glGetSynciv = 452,
  GLMessage_Function_glGetInteger64i_v = 453,
  GLMessage_Function_glGetBufferParameteri64v = 454,
  GLMessage_Function_glGenSamplers = 455,
  GLMessage_Function_glDeleteSamplers = 456,
  GLMessage_Function_glIsSampler = 457,
  GLMessage_Function_glBindSampler = 458,
  GLMessage_Function_glSamplerParameteri = 459,
  GLMessage_Function_glSamplerParameteriv = 460,
  GLMessage_Function_glSamplerParameterf = 461,
  GLMessage_Function_glSamplerParameterfv = 462,
  GLMessage_Function_glGetSamplerParameteriv = 463,
  GLMessage_Function_glGetSamplerParameterfv = 464,
  GLMessage_Function_glVertexAttribDivisor = 465,
  GLMessage_Function_glBindTransformFeedback = 466,
  GLMessage_Function_glDeleteTransformFeedbacks = 467,
  GLMessage_Function_glGenTransformFeedbacks = 468,
  GLMessage_Function_glIsTransformFeedback = 469,
  GLMessage_Function_glPauseTransformFeedback = 470,
  GLMessage_Function_glResumeTransformFeedback = 471,
  GLMessage_Function_glGetProgramBinary = 472,
  GLMessage_Function_glProgramBinary = 473,
  GLMessage_Function_glProgramParameteri = 474,
  GLMessage_Function_glInvalidateFramebuffer = 475,
  GLMessage_Function_glInvalidateSubFramebuffer = 476,
  GLMessage_Function_glTexStorage2D = 477,
  GLMessage_Function_glTexStorage3D = 478,
  GLMessage_Function_glGetInternalformativ = 479,
  GLMessage_Function_glBeginPerfQueryINTEL = 480,
  GLMessage_Function_glCreatePerfQueryINTEL = 481,
  GLMessage_Function_glDeletePerfQueryINTEL = 482,
  GLMessage_Function_glEndPerfQueryINTEL = 483,
  GLMessage_Function_glGetFirstPerfQueryIdINTEL = 484,
  GLMessage_Function_glGetNextPerfQueryIdINTEL = 485,
  GLMessage_Function_glGetPerfCounterInfoINTEL = 486,
  GLMessage_Function_glGetPerfQueryDataINTEL = 487,
  GLMessage_Function_glGetPerfQueryIdByNameINTEL = 488,
  GLMessage_Function_glGetPerfQueryInfoINTEL = 489,
  GLMessage_Function_glBlendBarrierKHR = 490,
  GLMessage_Function_glBlendBarrierNV = 491,
  GLMessage_Function_glBlendParameteriNV = 492,
  GLMessage_Function_glBlitFramebufferNV = 493,
  GLMessage_Function_glFenceSyncAPPLE = 494,
  GLMessage_Function_glIsSyncAPPLE = 495,
  GLMessage_Function_glDeleteSyncAPPLE = 496,
  GLMessage_Function_glClientWaitSyncAPPLE = 497,
  GLMessage_Function_glWaitSyncAPPLE = 498,
  GLMessage_Function_glGetInteger64vAPPLE = 499,
  GLMessage_Function_glGetSyncivAPPLE = 500,
  GLMessage_Function_glCopyBufferSubDataNV = 501,
  GLMessage_Function_glActiveShaderProgramEXT = 502,
  GLMessage_Function_glAlphaFuncQCOM = 503,
  GLMessage_Function_glBeginQueryEXT = 504,
  GLMessage_Function_glBindProgramPipelineEXT = 505,
  GLMessage_Function_glBlitFramebufferANGLE = 506,
  GLMessage_Function_glCreateShaderProgramvEXT = 507,
  GLMessage_Function_glDeleteProgramPipelinesEXT = 508,
  GLMessage_Function_glDeleteQueriesEXT = 509,
  GLMessage_Function_glDrawBuffersNV = 510,
  GLMessage_Function_glEndQueryEXT = 511,
  GLMessage_Function_glFramebufferTexture2DMultisampleEXT = 512,
  GLMessage_Function_glGenProgramPipelinesEXT = 513,
  GLMessage_Function_glGenQueriesEXT = 514,
  GLMessage_Function_glGetGraphicsResetStatusEXT = 515,
  GLMessage_Function_glGetObjectLabelEXT = 516,
  GLMessage_Function_glGetProgramPipelineInfoLogEXT = 517,
  GLMessage_Function_glGetProgramPipelineivEXT = 518,
  GLMessage_Function_glGetQueryObjectuivEXT = 519,
  GLMessage_Function_glGetQueryivEXT = 520,
  GLMessage_Function_glGetnUniformfvEXT = 521,
  GLMessage_Function_glGetnUniformivEXT = 521,
  GLMessage_Function_glInsertEventMarkerEXT = 522,
  GLMessage_Function_glIsProgramPipelineEXT = 523,
  GLMessage_Function_glIsQueryEXT = 524,
  GLMessage_Function_glLabelObjectEXT = 525,
  GLMessage_Function_glPopGroupMarkerEXT = 526,
  GLMessage_Function_glProgramParameteriEXT = 527,
  GLMessage_Function_glProgramUniform1fEXT = 528,
  GLMessage_Function_glProgramUniform1fvEXT = 529,
  GLMessage_Function_glProgramUniform1iEXT = 530,
  GLMessage_Function_glProgramUniform1ivEXT = 531,
  GLMessage_Function_glProgramUniform2fEXT = 532,
  GLMessage_Function_glProgramUniform2fvEXT = 533,
  GLMessage_Function_glProgramUniform2iEXT = 534,
  GLMessage_Function_glProgramUniform2ivEXT = 535,
  GLMessage_Function_glProgramUniform3fEXT = 536,
  GLMessage_Function_glProgramUniform3fvEXT = 537,
  GLMessage_Function_glProgramUniform3iEXT = 538,
  GLMessage_Function_glProgramUniform3ivEXT = 539,
  GLMessage_Function_glProgramUniform4fEXT = 540,
  GLMessage_Function_glProgramUniform4fvEXT = 541,
  GLMessage_Function_glProgramUniform4iEXT = 542,
  GLMessage_Function_glProgramUniform4ivEXT = 543,
  GLMessage_Function_glProgramUniformMatrix2fvEXT = 544,
  GLMessage_Function_glProgramUniformMatrix3fvEXT = 545,
  GLMessage_Function_glProgramUniformMatrix4fvEXT = 546,
  GLMessage_Function_glPushGroupMarkerEXT = 547,
  GLMessage_Function_glReadBufferNV = 548,
  GLMessage_Function_glReadnPixelsEXT = 549,
  GLMessage_Function_glRenderbufferStorageMultisampleANGLE = 550,
  GLMessage_Function_glRenderbufferStorageMultisampleAPPLE = 551,
  GLMessage_Function_glRenderbufferStorageMultisampleEXT = 552,
  GLMessage_Function_glResolveMultisampleFramebufferAPPLE = 553,
  GLMessage_Function_glTexStorage1DEXT = 554,
  GLMessage_Function_glTexStorage2DEXT = 555,
  GLMessage_Function_glTexStorage3DEXT = 556,
  GLMessage_Function_glTextureStorage1DEXT = 557,
  GLMessage_Function_glTextureStorage2DEXT = 558,
  GLMessage_Function_glTextureStorage3DEXT = 559,
  GLMessage_Function_glUseProgramStagesEXT = 560,
  GLMessage_Function_glValidateProgramPipelineEXT = 561,
  GLMessage_Function_glCopyTextureLevelsAPPLE = 562,
  GLMessage_Function_glDebugMessageControlKHR = 563,
  GLMessage_Function_glDebugMessageInsertKHR = 564,
  GLMessage_Function_glDebugMessageCallbackKHR = 565,
  GLMessage_Function_glGetDebugMessageLogKHR = 566,
  GLMessage_Function_glPushDebugGroupKHR = 567,
  GLMessage_Function_glPopDebugGroupKHR = 568,
  GLMessage_Function_glObjectLabelKHR = 569,
  GLMessage_Function_glGetObjectLabelKHR = 570,
  GLMessage_Function_glObjectPtrLabelKHR = 571,
  GLMessage_Function_glGetObjectPtrLabelKHR = 572,
  GLMessage_Function_glGetPointervKHR = 573,
  GLMessage_Function_glDrawArraysInstancedANGLE = 574,
  GLMessage_Function_glDrawElementsInstancedANGLE = 575,
  GLMessage_Function_glVertexAttribDivisorANGLE = 576,
  GLMessage_Function_glDrawArraysInstancedEXT = 577,
  GLMessage_Function_glDrawElementsInstancedEXT = 578,
  GLMessage_Function_glVertexAttribDivisorEXT = 579,
  GLMessage_Function_glDrawArraysInstancedNV = 580,
  GLMessage_Function_glDrawElementsInstancedNV = 581,
  GLMessage_Function_glVertexAttribDivisorNV = 582,
  GLMessage_Function_glDrawBuffersEXT = 583,
  GLMessage_Function_glReadBufferIndexedEXT = 584,
  GLMessage_Function_glDrawBuffersIndexedEXT = 585,
  GLMessage_Function_glGetIntegeri_vEXT = 586,
  GLMessage_Function_glMapBufferRangeEXT = 587,
  GLMessage_Function_glFlushMappedBufferRangeEXT = 588,
  GLMessage_Function_glQueryCounterEXT = 589,
  GLMessage_Function_glGetQueryObjecti64vEXT = 590,
  GLMessage_Function_glGetQueryObjectivEXT = 591,
  GLMessage_Function_glGetQueryObjectui64vEXT = 592,
  GLMessage_Function_glGetTranslatedShaderSourceANGLE = 593,
  GLMessage_Function_glMinSampleShadingOES = 594,
  GLMessage_Function_glMultiTexCoord1bOES = 595,
  GLMessage_Function_glMultiTexCoord1bvOES = 596,
  GLMessage_Function_glMultiTexCoord2bOES = 597,
  GLMessage_Function_glMultiTexCoord2bvOES = 598,
  GLMessage_Function_glMultiTexCoord3bOES = 599,
  GLMessage_Function_glMultiTexCoord3bvOES = 600,
  GLMessage_Function_glMultiTexCoord4bOES = 601,
  GLMessage_Function_glMultiTexCoord4bvOES = 602,
  GLMessage_Function_glTexCoord1bOES = 603,
  GLMessage_Function_glTexCoord1bvOES = 604,
  GLMessage_Function_glTexCoord2bOES = 605,
  GLMessage_Function_glTexCoord2bvOES = 606,
  GLMessage_Function_glTexCoord3bOES = 607,
  GLMessage_Function_glTexCoord3bvOES = 608,
  GLMessage_Function_glTexCoord4bOES = 609,
  GLMessage_Function_glTexCoord4bvOES = 610,
  GLMessage_Function_glVertex2bOES = 611,
  GLMessage_Function_glVertex2bvOES = 612,
  GLMessage_Function_glVertex3bOES = 613,
  GLMessage_Function_glVertex3bvOES = 614,
  GLMessage_Function_glVertex4bOES = 615,
  GLMessage_Function_glVertex4bvOES = 616,
  GLMessage_Function_glProgramUniform1uiEXT = 617,
  GLMessage_Function_glProgramUniform2uiEXT = 618,
  GLMessage_Function_glProgramUniform3uiEXT = 619,
  GLMessage_Function_glProgramUniform4uiEXT = 620,
  GLMessage_Function_glProgramUniform1uivEXT = 621,
  GLMessage_Function_glProgramUniform2uivEXT = 622,
  GLMessage_Function_glProgramUniform3uivEXT = 623,
  GLMessage_Function_glProgramUniform4uivEXT = 624,
  GLMessage_Function_glProgramUniformMatrix2x3fvEXT = 625,
  GLMessage_Function_glProgramUniformMatrix3x2fvEXT = 626,
  GLMessage_Function_glProgramUniformMatrix2x4fvEXT = 627,
  GLMessage_Function_glProgramUniformMatrix4x2fvEXT = 628,
  GLMessage_Function_glProgramUniformMatrix3x4fvEXT = 629,
  GLMessage_Function_glProgramUniformMatrix4x3fvEXT = 630,
  GLMessage_Function_glRenderbufferStorageMultisampleNV = 631,
  GLMessage_Function_glSampleCoverageOES = 632,
  GLMessage_Function_glTexStorage3DMultisampleOES = 633,
  GLMessage_Function_glUniformMatrix2x3fvNV = 634,
  GLMessage_Function_glUniformMatrix3x2fvNV = 635,
  GLMessage_Function_glUniformMatrix2x4fvNV = 636,
  GLMessage_Function_glUniformMatrix4x2fvNV = 637,
  GLMessage_Function_glUniformMatrix3x4fvNV = 638,
  GLMessage_Function_glUniformMatrix4x3fvNV = 639,
  GLMessage_Function_glActiveShaderProgram = 640,
  GLMessage_Function_glBindImageTexture = 641,
  GLMessage_Function_glBindProgramPipeline = 642,
  GLMessage_Function_glBindVertexBuffer = 643,
  GLMessage_Function_glCreateShaderProgramv = 644,
  GLMessage_Function_glDeleteProgramPipelines = 645,
  GLMessage_Function_glDispatchCompute = 646,
  GLMessage_Function_glDispatchComputeIndirect = 647,
  GLMessage_Function_glDrawArraysIndirect = 648,
  GLMessage_Function_glDrawElementsIndirect = 649,
  GLMessage_Function_glFramebufferParameteri = 650,
  GLMessage_Function_glGenProgramPipelines = 651,
  GLMessage_Function_glGetBooleani_v = 652,
  GLMessage_Function_glGetFramebufferParameteriv = 653,
  GLMessage_Function_glGetMultisamplefv = 654,
  GLMessage_Function_glGetProgramInterfaceiv = 655,
  GLMessage_Function_glGetProgramPipelineInfoLog = 656,
  GLMessage_Function_glGetProgramPipelineiv = 657,
  GLMessage_Function_glGetProgramResourceIndex = 658,
  GLMessage_Function_glGetProgramResourceLocation = 659,
  GLMessage_Function_glGetProgramResourceName = 660,
  GLMessage_Function_glGetProgramResourceiv = 661,
  GLMessage_Function_glGetTexLevelParameterfv = 662,
  GLMessage_Function_glGetTexLevelParameteriv = 663,
  GLMessage_Function_glIsProgramPipeline = 664,
  GLMessage_Function_glMemoryBarrier = 665,
  GLMessage_Function_glMemoryBarrierByRegion = 666,
  GLMessage_Function_glProgramUniform1f = 667,
  GLMessage_Function_glProgramUniform1fv = 668,
  GLMessage_Function_glProgramUniform1i = 669,
  GLMessage_Function_glProgramUniform1iv = 670,
  GLMessage_Function_glProgramUniform1ui = 671,
  GLMessage_Function_glProgramUniform1uiv = 672,
  GLMessage_Function_glProgramUniform2f = 673,
  GLMessage_Function_glProgramUniform2fv = 674,
  GLMessage_Function_glProgramUniform2i = 675,
  GLMessage_Function_glProgramUniform2iv = 676,
  GLMessage_Function_glProgramUniform2ui = 677,
  GLMessage_Function_glProgramUniform2uiv = 678,
  GLMessage_Function_glProgramUniform3f = 679,
  GLMessage_Function_glProgramUniform3fv = 680,
  GLMessage_Function_glProgramUniform3i = 681,
  GLMessage_Function_glProgramUniform3iv = 682,
  GLMessage_Function_glProgramUniform3ui = 683,
  GLMessage_Function_glProgramUniform3uiv = 684,
  GLMessage_Function_glProgramUniform4f = 685,
  GLMessage_Function_glProgramUniform4fv = 686,
  GLMessage_Function_glProgramUniform4i = 687,
  GLMessage_Function_glProgramUniform4iv = 688,
  GLMessage_Function_glProgramUniform4ui = 689,
  GLMessage_Function_glProgramUniform4uiv = 690,
  GLMessage_Function_glProgramUniformMatrix2fv = 691,
  GLMessage_Function_glProgramUniformMatrix2x3fv = 692,
  GLMessage_Function_glProgramUniformMatrix2x4fv = 693,
  GLMessage_Function_glProgramUniformMatrix3fv = 694,
  GLMessage_Function_glProgramUniformMatrix3x2fv = 695,
  GLMessage_Function_glProgramUniformMatrix3x4fv = 696,
  GLMessage_Function_glProgramUniformMatrix4fv = 697,
  GLMessage_Function_glProgramUniformMatrix4x2fv = 698,
  GLMessage_Function_glProgramUniformMatrix4x3fv = 699,
  GLMessage_Function_glSampleMaski = 700,
  GLMessage_Function_glTexStorage2DMultisample = 701,
  GLMessage_Function_glUseProgramStages = 702,
  GLMessage_Function_glValidateProgramPipeline = 703,
  GLMessage_Function_glVertexAttribBinding = 704,
  GLMessage_Function_glVertexAttribFormat = 705,
  GLMessage_Function_glVertexAttribIFormat = 706,
  GLMessage_Function_glVertexBindingDivisor = 707,
  GLMessage_Function_glBlendEquationSeparateiEXT = 708,
  GLMessage_Function_glBlendEquationiEXT = 709,
  GLMessage_Function_glBlendFuncSeparateiEXT = 710,
  GLMessage_Function_glBlendFunciEXT = 711,
  GLMessage_Function_glColorMaskiEXT = 712,
  GLMessage_Function_glCopyImageSubDataEXT = 713,
  GLMessage_Function_glDisableiEXT = 714,
  GLMessage_Function_glEnableiEXT = 715,
  GLMessage_Function_glFramebufferTextureEXT = 716,
  GLMessage_Function_glGetSamplerParameterIivEXT = 717,
  GLMessage_Function_glGetSamplerParameterIuivEXT = 718,
  GLMessage_Function_glGetTexParameterIivEXT = 719,
  GLMessage_Function_glGetTexParameterIuivEXT = 720,
  GLMessage_Function_glIsEnablediEXT = 721,
  GLMessage_Function_glPatchParameteriEXT = 722,
  GLMessage_Function_glPrimitiveBoundingBoxEXT = 723,
  GLMessage_Function_glSamplerParameterIivEXT = 724,
  GLMessage_Function_glSamplerParameterIuivEXT = 725,
  GLMessage_Function_glTexBufferEXT = 726,
  GLMessage_Function_glTexBufferRangeEXT = 727,
  GLMessage_Function_glTexParameterIivEXT = 728,
  GLMessage_Function_glTexParameterIuivEXT = 729,
  GLMessage_Function_glTextureViewEXT = 730,
  GLMessage_Function_eglGetDisplay = 2000,
  GLMessage_Function_eglInitialize = 2001,
  GLMessage_Function_eglTerminate = 2002,
  GLMessage_Function_eglGetConfigs = 2003,
  GLMessage_Function_eglChooseConfig = 2004,
  GLMessage_Function_eglGetConfigAttrib = 2005,
  GLMessage_Function_eglCreateWindowSurface = 2006,
  GLMessage_Function_eglCreatePixmapSurface = 2007,
  GLMessage_Function_eglCreatePbufferSurface = 2008,
  GLMessage_Function_eglDestroySurface = 2009,
  GLMessage_Function_eglQuerySurface = 2010,
  GLMessage_Function_eglCreateContext = 2011,
  GLMessage_Function_eglDestroyContext = 2012,
  GLMessage_Function_eglMakeCurrent = 2013,
  GLMessage_Function_eglGetCurrentContext = 2014,
  GLMessage_Function_eglGetCurrentSurface = 2015,
  GLMessage_Function_eglGetCurrentDisplay = 2016,
  GLMessage_Function_eglQueryContext = 2017,
  GLMessage_Function_eglWaitGL = 2018,
  GLMessage_Function_eglWaitNative = 2019,
  GLMessage_Function_eglSwapBuffers = 2020,
  GLMessage_Function_eglCopyBuffers = 2021,
  GLMessage_Function_eglGetError = 2022,
  GLMessage_Function_eglQueryString = 2023,
  GLMessage_Function_eglGetProcAddress = 2024,
  GLMessage_Function_eglSurfaceAttrib = 2025,
  GLMessage_Function_eglBindTexImage = 2026,
  GLMessage_Function_eglReleaseTexImage = 2027,
  GLMessage_Function_eglSwapInterval = 2028,
  GLMessage_Function_eglBindAPI = 2029,
  GLMessage_Function_eglQueryAPI = 2030,
  GLMessage_Function_eglWaitClient = 2031,
  GLMessage_Function_eglReleaseThread = 2032,
  GLMessage_Function_eglCreatePbufferFromClientBuffer = 2033,
  GLMessage_Function_eglLockSurfaceKHR = 2034,
  GLMessage_Function_eglUnlockSurfaceKHR = 2035,
  GLMessage_Function_eglCreateImageKHR = 2036,
  GLMessage_Function_eglDestroyImageKHR = 2037,
  GLMessage_Function_eglCreateSyncKHR = 2038,
  GLMessage_Function_eglDestroySyncKHR = 2039,
  GLMessage_Function_eglClientWaitSyncKHR = 2040,
  GLMessage_Function_eglGetSyncAttribKHR = 2041,
  GLMessage_Function_eglSetSwapRectangleANDROID = 2042,
  GLMessage_Function_eglGetRenderBufferANDROID = 2043,
  GLMessage_Function_eglGetSystemTimeFrequencyNV = 2044,
  GLMessage_Function_eglGetSystemTimeNV = 2045,
  GLMessage_Function_invalid = 3000,
  GLMessage_Function_glVertexAttribPointerData = 3001
};
bool GLMessage_Function_IsValid(int value);
const GLMessage_Function GLMessage_Function_Function_MIN = GLMessage_Function_glActiveTexture;
const GLMessage_Function GLMessage_Function_Function_MAX = GLMessage_Function_glVertexAttribPointerData;
const int GLMessage_Function_Function_ARRAYSIZE = GLMessage_Function_Function_MAX + 1;

// ===================================================================

class GLMessage_DataType : public ::google::protobuf::MessageLite {
 public:
  GLMessage_DataType();
  virtual ~GLMessage_DataType();
  
  GLMessage_DataType(const GLMessage_DataType& from);
  
  inline GLMessage_DataType& operator=(const GLMessage_DataType& from) {
    CopyFrom(from);
    return *this;
  }
  
  static const GLMessage_DataType& default_instance();
  
  void Swap(GLMessage_DataType* other);
  
  // implements Message ----------------------------------------------
  
  GLMessage_DataType* New() const;
  void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from);
  void CopyFrom(const GLMessage_DataType& from);
  void MergeFrom(const GLMessage_DataType& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::std::string GetTypeName() const;
  
  // nested types ----------------------------------------------------
  
  typedef GLMessage_DataType_Type Type;
  static const Type VOID = GLMessage_DataType_Type_VOID;
  static const Type CHAR = GLMessage_DataType_Type_CHAR;
  static const Type BYTE = GLMessage_DataType_Type_BYTE;
  static const Type INT = GLMessage_DataType_Type_INT;
  static const Type FLOAT = GLMessage_DataType_Type_FLOAT;
  static const Type BOOL = GLMessage_DataType_Type_BOOL;
  static const Type ENUM = GLMessage_DataType_Type_ENUM;
  static const Type INT64 = GLMessage_DataType_Type_INT64;
  static inline bool Type_IsValid(int value) {
    return GLMessage_DataType_Type_IsValid(value);
  }
  static const Type Type_MIN =
    GLMessage_DataType_Type_Type_MIN;
  static const Type Type_MAX =
    GLMessage_DataType_Type_Type_MAX;
  static const int Type_ARRAYSIZE =
    GLMessage_DataType_Type_Type_ARRAYSIZE;
  
  // accessors -------------------------------------------------------
  
  // required .android.gltrace.GLMessage.DataType.Type type = 1 [default = VOID];
  inline bool has_type() const;
  inline void clear_type();
  static const int kTypeFieldNumber = 1;
  inline ::android::gltrace::GLMessage_DataType_Type type() const;
  inline void set_type(::android::gltrace::GLMessage_DataType_Type value);
  
  // required bool isArray = 2 [default = false];
  inline bool has_isarray() const;
  inline void clear_isarray();
  static const int kIsArrayFieldNumber = 2;
  inline bool isarray() const;
  inline void set_isarray(bool value);
  
  // repeated int32 intValue = 3;
  inline int intvalue_size() const;
  inline void clear_intvalue();
  static const int kIntValueFieldNumber = 3;
  inline ::google::protobuf::int32 intvalue(int index) const;
  inline void set_intvalue(int index, ::google::protobuf::int32 value);
  inline void add_intvalue(::google::protobuf::int32 value);
  inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
      intvalue() const;
  inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
      mutable_intvalue();
  
  // repeated float floatValue = 4;
  inline int floatvalue_size() const;
  inline void clear_floatvalue();
  static const int kFloatValueFieldNumber = 4;
  inline float floatvalue(int index) const;
  inline void set_floatvalue(int index, float value);
  inline void add_floatvalue(float value);
  inline const ::google::protobuf::RepeatedField< float >&
      floatvalue() const;
  inline ::google::protobuf::RepeatedField< float >*
      mutable_floatvalue();
  
  // repeated bytes charValue = 5;
  inline int charvalue_size() const;
  inline void clear_charvalue();
  static const int kCharValueFieldNumber = 5;
  inline const ::std::string& charvalue(int index) const;
  inline ::std::string* mutable_charvalue(int index);
  inline void set_charvalue(int index, const ::std::string& value);
  inline void set_charvalue(int index, const char* value);
  inline void set_charvalue(int index, const void* value, size_t size);
  inline ::std::string* add_charvalue();
  inline void add_charvalue(const ::std::string& value);
  inline void add_charvalue(const char* value);
  inline void add_charvalue(const void* value, size_t size);
  inline const ::google::protobuf::RepeatedPtrField< ::std::string>& charvalue() const;
  inline ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_charvalue();
  
  // repeated bytes rawBytes = 6;
  inline int rawbytes_size() const;
  inline void clear_rawbytes();
  static const int kRawBytesFieldNumber = 6;
  inline const ::std::string& rawbytes(int index) const;
  inline ::std::string* mutable_rawbytes(int index);
  inline void set_rawbytes(int index, const ::std::string& value);
  inline void set_rawbytes(int index, const char* value);
  inline void set_rawbytes(int index, const void* value, size_t size);
  inline ::std::string* add_rawbytes();
  inline void add_rawbytes(const ::std::string& value);
  inline void add_rawbytes(const char* value);
  inline void add_rawbytes(const void* value, size_t size);
  inline const ::google::protobuf::RepeatedPtrField< ::std::string>& rawbytes() const;
  inline ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_rawbytes();
  
  // repeated bool boolValue = 7;
  inline int boolvalue_size() const;
  inline void clear_boolvalue();
  static const int kBoolValueFieldNumber = 7;
  inline bool boolvalue(int index) const;
  inline void set_boolvalue(int index, bool value);
  inline void add_boolvalue(bool value);
  inline const ::google::protobuf::RepeatedField< bool >&
      boolvalue() const;
  inline ::google::protobuf::RepeatedField< bool >*
      mutable_boolvalue();
  
  // repeated int64 int64Value = 8;
  inline int int64value_size() const;
  inline void clear_int64value();
  static const int kInt64ValueFieldNumber = 8;
  inline ::google::protobuf::int64 int64value(int index) const;
  inline void set_int64value(int index, ::google::protobuf::int64 value);
  inline void add_int64value(::google::protobuf::int64 value);
  inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
      int64value() const;
  inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
      mutable_int64value();
  
  // @@protoc_insertion_point(class_scope:android.gltrace.GLMessage.DataType)
 private:
  mutable int _cached_size_;
  
  int type_;
  bool isarray_;
  ::google::protobuf::RepeatedField< ::google::protobuf::int32 > intvalue_;
  ::google::protobuf::RepeatedField< float > floatvalue_;
  ::google::protobuf::RepeatedPtrField< ::std::string> charvalue_;
  ::google::protobuf::RepeatedPtrField< ::std::string> rawbytes_;
  ::google::protobuf::RepeatedField< bool > boolvalue_;
  ::google::protobuf::RepeatedField< ::google::protobuf::int64 > int64value_;
  friend void  protobuf_AddDesc_gltrace_2eproto();
  friend void protobuf_AssignDesc_gltrace_2eproto();
  friend void protobuf_ShutdownFile_gltrace_2eproto();
  
  ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
  
  // WHY DOES & HAVE LOWER PRECEDENCE THAN != !?
  inline bool _has_bit(int index) const {
    return (_has_bits_[index / 32] & (1u << (index % 32))) != 0;
  }
  inline void _set_bit(int index) {
    _has_bits_[index / 32] |= (1u << (index % 32));
  }
  inline void _clear_bit(int index) {
    _has_bits_[index / 32] &= ~(1u << (index % 32));
  }
  
  void InitAsDefaultInstance();
  static GLMessage_DataType* default_instance_;
};
// -------------------------------------------------------------------

class GLMessage_FrameBuffer : public ::google::protobuf::MessageLite {
 public:
  GLMessage_FrameBuffer();
  virtual ~GLMessage_FrameBuffer();
  
  GLMessage_FrameBuffer(const GLMessage_FrameBuffer& from);
  
  inline GLMessage_FrameBuffer& operator=(const GLMessage_FrameBuffer& from) {
    CopyFrom(from);
    return *this;
  }
  
  static const GLMessage_FrameBuffer& default_instance();
  
  void Swap(GLMessage_FrameBuffer* other);
  
  // implements Message ----------------------------------------------
  
  GLMessage_FrameBuffer* New() const;
  void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from);
  void CopyFrom(const GLMessage_FrameBuffer& from);
  void MergeFrom(const GLMessage_FrameBuffer& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::std::string GetTypeName() const;
  
  // nested types ----------------------------------------------------
  
  // accessors -------------------------------------------------------
  
  // required int32 width = 1;
  inline bool has_width() const;
  inline void clear_width();
  static const int kWidthFieldNumber = 1;
  inline ::google::protobuf::int32 width() const;
  inline void set_width(::google::protobuf::int32 value);
  
  // required int32 height = 2;
  inline bool has_height() const;
  inline void clear_height();
  static const int kHeightFieldNumber = 2;
  inline ::google::protobuf::int32 height() const;
  inline void set_height(::google::protobuf::int32 value);
  
  // repeated bytes contents = 3;
  inline int contents_size() const;
  inline void clear_contents();
  static const int kContentsFieldNumber = 3;
  inline const ::std::string& contents(int index) const;
  inline ::std::string* mutable_contents(int index);
  inline void set_contents(int index, const ::std::string& value);
  inline void set_contents(int index, const char* value);
  inline void set_contents(int index, const void* value, size_t size);
  inline ::std::string* add_contents();
  inline void add_contents(const ::std::string& value);
  inline void add_contents(const char* value);
  inline void add_contents(const void* value, size_t size);
  inline const ::google::protobuf::RepeatedPtrField< ::std::string>& contents() const;
  inline ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_contents();
  
  // @@protoc_insertion_point(class_scope:android.gltrace.GLMessage.FrameBuffer)
 private:
  mutable int _cached_size_;
  
  ::google::protobuf::int32 width_;
  ::google::protobuf::int32 height_;
  ::google::protobuf::RepeatedPtrField< ::std::string> contents_;
  friend void  protobuf_AddDesc_gltrace_2eproto();
  friend void protobuf_AssignDesc_gltrace_2eproto();
  friend void protobuf_ShutdownFile_gltrace_2eproto();
  
  ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
  
  // WHY DOES & HAVE LOWER PRECEDENCE THAN != !?
  inline bool _has_bit(int index) const {
    return (_has_bits_[index / 32] & (1u << (index % 32))) != 0;
  }
  inline void _set_bit(int index) {
    _has_bits_[index / 32] |= (1u << (index % 32));
  }
  inline void _clear_bit(int index) {
    _has_bits_[index / 32] &= ~(1u << (index % 32));
  }
  
  void InitAsDefaultInstance();
  static GLMessage_FrameBuffer* default_instance_;
};
// -------------------------------------------------------------------

class GLMessage : public ::google::protobuf::MessageLite {
 public:
  GLMessage();
  virtual ~GLMessage();
  
  GLMessage(const GLMessage& from);
  
  inline GLMessage& operator=(const GLMessage& from) {
    CopyFrom(from);
    return *this;
  }
  
  static const GLMessage& default_instance();
  
  void Swap(GLMessage* other);
  
  // implements Message ----------------------------------------------
  
  GLMessage* New() const;
  void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from);
  void CopyFrom(const GLMessage& from);
  void MergeFrom(const GLMessage& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::std::string GetTypeName() const;
  
  // nested types ----------------------------------------------------
  
  typedef GLMessage_DataType DataType;
  typedef GLMessage_FrameBuffer FrameBuffer;
  
  typedef GLMessage_Function Function;
  static const Function glActiveTexture = GLMessage_Function_glActiveTexture;
  static const Function glAlphaFunc = GLMessage_Function_glAlphaFunc;
  static const Function glAlphaFuncx = GLMessage_Function_glAlphaFuncx;
  static const Function glAlphaFuncxOES = GLMessage_Function_glAlphaFuncxOES;
  static const Function glAttachShader = GLMessage_Function_glAttachShader;
  static const Function glBeginPerfMonitorAMD = GLMessage_Function_glBeginPerfMonitorAMD;
  static const Function glBindAttribLocation = GLMessage_Function_glBindAttribLocation;
  static const Function glBindBuffer = GLMessage_Function_glBindBuffer;
  static const Function glBindFramebuffer = GLMessage_Function_glBindFramebuffer;
  static const Function glBindFramebufferOES = GLMessage_Function_glBindFramebufferOES;
  static const Function glBindRenderbuffer = GLMessage_Function_glBindRenderbuffer;
  static const Function glBindRenderbufferOES = GLMessage_Function_glBindRenderbufferOES;
  static const Function glBindTexture = GLMessage_Function_glBindTexture;
  static const Function glBindVertexArrayOES = GLMessage_Function_glBindVertexArrayOES;
  static const Function glBlendColor = GLMessage_Function_glBlendColor;
  static const Function glBlendEquation = GLMessage_Function_glBlendEquation;
  static const Function glBlendEquationOES = GLMessage_Function_glBlendEquationOES;
  static const Function glBlendEquationSeparate = GLMessage_Function_glBlendEquationSeparate;
  static const Function glBlendEquationSeparateOES = GLMessage_Function_glBlendEquationSeparateOES;
  static const Function glBlendFunc = GLMessage_Function_glBlendFunc;
  static const Function glBlendFuncSeparate = GLMessage_Function_glBlendFuncSeparate;
  static const Function glBlendFuncSeparateOES = GLMessage_Function_glBlendFuncSeparateOES;
  static const Function glBufferData = GLMessage_Function_glBufferData;
  static const Function glBufferSubData = GLMessage_Function_glBufferSubData;
  static const Function glCheckFramebufferStatus = GLMessage_Function_glCheckFramebufferStatus;
  static const Function glCheckFramebufferStatusOES = GLMessage_Function_glCheckFramebufferStatusOES;
  static const Function glClearColor = GLMessage_Function_glClearColor;
  static const Function glClearColorx = GLMessage_Function_glClearColorx;
  static const Function glClearColorxOES = GLMessage_Function_glClearColorxOES;
  static const Function glClearDepthf = GLMessage_Function_glClearDepthf;
  static const Function glClearDepthfOES = GLMessage_Function_glClearDepthfOES;
  static const Function glClearDepthx = GLMessage_Function_glClearDepthx;
  static const Function glClearDepthxOES = GLMessage_Function_glClearDepthxOES;
  static const Function glClear = GLMessage_Function_glClear;
  static const Function glClearStencil = GLMessage_Function_glClearStencil;
  static const Function glClientActiveTexture = GLMessage_Function_glClientActiveTexture;
  static const Function glClipPlanef = GLMessage_Function_glClipPlanef;
  static const Function glClipPlanefIMG = GLMessage_Function_glClipPlanefIMG;
  static const Function glClipPlanefOES = GLMessage_Function_glClipPlanefOES;
  static const Function glClipPlanex = GLMessage_Function_glClipPlanex;
  static const Function glClipPlanexIMG = GLMessage_Function_glClipPlanexIMG;
  static const Function glClipPlanexOES = GLMessage_Function_glClipPlanexOES;
  static const Function glColor4f = GLMessage_Function_glColor4f;
  static const Function glColor4ub = GLMessage_Function_glColor4ub;
  static const Function glColor4x = GLMessage_Function_glColor4x;
  static const Function glColor4xOES = GLMessage_Function_glColor4xOES;
  static const Function glColorMask = GLMessage_Function_glColorMask;
  static const Function glColorPointer = GLMessage_Function_glColorPointer;
  static const Function glCompileShader = GLMessage_Function_glCompileShader;
  static const Function glCompressedTexImage2D = GLMessage_Function_glCompressedTexImage2D;
  static const Function glCompressedTexImage3DOES = GLMessage_Function_glCompressedTexImage3DOES;
  static const Function glCompressedTexSubImage2D = GLMessage_Function_glCompressedTexSubImage2D;
  static const Function glCompressedTexSubImage3DOES = GLMessage_Function_glCompressedTexSubImage3DOES;
  static const Function glCopyTexImage2D = GLMessage_Function_glCopyTexImage2D;
  static const Function glCopyTexSubImage2D = GLMessage_Function_glCopyTexSubImage2D;
  static const Function glCopyTexSubImage3DOES = GLMessage_Function_glCopyTexSubImage3DOES;
  static const Function glCoverageMaskNV = GLMessage_Function_glCoverageMaskNV;
  static const Function glCoverageOperationNV = GLMessage_Function_glCoverageOperationNV;
  static const Function glCreateProgram = GLMessage_Function_glCreateProgram;
  static const Function glCreateShader = GLMessage_Function_glCreateShader;
  static const Function glCullFace = GLMessage_Function_glCullFace;
  static const Function glCurrentPaletteMatrixOES = GLMessage_Function_glCurrentPaletteMatrixOES;
  static const Function glDeleteBuffers = GLMessage_Function_glDeleteBuffers;
  static const Function glDeleteFencesNV = GLMessage_Function_glDeleteFencesNV;
  static const Function glDeleteFramebuffers = GLMessage_Function_glDeleteFramebuffers;
  static const Function glDeleteFramebuffersOES = GLMessage_Function_glDeleteFramebuffersOES;
  static const Function glDeletePerfMonitorsAMD = GLMessage_Function_glDeletePerfMonitorsAMD;
  static const Function glDeleteProgram = GLMessage_Function_glDeleteProgram;
  static const Function glDeleteRenderbuffers = GLMessage_Function_glDeleteRenderbuffers;
  static const Function glDeleteRenderbuffersOES = GLMessage_Function_glDeleteRenderbuffersOES;
  static const Function glDeleteShader = GLMessage_Function_glDeleteShader;
  static const Function glDeleteTextures = GLMessage_Function_glDeleteTextures;
  static const Function glDeleteVertexArraysOES = GLMessage_Function_glDeleteVertexArraysOES;
  static const Function glDepthFunc = GLMessage_Function_glDepthFunc;
  static const Function glDepthMask = GLMessage_Function_glDepthMask;
  static const Function glDepthRangef = GLMessage_Function_glDepthRangef;
  static const Function glDepthRangefOES = GLMessage_Function_glDepthRangefOES;
  static const Function glDepthRangex = GLMessage_Function_glDepthRangex;
  static const Function glDepthRangexOES = GLMessage_Function_glDepthRangexOES;
  static const Function glDetachShader = GLMessage_Function_glDetachShader;
  static const Function glDisableClientState = GLMessage_Function_glDisableClientState;
  static const Function glDisableDriverControlQCOM = GLMessage_Function_glDisableDriverControlQCOM;
  static const Function glDisable = GLMessage_Function_glDisable;
  static const Function glDisableVertexAttribArray = GLMessage_Function_glDisableVertexAttribArray;
  static const Function glDiscardFramebufferEXT = GLMessage_Function_glDiscardFramebufferEXT;
  static const Function glDrawArrays = GLMessage_Function_glDrawArrays;
  static const Function glDrawElements = GLMessage_Function_glDrawElements;
  static const Function glDrawTexfOES = GLMessage_Function_glDrawTexfOES;
  static const Function glDrawTexfvOES = GLMessage_Function_glDrawTexfvOES;
  static const Function glDrawTexiOES = GLMessage_Function_glDrawTexiOES;
  static const Function glDrawTexivOES = GLMessage_Function_glDrawTexivOES;
  static const Function glDrawTexsOES = GLMessage_Function_glDrawTexsOES;
  static const Function glDrawTexsvOES = GLMessage_Function_glDrawTexsvOES;
  static const Function glDrawTexxOES = GLMessage_Function_glDrawTexxOES;
  static const Function glDrawTexxvOES = GLMessage_Function_glDrawTexxvOES;
  static const Function glEGLImageTargetRenderbufferStorageOES = GLMessage_Function_glEGLImageTargetRenderbufferStorageOES;
  static const Function glEGLImageTargetTexture2DOES = GLMessage_Function_glEGLImageTargetTexture2DOES;
  static const Function glEnableClientState = GLMessage_Function_glEnableClientState;
  static const Function glEnableDriverControlQCOM = GLMessage_Function_glEnableDriverControlQCOM;
  static const Function glEnable = GLMessage_Function_glEnable;
  static const Function glEnableVertexAttribArray = GLMessage_Function_glEnableVertexAttribArray;
  static const Function glEndPerfMonitorAMD = GLMessage_Function_glEndPerfMonitorAMD;
  static const Function glEndTilingQCOM = GLMessage_Function_glEndTilingQCOM;
  static const Function glExtGetBufferPointervQCOM = GLMessage_Function_glExtGetBufferPointervQCOM;
  static const Function glExtGetBuffersQCOM = GLMessage_Function_glExtGetBuffersQCOM;
  static const Function glExtGetFramebuffersQCOM = GLMessage_Function_glExtGetFramebuffersQCOM;
  static const Function glExtGetProgramBinarySourceQCOM = GLMessage_Function_glExtGetProgramBinarySourceQCOM;
  static const Function glExtGetProgramsQCOM = GLMessage_Function_glExtGetProgramsQCOM;
  static const Function glExtGetRenderbuffersQCOM = GLMessage_Function_glExtGetRenderbuffersQCOM;
  static const Function glExtGetShadersQCOM = GLMessage_Function_glExtGetShadersQCOM;
  static const Function glExtGetTexLevelParameterivQCOM = GLMessage_Function_glExtGetTexLevelParameterivQCOM;
  static const Function glExtGetTexSubImageQCOM = GLMessage_Function_glExtGetTexSubImageQCOM;
  static const Function glExtGetTexturesQCOM = GLMessage_Function_glExtGetTexturesQCOM;
  static const Function glExtIsProgramBinaryQCOM = GLMessage_Function_glExtIsProgramBinaryQCOM;
  static const Function glExtTexObjectStateOverrideiQCOM = GLMessage_Function_glExtTexObjectStateOverrideiQCOM;
  static const Function glFinishFenceNV = GLMessage_Function_glFinishFenceNV;
  static const Function glFinish = GLMessage_Function_glFinish;
  static const Function glFlush = GLMessage_Function_glFlush;
  static const Function glFogf = GLMessage_Function_glFogf;
  static const Function glFogfv = GLMessage_Function_glFogfv;
  static const Function glFogx = GLMessage_Function_glFogx;
  static const Function glFogxOES = GLMessage_Function_glFogxOES;
  static const Function glFogxv = GLMessage_Function_glFogxv;
  static const Function glFogxvOES = GLMessage_Function_glFogxvOES;
  static const Function glFramebufferRenderbuffer = GLMessage_Function_glFramebufferRenderbuffer;
  static const Function glFramebufferRenderbufferOES = GLMessage_Function_glFramebufferRenderbufferOES;
  static const Function glFramebufferTexture2D = GLMessage_Function_glFramebufferTexture2D;
  static const Function glFramebufferTexture2DMultisampleIMG = GLMessage_Function_glFramebufferTexture2DMultisampleIMG;
  static const Function glFramebufferTexture2DOES = GLMessage_Function_glFramebufferTexture2DOES;
  static const Function glFramebufferTexture3DOES = GLMessage_Function_glFramebufferTexture3DOES;
  static const Function glFrontFace = GLMessage_Function_glFrontFace;
  static const Function glFrustumf = GLMessage_Function_glFrustumf;
  static const Function glFrustumfOES = GLMessage_Function_glFrustumfOES;
  static const Function glFrustumx = GLMessage_Function_glFrustumx;
  static const Function glFrustumxOES = GLMessage_Function_glFrustumxOES;
  static const Function glGenBuffers = GLMessage_Function_glGenBuffers;
  static const Function glGenerateMipmap = GLMessage_Function_glGenerateMipmap;
  static const Function glGenerateMipmapOES = GLMessage_Function_glGenerateMipmapOES;
  static const Function glGenFencesNV = GLMessage_Function_glGenFencesNV;
  static const Function glGenFramebuffers = GLMessage_Function_glGenFramebuffers;
  static const Function glGenFramebuffersOES = GLMessage_Function_glGenFramebuffersOES;
  static const Function glGenPerfMonitorsAMD = GLMessage_Function_glGenPerfMonitorsAMD;
  static const Function glGenRenderbuffers = GLMessage_Function_glGenRenderbuffers;
  static const Function glGenRenderbuffersOES = GLMessage_Function_glGenRenderbuffersOES;
  static const Function glGenTextures = GLMessage_Function_glGenTextures;
  static const Function glGenVertexArraysOES = GLMessage_Function_glGenVertexArraysOES;
  static const Function glGetActiveAttrib = GLMessage_Function_glGetActiveAttrib;
  static const Function glGetActiveUniform = GLMessage_Function_glGetActiveUniform;
  static const Function glGetAttachedShaders = GLMessage_Function_glGetAttachedShaders;
  static const Function glGetAttribLocation = GLMessage_Function_glGetAttribLocation;
  static const Function glGetBooleanv = GLMessage_Function_glGetBooleanv;
  static const Function glGetBufferParameteriv = GLMessage_Function_glGetBufferParameteriv;
  static const Function glGetBufferPointervOES = GLMessage_Function_glGetBufferPointervOES;
  static const Function glGetClipPlanef = GLMessage_Function_glGetClipPlanef;
  static const Function glGetClipPlanefOES = GLMessage_Function_glGetClipPlanefOES;
  static const Function glGetClipPlanex = GLMessage_Function_glGetClipPlanex;
  static const Function glGetClipPlanexOES = GLMessage_Function_glGetClipPlanexOES;
  static const Function glGetDriverControlsQCOM = GLMessage_Function_glGetDriverControlsQCOM;
  static const Function glGetDriverControlStringQCOM = GLMessage_Function_glGetDriverControlStringQCOM;
  static const Function glGetError = GLMessage_Function_glGetError;
  static const Function glGetFenceivNV = GLMessage_Function_glGetFenceivNV;
  static const Function glGetFixedv = GLMessage_Function_glGetFixedv;
  static const Function glGetFixedvOES = GLMessage_Function_glGetFixedvOES;
  static const Function glGetFloatv = GLMessage_Function_glGetFloatv;
  static const Function glGetFramebufferAttachmentParameteriv = GLMessage_Function_glGetFramebufferAttachmentParameteriv;
  static const Function glGetFramebufferAttachmentParameterivOES = GLMessage_Function_glGetFramebufferAttachmentParameterivOES;
  static const Function glGetIntegerv = GLMessage_Function_glGetIntegerv;
  static const Function glGetLightfv = GLMessage_Function_glGetLightfv;
  static const Function glGetLightxv = GLMessage_Function_glGetLightxv;
  static const Function glGetLightxvOES = GLMessage_Function_glGetLightxvOES;
  static const Function glGetMaterialfv = GLMessage_Function_glGetMaterialfv;
  static const Function glGetMaterialxv = GLMessage_Function_glGetMaterialxv;
  static const Function glGetMaterialxvOES = GLMessage_Function_glGetMaterialxvOES;
  static const Function glGetPerfMonitorCounterDataAMD = GLMessage_Function_glGetPerfMonitorCounterDataAMD;
  static const Function glGetPerfMonitorCounterInfoAMD = GLMessage_Function_glGetPerfMonitorCounterInfoAMD;
  static const Function glGetPerfMonitorCountersAMD = GLMessage_Function_glGetPerfMonitorCountersAMD;
  static const Function glGetPerfMonitorCounterStringAMD = GLMessage_Function_glGetPerfMonitorCounterStringAMD;
  static const Function glGetPerfMonitorGroupsAMD = GLMessage_Function_glGetPerfMonitorGroupsAMD;
  static const Function glGetPerfMonitorGroupStringAMD = GLMessage_Function_glGetPerfMonitorGroupStringAMD;
  static const Function glGetPointerv = GLMessage_Function_glGetPointerv;
  static const Function glGetProgramBinaryOES = GLMessage_Function_glGetProgramBinaryOES;
  static const Function glGetProgramInfoLog = GLMessage_Function_glGetProgramInfoLog;
  static const Function glGetProgramiv = GLMessage_Function_glGetProgramiv;
  static const Function glGetRenderbufferParameteriv = GLMessage_Function_glGetRenderbufferParameteriv;
  static const Function glGetRenderbufferParameterivOES = GLMessage_Function_glGetRenderbufferParameterivOES;
  static const Function glGetShaderInfoLog = GLMessage_Function_glGetShaderInfoLog;
  static const Function glGetShaderiv = GLMessage_Function_glGetShaderiv;
  static const Function glGetShaderPrecisionFormat = GLMessage_Function_glGetShaderPrecisionFormat;
  static const Function glGetShaderSource = GLMessage_Function_glGetShaderSource;
  static const Function glGetString = GLMessage_Function_glGetString;
  static const Function glGetTexEnvfv = GLMessage_Function_glGetTexEnvfv;
  static const Function glGetTexEnviv = GLMessage_Function_glGetTexEnviv;
  static const Function glGetTexEnvxv = GLMessage_Function_glGetTexEnvxv;
  static const Function glGetTexEnvxvOES = GLMessage_Function_glGetTexEnvxvOES;
  static const Function glGetTexGenfvOES = GLMessage_Function_glGetTexGenfvOES;
  static const Function glGetTexGenivOES = GLMessage_Function_glGetTexGenivOES;
  static const Function glGetTexGenxvOES = GLMessage_Function_glGetTexGenxvOES;
  static const Function glGetTexParameterfv = GLMessage_Function_glGetTexParameterfv;
  static const Function glGetTexParameteriv = GLMessage_Function_glGetTexParameteriv;
  static const Function glGetTexParameterxv = GLMessage_Function_glGetTexParameterxv;
  static const Function glGetTexParameterxvOES = GLMessage_Function_glGetTexParameterxvOES;
  static const Function glGetUniformfv = GLMessage_Function_glGetUniformfv;
  static const Function glGetUniformiv = GLMessage_Function_glGetUniformiv;
  static const Function glGetUniformLocation = GLMessage_Function_glGetUniformLocation;
  static const Function glGetVertexAttribfv = GLMessage_Function_glGetVertexAttribfv;
  static const Function glGetVertexAttribiv = GLMessage_Function_glGetVertexAttribiv;
  static const Function glGetVertexAttribPointerv = GLMessage_Function_glGetVertexAttribPointerv;
  static const Function glHint = GLMessage_Function_glHint;
  static const Function glIsBuffer = GLMessage_Function_glIsBuffer;
  static const Function glIsEnabled = GLMessage_Function_glIsEnabled;
  static const Function glIsFenceNV = GLMessage_Function_glIsFenceNV;
  static const Function glIsFramebuffer = GLMessage_Function_glIsFramebuffer;
  static const Function glIsFramebufferOES = GLMessage_Function_glIsFramebufferOES;
  static const Function glIsProgram = GLMessage_Function_glIsProgram;
  static const Function glIsRenderbuffer = GLMessage_Function_glIsRenderbuffer;
  static const Function glIsRenderbufferOES = GLMessage_Function_glIsRenderbufferOES;
  static const Function glIsShader = GLMessage_Function_glIsShader;
  static const Function glIsTexture = GLMessage_Function_glIsTexture;
  static const Function glIsVertexArrayOES = GLMessage_Function_glIsVertexArrayOES;
  static const Function glLightf = GLMessage_Function_glLightf;
  static const Function glLightfv = GLMessage_Function_glLightfv;
  static const Function glLightModelf = GLMessage_Function_glLightModelf;
  static const Function glLightModelfv = GLMessage_Function_glLightModelfv;
  static const Function glLightModelx = GLMessage_Function_glLightModelx;
  static const Function glLightModelxOES = GLMessage_Function_glLightModelxOES;
  static const Function glLightModelxv = GLMessage_Function_glLightModelxv;
  static const Function glLightModelxvOES = GLMessage_Function_glLightModelxvOES;
  static const Function glLightx = GLMessage_Function_glLightx;
  static const Function glLightxOES = GLMessage_Function_glLightxOES;
  static const Function glLightxv = GLMessage_Function_glLightxv;
  static const Function glLightxvOES = GLMessage_Function_glLightxvOES;
  static const Function glLineWidth = GLMessage_Function_glLineWidth;
  static const Function glLineWidthx = GLMessage_Function_glLineWidthx;
  static const Function glLineWidthxOES = GLMessage_Function_glLineWidthxOES;
  static const Function glLinkProgram = GLMessage_Function_glLinkProgram;
  static const Function glLoadIdentity = GLMessage_Function_glLoadIdentity;
  static const Function glLoadMatrixf = GLMessage_Function_glLoadMatrixf;
  static const Function glLoadMatrixx = GLMessage_Function_glLoadMatrixx;
  static const Function glLoadMatrixxOES = GLMessage_Function_glLoadMatrixxOES;
  static const Function glLoadPaletteFromModelViewMatrixOES = GLMessage_Function_glLoadPaletteFromModelViewMatrixOES;
  static const Function glLogicOp = GLMessage_Function_glLogicOp;
  static const Function glMapBufferOES = GLMessage_Function_glMapBufferOES;
  static const Function glMaterialf = GLMessage_Function_glMaterialf;
  static const Function glMaterialfv = GLMessage_Function_glMaterialfv;
  static const Function glMaterialx = GLMessage_Function_glMaterialx;
  static const Function glMaterialxOES = GLMessage_Function_glMaterialxOES;
  static const Function glMaterialxv = GLMessage_Function_glMaterialxv;
  static const Function glMaterialxvOES = GLMessage_Function_glMaterialxvOES;
  static const Function glMatrixIndexPointerOES = GLMessage_Function_glMatrixIndexPointerOES;
  static const Function glMatrixMode = GLMessage_Function_glMatrixMode;
  static const Function glMultiDrawArraysEXT = GLMessage_Function_glMultiDrawArraysEXT;
  static const Function glMultiDrawElementsEXT = GLMessage_Function_glMultiDrawElementsEXT;
  static const Function glMultiTexCoord4f = GLMessage_Function_glMultiTexCoord4f;
  static const Function glMultiTexCoord4x = GLMessage_Function_glMultiTexCoord4x;
  static const Function glMultiTexCoord4xOES = GLMessage_Function_glMultiTexCoord4xOES;
  static const Function glMultMatrixf = GLMessage_Function_glMultMatrixf;
  static const Function glMultMatrixx = GLMessage_Function_glMultMatrixx;
  static const Function glMultMatrixxOES = GLMessage_Function_glMultMatrixxOES;
  static const Function glNormal3f = GLMessage_Function_glNormal3f;
  static const Function glNormal3x = GLMessage_Function_glNormal3x;
  static const Function glNormal3xOES = GLMessage_Function_glNormal3xOES;
  static const Function glNormalPointer = GLMessage_Function_glNormalPointer;
  static const Function glOrthof = GLMessage_Function_glOrthof;
  static const Function glOrthofOES = GLMessage_Function_glOrthofOES;
  static const Function glOrthox = GLMessage_Function_glOrthox;
  static const Function glOrthoxOES = GLMessage_Function_glOrthoxOES;
  static const Function glPixelStorei = GLMessage_Function_glPixelStorei;
  static const Function glPointParameterf = GLMessage_Function_glPointParameterf;
  static const Function glPointParameterfv = GLMessage_Function_glPointParameterfv;
  static const Function glPointParameterx = GLMessage_Function_glPointParameterx;
  static const Function glPointParameterxOES = GLMessage_Function_glPointParameterxOES;
  static const Function glPointParameterxv = GLMessage_Function_glPointParameterxv;
  static const Function glPointParameterxvOES = GLMessage_Function_glPointParameterxvOES;
  static const Function glPointSize = GLMessage_Function_glPointSize;
  static const Function glPointSizePointerOES = GLMessage_Function_glPointSizePointerOES;
  static const Function glPointSizex = GLMessage_Function_glPointSizex;
  static const Function glPointSizexOES = GLMessage_Function_glPointSizexOES;
  static const Function glPolygonOffset = GLMessage_Function_glPolygonOffset;
  static const Function glPolygonOffsetx = GLMessage_Function_glPolygonOffsetx;
  static const Function glPolygonOffsetxOES = GLMessage_Function_glPolygonOffsetxOES;
  static const Function glPopMatrix = GLMessage_Function_glPopMatrix;
  static const Function glProgramBinaryOES = GLMessage_Function_glProgramBinaryOES;
  static const Function glPushMatrix = GLMessage_Function_glPushMatrix;
  static const Function glQueryMatrixxOES = GLMessage_Function_glQueryMatrixxOES;
  static const Function glReadPixels = GLMessage_Function_glReadPixels;
  static const Function glReleaseShaderCompiler = GLMessage_Function_glReleaseShaderCompiler;
  static const Function glRenderbufferStorage = GLMessage_Function_glRenderbufferStorage;
  static const Function glRenderbufferStorageMultisampleIMG = GLMessage_Function_glRenderbufferStorageMultisampleIMG;
  static const Function glRenderbufferStorageOES = GLMessage_Function_glRenderbufferStorageOES;
  static const Function glRotatef = GLMessage_Function_glRotatef;
  static const Function glRotatex = GLMessage_Function_glRotatex;
  static const Function glRotatexOES = GLMessage_Function_glRotatexOES;
  static const Function glSampleCoverage = GLMessage_Function_glSampleCoverage;
  static const Function glSampleCoveragex = GLMessage_Function_glSampleCoveragex;
  static const Function glSampleCoveragexOES = GLMessage_Function_glSampleCoveragexOES;
  static const Function glScalef = GLMessage_Function_glScalef;
  static const Function glScalex = GLMessage_Function_glScalex;
  static const Function glScalexOES = GLMessage_Function_glScalexOES;
  static const Function glScissor = GLMessage_Function_glScissor;
  static const Function glSelectPerfMonitorCountersAMD = GLMessage_Function_glSelectPerfMonitorCountersAMD;
  static const Function glSetFenceNV = GLMessage_Function_glSetFenceNV;
  static const Function glShadeModel = GLMessage_Function_glShadeModel;
  static const Function glShaderBinary = GLMessage_Function_glShaderBinary;
  static const Function glShaderSource = GLMessage_Function_glShaderSource;
  static const Function glStartTilingQCOM = GLMessage_Function_glStartTilingQCOM;
  static const Function glStencilFunc = GLMessage_Function_glStencilFunc;
  static const Function glStencilFuncSeparate = GLMessage_Function_glStencilFuncSeparate;
  static const Function glStencilMask = GLMessage_Function_glStencilMask;
  static const Function glStencilMaskSeparate = GLMessage_Function_glStencilMaskSeparate;
  static const Function glStencilOp = GLMessage_Function_glStencilOp;
  static const Function glStencilOpSeparate = GLMessage_Function_glStencilOpSeparate;
  static const Function glTestFenceNV = GLMessage_Function_glTestFenceNV;
  static const Function glTexCoordPointer = GLMessage_Function_glTexCoordPointer;
  static const Function glTexEnvf = GLMessage_Function_glTexEnvf;
  static const Function glTexEnvfv = GLMessage_Function_glTexEnvfv;
  static const Function glTexEnvi = GLMessage_Function_glTexEnvi;
  static const Function glTexEnviv = GLMessage_Function_glTexEnviv;
  static const Function glTexEnvx = GLMessage_Function_glTexEnvx;
  static const Function glTexEnvxOES = GLMessage_Function_glTexEnvxOES;
  static const Function glTexEnvxv = GLMessage_Function_glTexEnvxv;
  static const Function glTexEnvxvOES = GLMessage_Function_glTexEnvxvOES;
  static const Function glTexGenfOES = GLMessage_Function_glTexGenfOES;
  static const Function glTexGenfvOES = GLMessage_Function_glTexGenfvOES;
  static const Function glTexGeniOES = GLMessage_Function_glTexGeniOES;
  static const Function glTexGenivOES = GLMessage_Function_glTexGenivOES;
  static const Function glTexGenxOES = GLMessage_Function_glTexGenxOES;
  static const Function glTexGenxvOES = GLMessage_Function_glTexGenxvOES;
  static const Function glTexImage2D = GLMessage_Function_glTexImage2D;
  static const Function glTexImage3DOES = GLMessage_Function_glTexImage3DOES;
  static const Function glTexParameterf = GLMessage_Function_glTexParameterf;
  static const Function glTexParameterfv = GLMessage_Function_glTexParameterfv;
  static const Function glTexParameteri = GLMessage_Function_glTexParameteri;
  static const Function glTexParameteriv = GLMessage_Function_glTexParameteriv;
  static const Function glTexParameterx = GLMessage_Function_glTexParameterx;
  static const Function glTexParameterxOES = GLMessage_Function_glTexParameterxOES;
  static const Function glTexParameterxv = GLMessage_Function_glTexParameterxv;
  static const Function glTexParameterxvOES = GLMessage_Function_glTexParameterxvOES;
  static const Function glTexSubImage2D = GLMessage_Function_glTexSubImage2D;
  static const Function glTexSubImage3DOES = GLMessage_Function_glTexSubImage3DOES;
  static const Function glTranslatef = GLMessage_Function_glTranslatef;
  static const Function glTranslatex = GLMessage_Function_glTranslatex;
  static const Function glTranslatexOES = GLMessage_Function_glTranslatexOES;
  static const Function glUniform1f = GLMessage_Function_glUniform1f;
  static const Function glUniform1fv = GLMessage_Function_glUniform1fv;
  static const Function glUniform1i = GLMessage_Function_glUniform1i;
  static const Function glUniform1iv = GLMessage_Function_glUniform1iv;
  static const Function glUniform2f = GLMessage_Function_glUniform2f;
  static const Function glUniform2fv = GLMessage_Function_glUniform2fv;
  static const Function glUniform2i = GLMessage_Function_glUniform2i;
  static const Function glUniform2iv = GLMessage_Function_glUniform2iv;
  static const Function glUniform3f = GLMessage_Function_glUniform3f;
  static const Function glUniform3fv = GLMessage_Function_glUniform3fv;
  static const Function glUniform3i = GLMessage_Function_glUniform3i;
  static const Function glUniform3iv = GLMessage_Function_glUniform3iv;
  static const Function glUniform4f = GLMessage_Function_glUniform4f;
  static const Function glUniform4fv = GLMessage_Function_glUniform4fv;
  static const Function glUniform4i = GLMessage_Function_glUniform4i;
  static const Function glUniform4iv = GLMessage_Function_glUniform4iv;
  static const Function glUniformMatrix2fv = GLMessage_Function_glUniformMatrix2fv;
  static const Function glUniformMatrix3fv = GLMessage_Function_glUniformMatrix3fv;
  static const Function glUniformMatrix4fv = GLMessage_Function_glUniformMatrix4fv;
  static const Function glUnmapBufferOES = GLMessage_Function_glUnmapBufferOES;
  static const Function glUseProgram = GLMessage_Function_glUseProgram;
  static const Function glValidateProgram = GLMessage_Function_glValidateProgram;
  static const Function glVertexAttrib1f = GLMessage_Function_glVertexAttrib1f;
  static const Function glVertexAttrib1fv = GLMessage_Function_glVertexAttrib1fv;
  static const Function glVertexAttrib2f = GLMessage_Function_glVertexAttrib2f;
  static const Function glVertexAttrib2fv = GLMessage_Function_glVertexAttrib2fv;
  static const Function glVertexAttrib3f = GLMessage_Function_glVertexAttrib3f;
  static const Function glVertexAttrib3fv = GLMessage_Function_glVertexAttrib3fv;
  static const Function glVertexAttrib4f = GLMessage_Function_glVertexAttrib4f;
  static const Function glVertexAttrib4fv = GLMessage_Function_glVertexAttrib4fv;
  static const Function glVertexAttribPointer = GLMessage_Function_glVertexAttribPointer;
  static const Function glVertexPointer = GLMessage_Function_glVertexPointer;
  static const Function glViewport = GLMessage_Function_glViewport;
  static const Function glWeightPointerOES = GLMessage_Function_glWeightPointerOES;
  static const Function glReadBuffer = GLMessage_Function_glReadBuffer;
  static const Function glDrawRangeElements = GLMessage_Function_glDrawRangeElements;
  static const Function glTexImage3D = GLMessage_Function_glTexImage3D;
  static const Function glTexSubImage3D = GLMessage_Function_glTexSubImage3D;
  static const Function glCopyTexSubImage3D = GLMessage_Function_glCopyTexSubImage3D;
  static const Function glCompressedTexImage3D = GLMessage_Function_glCompressedTexImage3D;
  static const Function glCompressedTexSubImage3D = GLMessage_Function_glCompressedTexSubImage3D;
  static const Function glGenQueries = GLMessage_Function_glGenQueries;
  static const Function glDeleteQueries = GLMessage_Function_glDeleteQueries;
  static const Function glIsQuery = GLMessage_Function_glIsQuery;
  static const Function glBeginQuery = GLMessage_Function_glBeginQuery;
  static const Function glEndQuery = GLMessage_Function_glEndQuery;
  static const Function glGetQueryiv = GLMessage_Function_glGetQueryiv;
  static const Function glGetQueryObjectuiv = GLMessage_Function_glGetQueryObjectuiv;
  static const Function glUnmapBuffer = GLMessage_Function_glUnmapBuffer;
  static const Function glGetBufferPointerv = GLMessage_Function_glGetBufferPointerv;
  static const Function glDrawBuffers = GLMessage_Function_glDrawBuffers;
  static const Function glUniformMatrix2x3fv = GLMessage_Function_glUniformMatrix2x3fv;
  static const Function glUniformMatrix3x2fv = GLMessage_Function_glUniformMatrix3x2fv;
  static const Function glUniformMatrix2x4fv = GLMessage_Function_glUniformMatrix2x4fv;
  static const Function glUniformMatrix4x2fv = GLMessage_Function_glUniformMatrix4x2fv;
  static const Function glUniformMatrix3x4fv = GLMessage_Function_glUniformMatrix3x4fv;
  static const Function glUniformMatrix4x3fv = GLMessage_Function_glUniformMatrix4x3fv;
  static const Function glBlitFramebuffer = GLMessage_Function_glBlitFramebuffer;
  static const Function glRenderbufferStorageMultisample = GLMessage_Function_glRenderbufferStorageMultisample;
  static const Function glFramebufferTextureLayer = GLMessage_Function_glFramebufferTextureLayer;
  static const Function glMapBufferRange = GLMessage_Function_glMapBufferRange;
  static const Function glFlushMappedBufferRange = GLMessage_Function_glFlushMappedBufferRange;
  static const Function glBindVertexArray = GLMessage_Function_glBindVertexArray;
  static const Function glDeleteVertexArrays = GLMessage_Function_glDeleteVertexArrays;
  static const Function glGenVertexArrays = GLMessage_Function_glGenVertexArrays;
  static const Function glIsVertexArray = GLMessage_Function_glIsVertexArray;
  static const Function glGetIntegeri_v = GLMessage_Function_glGetIntegeri_v;
  static const Function glBeginTransformFeedback = GLMessage_Function_glBeginTransformFeedback;
  static const Function glEndTransformFeedback = GLMessage_Function_glEndTransformFeedback;
  static const Function glBindBufferRange = GLMessage_Function_glBindBufferRange;
  static const Function glBindBufferBase = GLMessage_Function_glBindBufferBase;
  static const Function glTransformFeedbackVaryings = GLMessage_Function_glTransformFeedbackVaryings;
  static const Function glGetTransformFeedbackVarying = GLMessage_Function_glGetTransformFeedbackVarying;
  static const Function glVertexAttribIPointer = GLMessage_Function_glVertexAttribIPointer;
  static const Function glGetVertexAttribIiv = GLMessage_Function_glGetVertexAttribIiv;
  static const Function glGetVertexAttribIuiv = GLMessage_Function_glGetVertexAttribIuiv;
  static const Function glVertexAttribI4i = GLMessage_Function_glVertexAttribI4i;
  static const Function glVertexAttribI4ui = GLMessage_Function_glVertexAttribI4ui;
  static const Function glVertexAttribI4iv = GLMessage_Function_glVertexAttribI4iv;
  static const Function glVertexAttribI4uiv = GLMessage_Function_glVertexAttribI4uiv;
  static const Function glGetUniformuiv = GLMessage_Function_glGetUniformuiv;
  static const Function glGetFragDataLocation = GLMessage_Function_glGetFragDataLocation;
  static const Function glUniform1ui = GLMessage_Function_glUniform1ui;
  static const Function glUniform2ui = GLMessage_Function_glUniform2ui;
  static const Function glUniform3ui = GLMessage_Function_glUniform3ui;
  static const Function glUniform4ui = GLMessage_Function_glUniform4ui;
  static const Function glUniform1uiv = GLMessage_Function_glUniform1uiv;
  static const Function glUniform2uiv = GLMessage_Function_glUniform2uiv;
  static const Function glUniform3uiv = GLMessage_Function_glUniform3uiv;
  static const Function glUniform4uiv = GLMessage_Function_glUniform4uiv;
  static const Function glClearBufferiv = GLMessage_Function_glClearBufferiv;
  static const Function glClearBufferuiv = GLMessage_Function_glClearBufferuiv;
  static const Function glClearBufferfv = GLMessage_Function_glClearBufferfv;
  static const Function glClearBufferfi = GLMessage_Function_glClearBufferfi;
  static const Function glGetStringi = GLMessage_Function_glGetStringi;
  static const Function glCopyBufferSubData = GLMessage_Function_glCopyBufferSubData;
  static const Function glGetUniformIndices = GLMessage_Function_glGetUniformIndices;
  static const Function glGetActiveUniformsiv = GLMessage_Function_glGetActiveUniformsiv;
  static const Function glGetUniformBlockIndex = GLMessage_Function_glGetUniformBlockIndex;
  static const Function glGetActiveUniformBlockiv = GLMessage_Function_glGetActiveUniformBlockiv;
  static const Function glGetActiveUniformBlockName = GLMessage_Function_glGetActiveUniformBlockName;
  static const Function glUniformBlockBinding = GLMessage_Function_glUniformBlockBinding;
  static const Function glDrawArraysInstanced = GLMessage_Function_glDrawArraysInstanced;
  static const Function glDrawElementsInstanced = GLMessage_Function_glDrawElementsInstanced;
  static const Function glFenceSync = GLMessage_Function_glFenceSync;
  static const Function glIsSync = GLMessage_Function_glIsSync;
  static const Function glDeleteSync = GLMessage_Function_glDeleteSync;
  static const Function glClientWaitSync = GLMessage_Function_glClientWaitSync;
  static const Function glWaitSync = GLMessage_Function_glWaitSync;
  static const Function glGetInteger64v = GLMessage_Function_glGetInteger64v;
  static const Function glGetSynciv = GLMessage_Function_glGetSynciv;
  static const Function glGetInteger64i_v = GLMessage_Function_glGetInteger64i_v;
  static const Function glGetBufferParameteri64v = GLMessage_Function_glGetBufferParameteri64v;
  static const Function glGenSamplers = GLMessage_Function_glGenSamplers;
  static const Function glDeleteSamplers = GLMessage_Function_glDeleteSamplers;
  static const Function glIsSampler = GLMessage_Function_glIsSampler;
  static const Function glBindSampler = GLMessage_Function_glBindSampler;
  static const Function glSamplerParameteri = GLMessage_Function_glSamplerParameteri;
  static const Function glSamplerParameteriv = GLMessage_Function_glSamplerParameteriv;
  static const Function glSamplerParameterf = GLMessage_Function_glSamplerParameterf;
  static const Function glSamplerParameterfv = GLMessage_Function_glSamplerParameterfv;
  static const Function glGetSamplerParameteriv = GLMessage_Function_glGetSamplerParameteriv;
  static const Function glGetSamplerParameterfv = GLMessage_Function_glGetSamplerParameterfv;
  static const Function glVertexAttribDivisor = GLMessage_Function_glVertexAttribDivisor;
  static const Function glBindTransformFeedback = GLMessage_Function_glBindTransformFeedback;
  static const Function glDeleteTransformFeedbacks = GLMessage_Function_glDeleteTransformFeedbacks;
  static const Function glGenTransformFeedbacks = GLMessage_Function_glGenTransformFeedbacks;
  static const Function glIsTransformFeedback = GLMessage_Function_glIsTransformFeedback;
  static const Function glPauseTransformFeedback = GLMessage_Function_glPauseTransformFeedback;
  static const Function glResumeTransformFeedback = GLMessage_Function_glResumeTransformFeedback;
  static const Function glGetProgramBinary = GLMessage_Function_glGetProgramBinary;
  static const Function glProgramBinary = GLMessage_Function_glProgramBinary;
  static const Function glProgramParameteri = GLMessage_Function_glProgramParameteri;
  static const Function glInvalidateFramebuffer = GLMessage_Function_glInvalidateFramebuffer;
  static const Function glInvalidateSubFramebuffer = GLMessage_Function_glInvalidateSubFramebuffer;
  static const Function glTexStorage2D = GLMessage_Function_glTexStorage2D;
  static const Function glTexStorage3D = GLMessage_Function_glTexStorage3D;
  static const Function glGetInternalformativ = GLMessage_Function_glGetInternalformativ;
  static const Function glBeginPerfQueryINTEL = GLMessage_Function_glBeginPerfQueryINTEL;
  static const Function glCreatePerfQueryINTEL = GLMessage_Function_glCreatePerfQueryINTEL;
  static const Function glDeletePerfQueryINTEL = GLMessage_Function_glDeletePerfQueryINTEL;
  static const Function glEndPerfQueryINTEL = GLMessage_Function_glEndPerfQueryINTEL;
  static const Function glGetFirstPerfQueryIdINTEL = GLMessage_Function_glGetFirstPerfQueryIdINTEL;
  static const Function glGetNextPerfQueryIdINTEL = GLMessage_Function_glGetNextPerfQueryIdINTEL;
  static const Function glGetPerfCounterInfoINTEL = GLMessage_Function_glGetPerfCounterInfoINTEL;
  static const Function glGetPerfQueryDataINTEL = GLMessage_Function_glGetPerfQueryDataINTEL;
  static const Function glGetPerfQueryIdByNameINTEL = GLMessage_Function_glGetPerfQueryIdByNameINTEL;
  static const Function glGetPerfQueryInfoINTEL = GLMessage_Function_glGetPerfQueryInfoINTEL;
  static const Function glBlendBarrierKHR = GLMessage_Function_glBlendBarrierKHR;
  static const Function glBlendBarrierNV = GLMessage_Function_glBlendBarrierNV;
  static const Function glBlendParameteriNV = GLMessage_Function_glBlendParameteriNV;
  static const Function glBlitFramebufferNV = GLMessage_Function_glBlitFramebufferNV;
  static const Function glFenceSyncAPPLE = GLMessage_Function_glFenceSyncAPPLE;
  static const Function glIsSyncAPPLE = GLMessage_Function_glIsSyncAPPLE;
  static const Function glDeleteSyncAPPLE = GLMessage_Function_glDeleteSyncAPPLE;
  static const Function glClientWaitSyncAPPLE = GLMessage_Function_glClientWaitSyncAPPLE;
  static const Function glWaitSyncAPPLE = GLMessage_Function_glWaitSyncAPPLE;
  static const Function glGetInteger64vAPPLE = GLMessage_Function_glGetInteger64vAPPLE;
  static const Function glGetSyncivAPPLE = GLMessage_Function_glGetSyncivAPPLE;
  static const Function glCopyBufferSubDataNV = GLMessage_Function_glCopyBufferSubDataNV;
  static const Function glActiveShaderProgramEXT = GLMessage_Function_glActiveShaderProgramEXT;
  static const Function glAlphaFuncQCOM = GLMessage_Function_glAlphaFuncQCOM;
  static const Function glBeginQueryEXT = GLMessage_Function_glBeginQueryEXT;
  static const Function glBindProgramPipelineEXT = GLMessage_Function_glBindProgramPipelineEXT;
  static const Function glBlitFramebufferANGLE = GLMessage_Function_glBlitFramebufferANGLE;
  static const Function glCreateShaderProgramvEXT = GLMessage_Function_glCreateShaderProgramvEXT;
  static const Function glDeleteProgramPipelinesEXT = GLMessage_Function_glDeleteProgramPipelinesEXT;
  static const Function glDeleteQueriesEXT = GLMessage_Function_glDeleteQueriesEXT;
  static const Function glDrawBuffersNV = GLMessage_Function_glDrawBuffersNV;
  static const Function glEndQueryEXT = GLMessage_Function_glEndQueryEXT;
  static const Function glFramebufferTexture2DMultisampleEXT = GLMessage_Function_glFramebufferTexture2DMultisampleEXT;
  static const Function glGenProgramPipelinesEXT = GLMessage_Function_glGenProgramPipelinesEXT;
  static const Function glGenQueriesEXT = GLMessage_Function_glGenQueriesEXT;
  static const Function glGetGraphicsResetStatusEXT = GLMessage_Function_glGetGraphicsResetStatusEXT;
  static const Function glGetObjectLabelEXT = GLMessage_Function_glGetObjectLabelEXT;
  static const Function glGetProgramPipelineInfoLogEXT = GLMessage_Function_glGetProgramPipelineInfoLogEXT;
  static const Function glGetProgramPipelineivEXT = GLMessage_Function_glGetProgramPipelineivEXT;
  static const Function glGetQueryObjectuivEXT = GLMessage_Function_glGetQueryObjectuivEXT;
  static const Function glGetQueryivEXT = GLMessage_Function_glGetQueryivEXT;
  static const Function glGetnUniformfvEXT = GLMessage_Function_glGetnUniformfvEXT;
  static const Function glGetnUniformivEXT = GLMessage_Function_glGetnUniformivEXT;
  static const Function glInsertEventMarkerEXT = GLMessage_Function_glInsertEventMarkerEXT;
  static const Function glIsProgramPipelineEXT = GLMessage_Function_glIsProgramPipelineEXT;
  static const Function glIsQueryEXT = GLMessage_Function_glIsQueryEXT;
  static const Function glLabelObjectEXT = GLMessage_Function_glLabelObjectEXT;
  static const Function glPopGroupMarkerEXT = GLMessage_Function_glPopGroupMarkerEXT;
  static const Function glProgramParameteriEXT = GLMessage_Function_glProgramParameteriEXT;
  static const Function glProgramUniform1fEXT = GLMessage_Function_glProgramUniform1fEXT;
  static const Function glProgramUniform1fvEXT = GLMessage_Function_glProgramUniform1fvEXT;
  static const Function glProgramUniform1iEXT = GLMessage_Function_glProgramUniform1iEXT;
  static const Function glProgramUniform1ivEXT = GLMessage_Function_glProgramUniform1ivEXT;
  static const Function glProgramUniform2fEXT = GLMessage_Function_glProgramUniform2fEXT;
  static const Function glProgramUniform2fvEXT = GLMessage_Function_glProgramUniform2fvEXT;
  static const Function glProgramUniform2iEXT = GLMessage_Function_glProgramUniform2iEXT;
  static const Function glProgramUniform2ivEXT = GLMessage_Function_glProgramUniform2ivEXT;
  static const Function glProgramUniform3fEXT = GLMessage_Function_glProgramUniform3fEXT;
  static const Function glProgramUniform3fvEXT = GLMessage_Function_glProgramUniform3fvEXT;
  static const Function glProgramUniform3iEXT = GLMessage_Function_glProgramUniform3iEXT;
  static const Function glProgramUniform3ivEXT = GLMessage_Function_glProgramUniform3ivEXT;
  static const Function glProgramUniform4fEXT = GLMessage_Function_glProgramUniform4fEXT;
  static const Function glProgramUniform4fvEXT = GLMessage_Function_glProgramUniform4fvEXT;
  static const Function glProgramUniform4iEXT = GLMessage_Function_glProgramUniform4iEXT;
  static const Function glProgramUniform4ivEXT = GLMessage_Function_glProgramUniform4ivEXT;
  static const Function glProgramUniformMatrix2fvEXT = GLMessage_Function_glProgramUniformMatrix2fvEXT;
  static const Function glProgramUniformMatrix3fvEXT = GLMessage_Function_glProgramUniformMatrix3fvEXT;
  static const Function glProgramUniformMatrix4fvEXT = GLMessage_Function_glProgramUniformMatrix4fvEXT;
  static const Function glPushGroupMarkerEXT = GLMessage_Function_glPushGroupMarkerEXT;
  static const Function glReadBufferNV = GLMessage_Function_glReadBufferNV;
  static const Function glReadnPixelsEXT = GLMessage_Function_glReadnPixelsEXT;
  static const Function glRenderbufferStorageMultisampleANGLE = GLMessage_Function_glRenderbufferStorageMultisampleANGLE;
  static const Function glRenderbufferStorageMultisampleAPPLE = GLMessage_Function_glRenderbufferStorageMultisampleAPPLE;
  static const Function glRenderbufferStorageMultisampleEXT = GLMessage_Function_glRenderbufferStorageMultisampleEXT;
  static const Function glResolveMultisampleFramebufferAPPLE = GLMessage_Function_glResolveMultisampleFramebufferAPPLE;
  static const Function glTexStorage1DEXT = GLMessage_Function_glTexStorage1DEXT;
  static const Function glTexStorage2DEXT = GLMessage_Function_glTexStorage2DEXT;
  static const Function glTexStorage3DEXT = GLMessage_Function_glTexStorage3DEXT;
  static const Function glTextureStorage1DEXT = GLMessage_Function_glTextureStorage1DEXT;
  static const Function glTextureStorage2DEXT = GLMessage_Function_glTextureStorage2DEXT;
  static const Function glTextureStorage3DEXT = GLMessage_Function_glTextureStorage3DEXT;
  static const Function glUseProgramStagesEXT = GLMessage_Function_glUseProgramStagesEXT;
  static const Function glValidateProgramPipelineEXT = GLMessage_Function_glValidateProgramPipelineEXT;
  static const Function glCopyTextureLevelsAPPLE = GLMessage_Function_glCopyTextureLevelsAPPLE;
  static const Function glDebugMessageControlKHR = GLMessage_Function_glDebugMessageControlKHR;
  static const Function glDebugMessageInsertKHR = GLMessage_Function_glDebugMessageInsertKHR;
  static const Function glDebugMessageCallbackKHR = GLMessage_Function_glDebugMessageCallbackKHR;
  static const Function glGetDebugMessageLogKHR = GLMessage_Function_glGetDebugMessageLogKHR;
  static const Function glPushDebugGroupKHR = GLMessage_Function_glPushDebugGroupKHR;
  static const Function glPopDebugGroupKHR = GLMessage_Function_glPopDebugGroupKHR;
  static const Function glObjectLabelKHR = GLMessage_Function_glObjectLabelKHR;
  static const Function glGetObjectLabelKHR = GLMessage_Function_glGetObjectLabelKHR;
  static const Function glObjectPtrLabelKHR = GLMessage_Function_glObjectPtrLabelKHR;
  static const Function glGetObjectPtrLabelKHR = GLMessage_Function_glGetObjectPtrLabelKHR;
  static const Function glGetPointervKHR = GLMessage_Function_glGetPointervKHR;
  static const Function glDrawArraysInstancedANGLE = GLMessage_Function_glDrawArraysInstancedANGLE;
  static const Function glDrawElementsInstancedANGLE = GLMessage_Function_glDrawElementsInstancedANGLE;
  static const Function glVertexAttribDivisorANGLE = GLMessage_Function_glVertexAttribDivisorANGLE;
  static const Function glDrawArraysInstancedEXT = GLMessage_Function_glDrawArraysInstancedEXT;
  static const Function glDrawElementsInstancedEXT = GLMessage_Function_glDrawElementsInstancedEXT;
  static const Function glVertexAttribDivisorEXT = GLMessage_Function_glVertexAttribDivisorEXT;
  static const Function glDrawArraysInstancedNV = GLMessage_Function_glDrawArraysInstancedNV;
  static const Function glDrawElementsInstancedNV = GLMessage_Function_glDrawElementsInstancedNV;
  static const Function glVertexAttribDivisorNV = GLMessage_Function_glVertexAttribDivisorNV;
  static const Function glDrawBuffersEXT = GLMessage_Function_glDrawBuffersEXT;
  static const Function glReadBufferIndexedEXT = GLMessage_Function_glReadBufferIndexedEXT;
  static const Function glDrawBuffersIndexedEXT = GLMessage_Function_glDrawBuffersIndexedEXT;
  static const Function glGetIntegeri_vEXT = GLMessage_Function_glGetIntegeri_vEXT;
  static const Function glMapBufferRangeEXT = GLMessage_Function_glMapBufferRangeEXT;
  static const Function glFlushMappedBufferRangeEXT = GLMessage_Function_glFlushMappedBufferRangeEXT;
  static const Function glQueryCounterEXT = GLMessage_Function_glQueryCounterEXT;
  static const Function glGetQueryObjecti64vEXT = GLMessage_Function_glGetQueryObjecti64vEXT;
  static const Function glGetQueryObjectivEXT = GLMessage_Function_glGetQueryObjectivEXT;
  static const Function glGetQueryObjectui64vEXT = GLMessage_Function_glGetQueryObjectui64vEXT;
  static const Function glGetTranslatedShaderSourceANGLE = GLMessage_Function_glGetTranslatedShaderSourceANGLE;
  static const Function glMinSampleShadingOES = GLMessage_Function_glMinSampleShadingOES;
  static const Function glMultiTexCoord1bOES = GLMessage_Function_glMultiTexCoord1bOES;
  static const Function glMultiTexCoord1bvOES = GLMessage_Function_glMultiTexCoord1bvOES;
  static const Function glMultiTexCoord2bOES = GLMessage_Function_glMultiTexCoord2bOES;
  static const Function glMultiTexCoord2bvOES = GLMessage_Function_glMultiTexCoord2bvOES;
  static const Function glMultiTexCoord3bOES = GLMessage_Function_glMultiTexCoord3bOES;
  static const Function glMultiTexCoord3bvOES = GLMessage_Function_glMultiTexCoord3bvOES;
  static const Function glMultiTexCoord4bOES = GLMessage_Function_glMultiTexCoord4bOES;
  static const Function glMultiTexCoord4bvOES = GLMessage_Function_glMultiTexCoord4bvOES;
  static const Function glTexCoord1bOES = GLMessage_Function_glTexCoord1bOES;
  static const Function glTexCoord1bvOES = GLMessage_Function_glTexCoord1bvOES;
  static const Function glTexCoord2bOES = GLMessage_Function_glTexCoord2bOES;
  static const Function glTexCoord2bvOES = GLMessage_Function_glTexCoord2bvOES;
  static const Function glTexCoord3bOES = GLMessage_Function_glTexCoord3bOES;
  static const Function glTexCoord3bvOES = GLMessage_Function_glTexCoord3bvOES;
  static const Function glTexCoord4bOES = GLMessage_Function_glTexCoord4bOES;
  static const Function glTexCoord4bvOES = GLMessage_Function_glTexCoord4bvOES;
  static const Function glVertex2bOES = GLMessage_Function_glVertex2bOES;
  static const Function glVertex2bvOES = GLMessage_Function_glVertex2bvOES;
  static const Function glVertex3bOES = GLMessage_Function_glVertex3bOES;
  static const Function glVertex3bvOES = GLMessage_Function_glVertex3bvOES;
  static const Function glVertex4bOES = GLMessage_Function_glVertex4bOES;
  static const Function glVertex4bvOES = GLMessage_Function_glVertex4bvOES;
  static const Function glProgramUniform1uiEXT = GLMessage_Function_glProgramUniform1uiEXT;
  static const Function glProgramUniform2uiEXT = GLMessage_Function_glProgramUniform2uiEXT;
  static const Function glProgramUniform3uiEXT = GLMessage_Function_glProgramUniform3uiEXT;
  static const Function glProgramUniform4uiEXT = GLMessage_Function_glProgramUniform4uiEXT;
  static const Function glProgramUniform1uivEXT = GLMessage_Function_glProgramUniform1uivEXT;
  static const Function glProgramUniform2uivEXT = GLMessage_Function_glProgramUniform2uivEXT;
  static const Function glProgramUniform3uivEXT = GLMessage_Function_glProgramUniform3uivEXT;
  static const Function glProgramUniform4uivEXT = GLMessage_Function_glProgramUniform4uivEXT;
  static const Function glProgramUniformMatrix2x3fvEXT = GLMessage_Function_glProgramUniformMatrix2x3fvEXT;
  static const Function glProgramUniformMatrix3x2fvEXT = GLMessage_Function_glProgramUniformMatrix3x2fvEXT;
  static const Function glProgramUniformMatrix2x4fvEXT = GLMessage_Function_glProgramUniformMatrix2x4fvEXT;
  static const Function glProgramUniformMatrix4x2fvEXT = GLMessage_Function_glProgramUniformMatrix4x2fvEXT;
  static const Function glProgramUniformMatrix3x4fvEXT = GLMessage_Function_glProgramUniformMatrix3x4fvEXT;
  static const Function glProgramUniformMatrix4x3fvEXT = GLMessage_Function_glProgramUniformMatrix4x3fvEXT;
  static const Function glRenderbufferStorageMultisampleNV = GLMessage_Function_glRenderbufferStorageMultisampleNV;
  static const Function glSampleCoverageOES = GLMessage_Function_glSampleCoverageOES;
  static const Function glTexStorage3DMultisampleOES = GLMessage_Function_glTexStorage3DMultisampleOES;
  static const Function glUniformMatrix2x3fvNV = GLMessage_Function_glUniformMatrix2x3fvNV;
  static const Function glUniformMatrix3x2fvNV = GLMessage_Function_glUniformMatrix3x2fvNV;
  static const Function glUniformMatrix2x4fvNV = GLMessage_Function_glUniformMatrix2x4fvNV;
  static const Function glUniformMatrix4x2fvNV = GLMessage_Function_glUniformMatrix4x2fvNV;
  static const Function glUniformMatrix3x4fvNV = GLMessage_Function_glUniformMatrix3x4fvNV;
  static const Function glUniformMatrix4x3fvNV = GLMessage_Function_glUniformMatrix4x3fvNV;
  static const Function glActiveShaderProgram = GLMessage_Function_glActiveShaderProgram;
  static const Function glBindImageTexture = GLMessage_Function_glBindImageTexture;
  static const Function glBindProgramPipeline = GLMessage_Function_glBindProgramPipeline;
  static const Function glBindVertexBuffer = GLMessage_Function_glBindVertexBuffer;
  static const Function glCreateShaderProgramv = GLMessage_Function_glCreateShaderProgramv;
  static const Function glDeleteProgramPipelines = GLMessage_Function_glDeleteProgramPipelines;
  static const Function glDispatchCompute = GLMessage_Function_glDispatchCompute;
  static const Function glDispatchComputeIndirect = GLMessage_Function_glDispatchComputeIndirect;
  static const Function glDrawArraysIndirect = GLMessage_Function_glDrawArraysIndirect;
  static const Function glDrawElementsIndirect = GLMessage_Function_glDrawElementsIndirect;
  static const Function glFramebufferParameteri = GLMessage_Function_glFramebufferParameteri;
  static const Function glGenProgramPipelines = GLMessage_Function_glGenProgramPipelines;
  static const Function glGetBooleani_v = GLMessage_Function_glGetBooleani_v;
  static const Function glGetFramebufferParameteriv = GLMessage_Function_glGetFramebufferParameteriv;
  static const Function glGetMultisamplefv = GLMessage_Function_glGetMultisamplefv;
  static const Function glGetProgramInterfaceiv = GLMessage_Function_glGetProgramInterfaceiv;
  static const Function glGetProgramPipelineInfoLog = GLMessage_Function_glGetProgramPipelineInfoLog;
  static const Function glGetProgramPipelineiv = GLMessage_Function_glGetProgramPipelineiv;
  static const Function glGetProgramResourceIndex = GLMessage_Function_glGetProgramResourceIndex;
  static const Function glGetProgramResourceLocation = GLMessage_Function_glGetProgramResourceLocation;
  static const Function glGetProgramResourceName = GLMessage_Function_glGetProgramResourceName;
  static const Function glGetProgramResourceiv = GLMessage_Function_glGetProgramResourceiv;
  static const Function glGetTexLevelParameterfv = GLMessage_Function_glGetTexLevelParameterfv;
  static const Function glGetTexLevelParameteriv = GLMessage_Function_glGetTexLevelParameteriv;
  static const Function glIsProgramPipeline = GLMessage_Function_glIsProgramPipeline;
  static const Function glMemoryBarrier = GLMessage_Function_glMemoryBarrier;
  static const Function glMemoryBarrierByRegion = GLMessage_Function_glMemoryBarrierByRegion;
  static const Function glProgramUniform1f = GLMessage_Function_glProgramUniform1f;
  static const Function glProgramUniform1fv = GLMessage_Function_glProgramUniform1fv;
  static const Function glProgramUniform1i = GLMessage_Function_glProgramUniform1i;
  static const Function glProgramUniform1iv = GLMessage_Function_glProgramUniform1iv;
  static const Function glProgramUniform1ui = GLMessage_Function_glProgramUniform1ui;
  static const Function glProgramUniform1uiv = GLMessage_Function_glProgramUniform1uiv;
  static const Function glProgramUniform2f = GLMessage_Function_glProgramUniform2f;
  static const Function glProgramUniform2fv = GLMessage_Function_glProgramUniform2fv;
  static const Function glProgramUniform2i = GLMessage_Function_glProgramUniform2i;
  static const Function glProgramUniform2iv = GLMessage_Function_glProgramUniform2iv;
  static const Function glProgramUniform2ui = GLMessage_Function_glProgramUniform2ui;
  static const Function glProgramUniform2uiv = GLMessage_Function_glProgramUniform2uiv;
  static const Function glProgramUniform3f = GLMessage_Function_glProgramUniform3f;
  static const Function glProgramUniform3fv = GLMessage_Function_glProgramUniform3fv;
  static const Function glProgramUniform3i = GLMessage_Function_glProgramUniform3i;
  static const Function glProgramUniform3iv = GLMessage_Function_glProgramUniform3iv;
  static const Function glProgramUniform3ui = GLMessage_Function_glProgramUniform3ui;
  static const Function glProgramUniform3uiv = GLMessage_Function_glProgramUniform3uiv;
  static const Function glProgramUniform4f = GLMessage_Function_glProgramUniform4f;
  static const Function glProgramUniform4fv = GLMessage_Function_glProgramUniform4fv;
  static const Function glProgramUniform4i = GLMessage_Function_glProgramUniform4i;
  static const Function glProgramUniform4iv = GLMessage_Function_glProgramUniform4iv;
  static const Function glProgramUniform4ui = GLMessage_Function_glProgramUniform4ui;
  static const Function glProgramUniform4uiv = GLMessage_Function_glProgramUniform4uiv;
  static const Function glProgramUniformMatrix2fv = GLMessage_Function_glProgramUniformMatrix2fv;
  static const Function glProgramUniformMatrix2x3fv = GLMessage_Function_glProgramUniformMatrix2x3fv;
  static const Function glProgramUniformMatrix2x4fv = GLMessage_Function_glProgramUniformMatrix2x4fv;
  static const Function glProgramUniformMatrix3fv = GLMessage_Function_glProgramUniformMatrix3fv;
  static const Function glProgramUniformMatrix3x2fv = GLMessage_Function_glProgramUniformMatrix3x2fv;
  static const Function glProgramUniformMatrix3x4fv = GLMessage_Function_glProgramUniformMatrix3x4fv;
  static const Function glProgramUniformMatrix4fv = GLMessage_Function_glProgramUniformMatrix4fv;
  static const Function glProgramUniformMatrix4x2fv = GLMessage_Function_glProgramUniformMatrix4x2fv;
  static const Function glProgramUniformMatrix4x3fv = GLMessage_Function_glProgramUniformMatrix4x3fv;
  static const Function glSampleMaski = GLMessage_Function_glSampleMaski;
  static const Function glTexStorage2DMultisample = GLMessage_Function_glTexStorage2DMultisample;
  static const Function glUseProgramStages = GLMessage_Function_glUseProgramStages;
  static const Function glValidateProgramPipeline = GLMessage_Function_glValidateProgramPipeline;
  static const Function glVertexAttribBinding = GLMessage_Function_glVertexAttribBinding;
  static const Function glVertexAttribFormat = GLMessage_Function_glVertexAttribFormat;
  static const Function glVertexAttribIFormat = GLMessage_Function_glVertexAttribIFormat;
  static const Function glVertexBindingDivisor = GLMessage_Function_glVertexBindingDivisor;
  static const Function glBlendEquationSeparateiEXT = GLMessage_Function_glBlendEquationSeparateiEXT;
  static const Function glBlendEquationiEXT = GLMessage_Function_glBlendEquationiEXT;
  static const Function glBlendFuncSeparateiEXT = GLMessage_Function_glBlendFuncSeparateiEXT;
  static const Function glBlendFunciEXT = GLMessage_Function_glBlendFunciEXT;
  static const Function glColorMaskiEXT = GLMessage_Function_glColorMaskiEXT;
  static const Function glCopyImageSubDataEXT = GLMessage_Function_glCopyImageSubDataEXT;
  static const Function glDisableiEXT = GLMessage_Function_glDisableiEXT;
  static const Function glEnableiEXT = GLMessage_Function_glEnableiEXT;
  static const Function glFramebufferTextureEXT = GLMessage_Function_glFramebufferTextureEXT;
  static const Function glGetSamplerParameterIivEXT = GLMessage_Function_glGetSamplerParameterIivEXT;
  static const Function glGetSamplerParameterIuivEXT = GLMessage_Function_glGetSamplerParameterIuivEXT;
  static const Function glGetTexParameterIivEXT = GLMessage_Function_glGetTexParameterIivEXT;
  static const Function glGetTexParameterIuivEXT = GLMessage_Function_glGetTexParameterIuivEXT;
  static const Function glIsEnablediEXT = GLMessage_Function_glIsEnablediEXT;
  static const Function glPatchParameteriEXT = GLMessage_Function_glPatchParameteriEXT;
  static const Function glPrimitiveBoundingBoxEXT = GLMessage_Function_glPrimitiveBoundingBoxEXT;
  static const Function glSamplerParameterIivEXT = GLMessage_Function_glSamplerParameterIivEXT;
  static const Function glSamplerParameterIuivEXT = GLMessage_Function_glSamplerParameterIuivEXT;
  static const Function glTexBufferEXT = GLMessage_Function_glTexBufferEXT;
  static const Function glTexBufferRangeEXT = GLMessage_Function_glTexBufferRangeEXT;
  static const Function glTexParameterIivEXT = GLMessage_Function_glTexParameterIivEXT;
  static const Function glTexParameterIuivEXT = GLMessage_Function_glTexParameterIuivEXT;
  static const Function glTextureViewEXT = GLMessage_Function_glTextureViewEXT;
  static const Function eglGetDisplay = GLMessage_Function_eglGetDisplay;
  static const Function eglInitialize = GLMessage_Function_eglInitialize;
  static const Function eglTerminate = GLMessage_Function_eglTerminate;
  static const Function eglGetConfigs = GLMessage_Function_eglGetConfigs;
  static const Function eglChooseConfig = GLMessage_Function_eglChooseConfig;
  static const Function eglGetConfigAttrib = GLMessage_Function_eglGetConfigAttrib;
  static const Function eglCreateWindowSurface = GLMessage_Function_eglCreateWindowSurface;
  static const Function eglCreatePixmapSurface = GLMessage_Function_eglCreatePixmapSurface;
  static const Function eglCreatePbufferSurface = GLMessage_Function_eglCreatePbufferSurface;
  static const Function eglDestroySurface = GLMessage_Function_eglDestroySurface;
  static const Function eglQuerySurface = GLMessage_Function_eglQuerySurface;
  static const Function eglCreateContext = GLMessage_Function_eglCreateContext;
  static const Function eglDestroyContext = GLMessage_Function_eglDestroyContext;
  static const Function eglMakeCurrent = GLMessage_Function_eglMakeCurrent;
  static const Function eglGetCurrentContext = GLMessage_Function_eglGetCurrentContext;
  static const Function eglGetCurrentSurface = GLMessage_Function_eglGetCurrentSurface;
  static const Function eglGetCurrentDisplay = GLMessage_Function_eglGetCurrentDisplay;
  static const Function eglQueryContext = GLMessage_Function_eglQueryContext;
  static const Function eglWaitGL = GLMessage_Function_eglWaitGL;
  static const Function eglWaitNative = GLMessage_Function_eglWaitNative;
  static const Function eglSwapBuffers = GLMessage_Function_eglSwapBuffers;
  static const Function eglCopyBuffers = GLMessage_Function_eglCopyBuffers;
  static const Function eglGetError = GLMessage_Function_eglGetError;
  static const Function eglQueryString = GLMessage_Function_eglQueryString;
  static const Function eglGetProcAddress = GLMessage_Function_eglGetProcAddress;
  static const Function eglSurfaceAttrib = GLMessage_Function_eglSurfaceAttrib;
  static const Function eglBindTexImage = GLMessage_Function_eglBindTexImage;
  static const Function eglReleaseTexImage = GLMessage_Function_eglReleaseTexImage;
  static const Function eglSwapInterval = GLMessage_Function_eglSwapInterval;
  static const Function eglBindAPI = GLMessage_Function_eglBindAPI;
  static const Function eglQueryAPI = GLMessage_Function_eglQueryAPI;
  static const Function eglWaitClient = GLMessage_Function_eglWaitClient;
  static const Function eglReleaseThread = GLMessage_Function_eglReleaseThread;
  static const Function eglCreatePbufferFromClientBuffer = GLMessage_Function_eglCreatePbufferFromClientBuffer;
  static const Function eglLockSurfaceKHR = GLMessage_Function_eglLockSurfaceKHR;
  static const Function eglUnlockSurfaceKHR = GLMessage_Function_eglUnlockSurfaceKHR;
  static const Function eglCreateImageKHR = GLMessage_Function_eglCreateImageKHR;
  static const Function eglDestroyImageKHR = GLMessage_Function_eglDestroyImageKHR;
  static const Function eglCreateSyncKHR = GLMessage_Function_eglCreateSyncKHR;
  static const Function eglDestroySyncKHR = GLMessage_Function_eglDestroySyncKHR;
  static const Function eglClientWaitSyncKHR = GLMessage_Function_eglClientWaitSyncKHR;
  static const Function eglGetSyncAttribKHR = GLMessage_Function_eglGetSyncAttribKHR;
  static const Function eglSetSwapRectangleANDROID = GLMessage_Function_eglSetSwapRectangleANDROID;
  static const Function eglGetRenderBufferANDROID = GLMessage_Function_eglGetRenderBufferANDROID;
  static const Function eglGetSystemTimeFrequencyNV = GLMessage_Function_eglGetSystemTimeFrequencyNV;
  static const Function eglGetSystemTimeNV = GLMessage_Function_eglGetSystemTimeNV;
  static const Function invalid = GLMessage_Function_invalid;
  static const Function glVertexAttribPointerData = GLMessage_Function_glVertexAttribPointerData;
  static inline bool Function_IsValid(int value) {
    return GLMessage_Function_IsValid(value);
  }
  static const Function Function_MIN =
    GLMessage_Function_Function_MIN;
  static const Function Function_MAX =
    GLMessage_Function_Function_MAX;
  static const int Function_ARRAYSIZE =
    GLMessage_Function_Function_ARRAYSIZE;
  
  // accessors -------------------------------------------------------
  
  // required int32 context_id = 1;
  inline bool has_context_id() const;
  inline void clear_context_id();
  static const int kContextIdFieldNumber = 1;
  inline ::google::protobuf::int32 context_id() const;
  inline void set_context_id(::google::protobuf::int32 value);
  
  // required int64 start_time = 2;
  inline bool has_start_time() const;
  inline void clear_start_time();
  static const int kStartTimeFieldNumber = 2;
  inline ::google::protobuf::int64 start_time() const;
  inline void set_start_time(::google::protobuf::int64 value);
  
  // required int32 duration = 3;
  inline bool has_duration() const;
  inline void clear_duration();
  static const int kDurationFieldNumber = 3;
  inline ::google::protobuf::int32 duration() const;
  inline void set_duration(::google::protobuf::int32 value);
  
  // required .android.gltrace.GLMessage.Function function = 4 [default = invalid];
  inline bool has_function() const;
  inline void clear_function();
  static const int kFunctionFieldNumber = 4;
  inline ::android::gltrace::GLMessage_Function function() const;
  inline void set_function(::android::gltrace::GLMessage_Function value);
  
  // repeated .android.gltrace.GLMessage.DataType args = 5;
  inline int args_size() const;
  inline void clear_args();
  static const int kArgsFieldNumber = 5;
  inline const ::android::gltrace::GLMessage_DataType& args(int index) const;
  inline ::android::gltrace::GLMessage_DataType* mutable_args(int index);
  inline ::android::gltrace::GLMessage_DataType* add_args();
  inline const ::google::protobuf::RepeatedPtrField< ::android::gltrace::GLMessage_DataType >&
      args() const;
  inline ::google::protobuf::RepeatedPtrField< ::android::gltrace::GLMessage_DataType >*
      mutable_args();
  
  // optional .android.gltrace.GLMessage.DataType returnValue = 6;
  inline bool has_returnvalue() const;
  inline void clear_returnvalue();
  static const int kReturnValueFieldNumber = 6;
  inline const ::android::gltrace::GLMessage_DataType& returnvalue() const;
  inline ::android::gltrace::GLMessage_DataType* mutable_returnvalue();
  
  // optional .android.gltrace.GLMessage.FrameBuffer fb = 7;
  inline bool has_fb() const;
  inline void clear_fb();
  static const int kFbFieldNumber = 7;
  inline const ::android::gltrace::GLMessage_FrameBuffer& fb() const;
  inline ::android::gltrace::GLMessage_FrameBuffer* mutable_fb();
  
  // optional int32 threadtime = 8;
  inline bool has_threadtime() const;
  inline void clear_threadtime();
  static const int kThreadtimeFieldNumber = 8;
  inline ::google::protobuf::int32 threadtime() const;
  inline void set_threadtime(::google::protobuf::int32 value);
  
  // @@protoc_insertion_point(class_scope:android.gltrace.GLMessage)
 private:
  mutable int _cached_size_;
  
  ::google::protobuf::int32 context_id_;
  ::google::protobuf::int64 start_time_;
  ::google::protobuf::int32 duration_;
  int function_;
  ::google::protobuf::RepeatedPtrField< ::android::gltrace::GLMessage_DataType > args_;
  ::android::gltrace::GLMessage_DataType* returnvalue_;
  ::android::gltrace::GLMessage_FrameBuffer* fb_;
  ::google::protobuf::int32 threadtime_;
  friend void  protobuf_AddDesc_gltrace_2eproto();
  friend void protobuf_AssignDesc_gltrace_2eproto();
  friend void protobuf_ShutdownFile_gltrace_2eproto();
  
  ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
  
  // WHY DOES & HAVE LOWER PRECEDENCE THAN != !?
  inline bool _has_bit(int index) const {
    return (_has_bits_[index / 32] & (1u << (index % 32))) != 0;
  }
  inline void _set_bit(int index) {
    _has_bits_[index / 32] |= (1u << (index % 32));
  }
  inline void _clear_bit(int index) {
    _has_bits_[index / 32] &= ~(1u << (index % 32));
  }
  
  void InitAsDefaultInstance();
  static GLMessage* default_instance_;
};
// ===================================================================


// ===================================================================

// GLMessage_DataType

// required .android.gltrace.GLMessage.DataType.Type type = 1 [default = VOID];
inline bool GLMessage_DataType::has_type() const {
  return _has_bit(0);
}
inline void GLMessage_DataType::clear_type() {
  type_ = 1;
  _clear_bit(0);
}
inline ::android::gltrace::GLMessage_DataType_Type GLMessage_DataType::type() const {
  return static_cast< ::android::gltrace::GLMessage_DataType_Type >(type_);
}
inline void GLMessage_DataType::set_type(::android::gltrace::GLMessage_DataType_Type value) {
  GOOGLE_DCHECK(::android::gltrace::GLMessage_DataType_Type_IsValid(value));
  _set_bit(0);
  type_ = value;
}

// required bool isArray = 2 [default = false];
inline bool GLMessage_DataType::has_isarray() const {
  return _has_bit(1);
}
inline void GLMessage_DataType::clear_isarray() {
  isarray_ = false;
  _clear_bit(1);
}
inline bool GLMessage_DataType::isarray() const {
  return isarray_;
}
inline void GLMessage_DataType::set_isarray(bool value) {
  _set_bit(1);
  isarray_ = value;
}

// repeated int32 intValue = 3;
inline int GLMessage_DataType::intvalue_size() const {
  return intvalue_.size();
}
inline void GLMessage_DataType::clear_intvalue() {
  intvalue_.Clear();
}
inline ::google::protobuf::int32 GLMessage_DataType::intvalue(int index) const {
  return intvalue_.Get(index);
}
inline void GLMessage_DataType::set_intvalue(int index, ::google::protobuf::int32 value) {
  intvalue_.Set(index, value);
}
inline void GLMessage_DataType::add_intvalue(::google::protobuf::int32 value) {
  intvalue_.Add(value);
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
GLMessage_DataType::intvalue() const {
  return intvalue_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
GLMessage_DataType::mutable_intvalue() {
  return &intvalue_;
}

// repeated float floatValue = 4;
inline int GLMessage_DataType::floatvalue_size() const {
  return floatvalue_.size();
}
inline void GLMessage_DataType::clear_floatvalue() {
  floatvalue_.Clear();
}
inline float GLMessage_DataType::floatvalue(int index) const {
  return floatvalue_.Get(index);
}
inline void GLMessage_DataType::set_floatvalue(int index, float value) {
  floatvalue_.Set(index, value);
}
inline void GLMessage_DataType::add_floatvalue(float value) {
  floatvalue_.Add(value);
}
inline const ::google::protobuf::RepeatedField< float >&
GLMessage_DataType::floatvalue() const {
  return floatvalue_;
}
inline ::google::protobuf::RepeatedField< float >*
GLMessage_DataType::mutable_floatvalue() {
  return &floatvalue_;
}

// repeated bytes charValue = 5;
inline int GLMessage_DataType::charvalue_size() const {
  return charvalue_.size();
}
inline void GLMessage_DataType::clear_charvalue() {
  charvalue_.Clear();
}
inline const ::std::string& GLMessage_DataType::charvalue(int index) const {
  return charvalue_.Get(index);
}
inline ::std::string* GLMessage_DataType::mutable_charvalue(int index) {
  return charvalue_.Mutable(index);
}
inline void GLMessage_DataType::set_charvalue(int index, const ::std::string& value) {
  charvalue_.Mutable(index)->assign(value);
}
inline void GLMessage_DataType::set_charvalue(int index, const char* value) {
  charvalue_.Mutable(index)->assign(value);
}
inline void GLMessage_DataType::set_charvalue(int index, const void* value, size_t size) {
  charvalue_.Mutable(index)->assign(
    reinterpret_cast<const char*>(value), size);
}
inline ::std::string* GLMessage_DataType::add_charvalue() {
  return charvalue_.Add();
}
inline void GLMessage_DataType::add_charvalue(const ::std::string& value) {
  charvalue_.Add()->assign(value);
}
inline void GLMessage_DataType::add_charvalue(const char* value) {
  charvalue_.Add()->assign(value);
}
inline void GLMessage_DataType::add_charvalue(const void* value, size_t size) {
  charvalue_.Add()->assign(reinterpret_cast<const char*>(value), size);
}
inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
GLMessage_DataType::charvalue() const {
  return charvalue_;
}
inline ::google::protobuf::RepeatedPtrField< ::std::string>*
GLMessage_DataType::mutable_charvalue() {
  return &charvalue_;
}

// repeated bytes rawBytes = 6;
inline int GLMessage_DataType::rawbytes_size() const {
  return rawbytes_.size();
}
inline void GLMessage_DataType::clear_rawbytes() {
  rawbytes_.Clear();
}
inline const ::std::string& GLMessage_DataType::rawbytes(int index) const {
  return rawbytes_.Get(index);
}
inline ::std::string* GLMessage_DataType::mutable_rawbytes(int index) {
  return rawbytes_.Mutable(index);
}
inline void GLMessage_DataType::set_rawbytes(int index, const ::std::string& value) {
  rawbytes_.Mutable(index)->assign(value);
}
inline void GLMessage_DataType::set_rawbytes(int index, const char* value) {
  rawbytes_.Mutable(index)->assign(value);
}
inline void GLMessage_DataType::set_rawbytes(int index, const void* value, size_t size) {
  rawbytes_.Mutable(index)->assign(
    reinterpret_cast<const char*>(value), size);
}
inline ::std::string* GLMessage_DataType::add_rawbytes() {
  return rawbytes_.Add();
}
inline void GLMessage_DataType::add_rawbytes(const ::std::string& value) {
  rawbytes_.Add()->assign(value);
}
inline void GLMessage_DataType::add_rawbytes(const char* value) {
  rawbytes_.Add()->assign(value);
}
inline void GLMessage_DataType::add_rawbytes(const void* value, size_t size) {
  rawbytes_.Add()->assign(reinterpret_cast<const char*>(value), size);
}
inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
GLMessage_DataType::rawbytes() const {
  return rawbytes_;
}
inline ::google::protobuf::RepeatedPtrField< ::std::string>*
GLMessage_DataType::mutable_rawbytes() {
  return &rawbytes_;
}

// repeated bool boolValue = 7;
inline int GLMessage_DataType::boolvalue_size() const {
  return boolvalue_.size();
}
inline void GLMessage_DataType::clear_boolvalue() {
  boolvalue_.Clear();
}
inline bool GLMessage_DataType::boolvalue(int index) const {
  return boolvalue_.Get(index);
}
inline void GLMessage_DataType::set_boolvalue(int index, bool value) {
  boolvalue_.Set(index, value);
}
inline void GLMessage_DataType::add_boolvalue(bool value) {
  boolvalue_.Add(value);
}
inline const ::google::protobuf::RepeatedField< bool >&
GLMessage_DataType::boolvalue() const {
  return boolvalue_;
}
inline ::google::protobuf::RepeatedField< bool >*
GLMessage_DataType::mutable_boolvalue() {
  return &boolvalue_;
}

// repeated int64 int64Value = 8;
inline int GLMessage_DataType::int64value_size() const {
  return int64value_.size();
}
inline void GLMessage_DataType::clear_int64value() {
  int64value_.Clear();
}
inline ::google::protobuf::int64 GLMessage_DataType::int64value(int index) const {
  return int64value_.Get(index);
}
inline void GLMessage_DataType::set_int64value(int index, ::google::protobuf::int64 value) {
  int64value_.Set(index, value);
}
inline void GLMessage_DataType::add_int64value(::google::protobuf::int64 value) {
  int64value_.Add(value);
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
GLMessage_DataType::int64value() const {
  return int64value_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
GLMessage_DataType::mutable_int64value() {
  return &int64value_;
}

// -------------------------------------------------------------------

// GLMessage_FrameBuffer

// required int32 width = 1;
inline bool GLMessage_FrameBuffer::has_width() const {
  return _has_bit(0);
}
inline void GLMessage_FrameBuffer::clear_width() {
  width_ = 0;
  _clear_bit(0);
}
inline ::google::protobuf::int32 GLMessage_FrameBuffer::width() const {
  return width_;
}
inline void GLMessage_FrameBuffer::set_width(::google::protobuf::int32 value) {
  _set_bit(0);
  width_ = value;
}

// required int32 height = 2;
inline bool GLMessage_FrameBuffer::has_height() const {
  return _has_bit(1);
}
inline void GLMessage_FrameBuffer::clear_height() {
  height_ = 0;
  _clear_bit(1);
}
inline ::google::protobuf::int32 GLMessage_FrameBuffer::height() const {
  return height_;
}
inline void GLMessage_FrameBuffer::set_height(::google::protobuf::int32 value) {
  _set_bit(1);
  height_ = value;
}

// repeated bytes contents = 3;
inline int GLMessage_FrameBuffer::contents_size() const {
  return contents_.size();
}
inline void GLMessage_FrameBuffer::clear_contents() {
  contents_.Clear();
}
inline const ::std::string& GLMessage_FrameBuffer::contents(int index) const {
  return contents_.Get(index);
}
inline ::std::string* GLMessage_FrameBuffer::mutable_contents(int index) {
  return contents_.Mutable(index);
}
inline void GLMessage_FrameBuffer::set_contents(int index, const ::std::string& value) {
  contents_.Mutable(index)->assign(value);
}
inline void GLMessage_FrameBuffer::set_contents(int index, const char* value) {
  contents_.Mutable(index)->assign(value);
}
inline void GLMessage_FrameBuffer::set_contents(int index, const void* value, size_t size) {
  contents_.Mutable(index)->assign(
    reinterpret_cast<const char*>(value), size);
}
inline ::std::string* GLMessage_FrameBuffer::add_contents() {
  return contents_.Add();
}
inline void GLMessage_FrameBuffer::add_contents(const ::std::string& value) {
  contents_.Add()->assign(value);
}
inline void GLMessage_FrameBuffer::add_contents(const char* value) {
  contents_.Add()->assign(value);
}
inline void GLMessage_FrameBuffer::add_contents(const void* value, size_t size) {
  contents_.Add()->assign(reinterpret_cast<const char*>(value), size);
}
inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
GLMessage_FrameBuffer::contents() const {
  return contents_;
}
inline ::google::protobuf::RepeatedPtrField< ::std::string>*
GLMessage_FrameBuffer::mutable_contents() {
  return &contents_;
}

// -------------------------------------------------------------------

// GLMessage

// required int32 context_id = 1;
inline bool GLMessage::has_context_id() const {
  return _has_bit(0);
}
inline void GLMessage::clear_context_id() {
  context_id_ = 0;
  _clear_bit(0);
}
inline ::google::protobuf::int32 GLMessage::context_id() const {
  return context_id_;
}
inline void GLMessage::set_context_id(::google::protobuf::int32 value) {
  _set_bit(0);
  context_id_ = value;
}

// required int64 start_time = 2;
inline bool GLMessage::has_start_time() const {
  return _has_bit(1);
}
inline void GLMessage::clear_start_time() {
  start_time_ = GOOGLE_LONGLONG(0);
  _clear_bit(1);
}
inline ::google::protobuf::int64 GLMessage::start_time() const {
  return start_time_;
}
inline void GLMessage::set_start_time(::google::protobuf::int64 value) {
  _set_bit(1);
  start_time_ = value;
}

// required int32 duration = 3;
inline bool GLMessage::has_duration() const {
  return _has_bit(2);
}
inline void GLMessage::clear_duration() {
  duration_ = 0;
  _clear_bit(2);
}
inline ::google::protobuf::int32 GLMessage::duration() const {
  return duration_;
}
inline void GLMessage::set_duration(::google::protobuf::int32 value) {
  _set_bit(2);
  duration_ = value;
}

// required .android.gltrace.GLMessage.Function function = 4 [default = invalid];
inline bool GLMessage::has_function() const {
  return _has_bit(3);
}
inline void GLMessage::clear_function() {
  function_ = 3000;
  _clear_bit(3);
}
inline ::android::gltrace::GLMessage_Function GLMessage::function() const {
  return static_cast< ::android::gltrace::GLMessage_Function >(function_);
}
inline void GLMessage::set_function(::android::gltrace::GLMessage_Function value) {
  GOOGLE_DCHECK(::android::gltrace::GLMessage_Function_IsValid(value));
  _set_bit(3);
  function_ = value;
}

// repeated .android.gltrace.GLMessage.DataType args = 5;
inline int GLMessage::args_size() const {
  return args_.size();
}
inline void GLMessage::clear_args() {
  args_.Clear();
}
inline const ::android::gltrace::GLMessage_DataType& GLMessage::args(int index) const {
  return args_.Get(index);
}
inline ::android::gltrace::GLMessage_DataType* GLMessage::mutable_args(int index) {
  return args_.Mutable(index);
}
inline ::android::gltrace::GLMessage_DataType* GLMessage::add_args() {
  return args_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::android::gltrace::GLMessage_DataType >&
GLMessage::args() const {
  return args_;
}
inline ::google::protobuf::RepeatedPtrField< ::android::gltrace::GLMessage_DataType >*
GLMessage::mutable_args() {
  return &args_;
}

// optional .android.gltrace.GLMessage.DataType returnValue = 6;
inline bool GLMessage::has_returnvalue() const {
  return _has_bit(5);
}
inline void GLMessage::clear_returnvalue() {
  if (returnvalue_ != NULL) returnvalue_->::android::gltrace::GLMessage_DataType::Clear();
  _clear_bit(5);
}
inline const ::android::gltrace::GLMessage_DataType& GLMessage::returnvalue() const {
  return returnvalue_ != NULL ? *returnvalue_ : *default_instance_->returnvalue_;
}
inline ::android::gltrace::GLMessage_DataType* GLMessage::mutable_returnvalue() {
  _set_bit(5);
  if (returnvalue_ == NULL) returnvalue_ = new ::android::gltrace::GLMessage_DataType;
  return returnvalue_;
}

// optional .android.gltrace.GLMessage.FrameBuffer fb = 7;
inline bool GLMessage::has_fb() const {
  return _has_bit(6);
}
inline void GLMessage::clear_fb() {
  if (fb_ != NULL) fb_->::android::gltrace::GLMessage_FrameBuffer::Clear();
  _clear_bit(6);
}
inline const ::android::gltrace::GLMessage_FrameBuffer& GLMessage::fb() const {
  return fb_ != NULL ? *fb_ : *default_instance_->fb_;
}
inline ::android::gltrace::GLMessage_FrameBuffer* GLMessage::mutable_fb() {
  _set_bit(6);
  if (fb_ == NULL) fb_ = new ::android::gltrace::GLMessage_FrameBuffer;
  return fb_;
}

// optional int32 threadtime = 8;
inline bool GLMessage::has_threadtime() const {
  return _has_bit(7);
}
inline void GLMessage::clear_threadtime() {
  threadtime_ = 0;
  _clear_bit(7);
}
inline ::google::protobuf::int32 GLMessage::threadtime() const {
  return threadtime_;
}
inline void GLMessage::set_threadtime(::google::protobuf::int32 value) {
  _set_bit(7);
  threadtime_ = value;
}


// @@protoc_insertion_point(namespace_scope)

}  // namespace gltrace
}  // namespace android

// @@protoc_insertion_point(global_scope)

#endif  // PROTOBUF_gltrace_2eproto__INCLUDED