summaryrefslogtreecommitdiff
path: root/lib/wx/doc/src/gl.xml
blob: 865ce91bb9a65a7ca6b72ed1df5fc199090379ae (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
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<!-- THIS FILE IS GENERATED DO NOT EDIT -->


<erlref>
<header>
  <copyright>
    <year>2020</year>
    <holder>Ericsson AB. All Rights Reserved.</holder></copyright>
  <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

  </legalnotice>
  <title>gl</title>
</header>
<module>gl</module>
<modulesummary>Erlang wrapper functions for OpenGL</modulesummary>
<description><p>Standard OpenGL API</p><p>This documents the functions as a brief version of the complete <url href="https://www.khronos.org/registry/OpenGL-Refpages/">OpenGL reference pages.</url></p></description>
<datatypes>
    <datatype><name name="clamp"/></datatype>
    <datatype><name name="offset"/></datatype>
    <datatype><name name="i"/></datatype>
    <datatype><name name="f"/></datatype>
    <datatype><name name="enum"/></datatype>
    <datatype><name name="matrix"/></datatype>
    <datatype><name name="m12"/></datatype>
    <datatype><name name="m16"/></datatype>
    <datatype><name name="mem"/></datatype></datatypes>
<funcs>
  <func>
    <name name="accum" arity="2" clause_i="1" since=""/>
    <fsummary>operate on the accumulation buffer</fsummary>
    <desc>
    <p> The accumulation buffer is an extended-range color buffer. Images are not rendered into it. Rather, images rendered into one of the color buffers are added to the contents of the accumulation buffer after rendering. Effects such as antialiasing (of points, lines, and polygons), motion blur, and depth of field can be created by accumulating images generated with different transformation matrices. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glAccum.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="activeShaderProgram" arity="2" clause_i="1" since=""/>
    <fsummary>set the active program object for a program pipeline object</fsummary>
    <desc>
    <p><seemfa marker="gl#activeShaderProgram/2"><c>gl:activeShaderProgram/2</c></seemfa> sets the linked program named by <c>Program</c> to be the active program for the program pipeline object <c>Pipeline</c>. The active program in the active program pipeline object is the target of calls to <seemfa marker="gl#uniform1f/2"><c>gl:uniform()</c></seemfa> when no program has been made current through a call to <seemfa marker="gl#useProgram/1"><c>gl:useProgram/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glActiveShaderProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="activeTexture" arity="1" clause_i="1" since=""/>
    <fsummary>select active texture unit</fsummary>
    <desc>
    <p><seemfa marker="gl#activeTexture/1"><c>gl:activeTexture/1</c></seemfa> selects which texture unit subsequent texture state calls will affect. The number of texture units an implementation supports is implementation dependent, but must be at least 80. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glActiveTexture.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="alphaFunc" arity="2" clause_i="1" since=""/>
    <fsummary>specify the alpha test function</fsummary>
    <desc>
    <p> The alpha test discards fragments depending on the outcome of a comparison between an incoming fragment's alpha value and a constant reference value. <seemfa marker="gl#alphaFunc/2"><c>gl:alphaFunc/2</c></seemfa> specifies the reference value and the comparison function. The comparison is performed only if alpha testing is enabled. By default, it is not enabled. (See <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> of <c>?GL_ALPHA_TEST</c>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glAlphaFunc.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="areTexturesResident" arity="1" clause_i="1" since=""/>
    <fsummary>determine if textures are loaded in texture memory</fsummary>
    <desc>
    <p> GL establishes a ``working set'' of textures that are resident in texture memory. These textures can be bound to a texture target much more efficiently than textures that are not resident. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glAreTexturesResident.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="arrayElement" arity="1" clause_i="1" since=""/>
    <fsummary>render a vertex using the specified vertex array element</fsummary>
    <desc>
    <p><seemfa marker="gl#arrayElement/1"><c>gl:arrayElement/1</c></seemfa> commands are used within <seemfa marker="gl#'begin'/1"><c>gl:'begin'/1</c></seemfa>/<seemfa marker="gl#'begin'/1"><c>gl:'end'/0</c></seemfa> pairs to specify vertex and attribute data for point, line, and polygon primitives. If <c>?GL_VERTEX_ARRAY</c> is enabled when <seemfa marker="gl#arrayElement/1"><c>gl:arrayElement/1</c></seemfa> is called, a single vertex is drawn, using vertex and attribute data taken from location <c>I</c> of the enabled arrays. If <c>?GL_VERTEX_ARRAY</c> is not enabled, no drawing occurs but the attributes corresponding to the enabled arrays are modified. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glArrayElement.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="attachShader" arity="2" clause_i="1" since=""/>
    <fsummary>Attaches a shader object to a program object</fsummary>
    <desc>
    <p>In order to create a complete shader program, there must be a way to specify the list of things that will be linked together. Program objects provide this mechanism. Shaders that are to be linked together in a program object must first be attached to that program object. <seemfa marker="gl#attachShader/2"><c>gl:attachShader/2</c></seemfa> attaches the shader object specified by <c>Shader</c> to the program object specified by <c>Program</c>. This indicates that <c>Shader</c> will be included in link operations that will be performed on <c>Program</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glAttachShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="'begin'" arity="1" clause_i="1" since=""/>
    <name name="'end'" arity="0" clause_i="1" since=""/>
    <fsummary>delimit the vertices of a primitive or a group of like primitives</fsummary>
    <desc>
    <p><seemfa marker="gl#'begin'/1"><c>gl:'begin'/1</c></seemfa> and <seemfa marker="gl#'begin'/1"><c>gl:'end'/0</c></seemfa> delimit the vertices that define a primitive or a group of like primitives. <seemfa marker="gl#'begin'/1"><c>gl:'begin'/1</c></seemfa> accepts a single argument that specifies in which of ten ways the vertices are interpreted. Taking   n as an integer count starting at one, and   N as the total number of vertices specified, the interpretations are as follows: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glBegin.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="beginConditionalRender" arity="2" clause_i="1" since=""/>
    <name name="endConditionalRender" arity="0" clause_i="1" since=""/>
    <fsummary>start conditional rendering</fsummary>
    <desc>
    <p> Conditional rendering is started using <seemfa marker="gl#beginConditionalRender/2"><c>gl:beginConditionalRender/2</c></seemfa> and ended using <seemfa marker="gl#beginConditionalRender/2"><c>gl:endConditionalRender/0</c></seemfa>. During conditional rendering, all vertex array commands, as well as <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> and <seemfa marker="gl#clearBufferiv/3"><c>gl:clearBuffer()</c></seemfa> have no effect if the (<c>?GL_SAMPLES_PASSED</c>) result of the query object <c>Id</c> is zero, or if the (<c>?GL_ANY_SAMPLES_PASSED</c>) result is <c>?GL_FALSE</c>. The results of commands setting the current vertex state, such as <seemfa marker="gl#vertexAttrib1d/2"><c>gl:vertexAttrib()</c></seemfa> are undefined. If the (<c>?GL_SAMPLES_PASSED</c>) result is non-zero or if the (<c>?GL_ANY_SAMPLES_PASSED</c>) result is <c>?GL_TRUE</c>, such commands are not discarded. The <c>Id</c> parameter to <seemfa marker="gl#beginConditionalRender/2"><c>gl:beginConditionalRender/2</c></seemfa> must be the name of a query object previously returned from a call to <seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa>. <c>Mode</c> specifies how the results of the query object are to be interpreted. If <c>Mode</c> is <c>?GL_QUERY_WAIT</c>, the GL waits for the results of the query to be available and then uses the results to determine if subsequent rendering commands are discarded. If <c>Mode</c> is <c>?GL_QUERY_NO_WAIT</c>, the GL may choose to unconditionally execute the subsequent rendering commands without waiting for the query to complete. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBeginConditionalRender.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="beginQuery" arity="2" clause_i="1" since=""/>
    <name name="endQuery" arity="1" clause_i="1" since=""/>
    <fsummary>delimit the boundaries of a query object</fsummary>
    <desc>
    <p><seemfa marker="gl#beginQuery/2"><c>gl:beginQuery/2</c></seemfa> and <seemfa marker="gl#beginQuery/2"><c>gl:endQuery/1</c></seemfa> delimit the boundaries of a query object. <c>Query</c> must be a name previously returned from a call to <seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa>. If a query object with name <c>Id</c> does not yet exist it is created with the type determined by <c>Target</c>. <c>Target</c> must be one of <c>?GL_SAMPLES_PASSED</c>, <c>?GL_ANY_SAMPLES_PASSED</c>, <c>?GL_PRIMITIVES_GENERATED</c>, <c>?GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</c>, or <c>?GL_TIME_ELAPSED</c>. The behavior of the query object depends on its type and is as follows. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBeginQuery.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="beginQueryIndexed" arity="3" clause_i="1" since=""/>
    <name name="endQueryIndexed" arity="2" clause_i="1" since=""/>
    <fsummary>delimit the boundaries of a query object on an indexed target</fsummary>
    <desc>
    <p><seemfa marker="gl#beginQueryIndexed/3"><c>gl:beginQueryIndexed/3</c></seemfa> and <seemfa marker="gl#beginQueryIndexed/3"><c>gl:endQueryIndexed/2</c></seemfa> delimit the boundaries of a query object. <c>Query</c> must be a name previously returned from a call to <seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa>. If a query object with name <c>Id</c> does not yet exist it is created with the type determined by <c>Target</c>. <c>Target</c> must be one of <c>?GL_SAMPLES_PASSED</c>, <c>?GL_ANY_SAMPLES_PASSED</c>, <c>?GL_PRIMITIVES_GENERATED</c>, <c>?GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</c>, or <c>?GL_TIME_ELAPSED</c>. The behavior of the query object depends on its type and is as follows. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBeginQueryIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="beginTransformFeedback" arity="1" clause_i="1" since=""/>
    <name name="endTransformFeedback" arity="0" clause_i="1" since=""/>
    <fsummary>start transform feedback operation</fsummary>
    <desc>
    <p> Transform feedback mode captures the values of varying variables written by the vertex shader (or, if active, the geometry shader). Transform feedback is said to be active after a call to <seemfa marker="gl#beginTransformFeedback/1"><c>gl:beginTransformFeedback/1</c></seemfa> until a subsequent call to <seemfa marker="gl#beginTransformFeedback/1"><c>gl:endTransformFeedback/0</c></seemfa>. Transform feedback commands must be paired. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBeginTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindAttribLocation" arity="3" clause_i="1" since=""/>
    <fsummary>Associates a generic vertex attribute index with a named attribute variable</fsummary>
    <desc>
    <p><seemfa marker="gl#bindAttribLocation/3"><c>gl:bindAttribLocation/3</c></seemfa> is used to associate a user-defined attribute variable in the program object specified by <c>Program</c> with a generic vertex attribute index. The name of the user-defined attribute variable is passed as a null terminated string in <c>Name</c>. The generic vertex attribute index to be bound to this variable is specified by <c>Index</c>. When <c>Program</c> is made part of current state, values provided via the generic vertex attribute <c>Index</c> will modify the value of the user-defined attribute variable specified by <c>Name</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindAttribLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindBuffer" arity="2" clause_i="1" since=""/>
    <fsummary>bind a named buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#bindBuffer/2"><c>gl:bindBuffer/2</c></seemfa> binds a buffer object to the specified buffer binding point. Calling <seemfa marker="gl#bindBuffer/2"><c>gl:bindBuffer/2</c></seemfa> with <c>Target</c> set to one of the accepted symbolic constants and <c>Buffer</c> set to the name of a buffer object binds that buffer object name to the target. If no buffer object with name <c>Buffer</c> exists, one is created with that name. When a buffer object is bound to a target, the previous binding for that target is automatically broken. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindBufferBase" arity="3" clause_i="1" since=""/>
    <fsummary>bind a buffer object to an indexed buffer target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindBufferBase/3"><c>gl:bindBufferBase/3</c></seemfa> binds the buffer object <c>Buffer</c> to the binding point at index <c>Index</c> of the array of targets specified by <c>Target</c>. Each <c>Target</c> represents an indexed array of buffer binding points, as well as a single general binding point that can be used by other buffer manipulation functions such as <seemfa marker="gl#bindBuffer/2"><c>gl:bindBuffer/2</c></seemfa> or <c>glMapBuffer</c>. In addition to binding <c>Buffer</c> to the indexed buffer binding target, <seemfa marker="gl#bindBufferBase/3"><c>gl:bindBufferBase/3</c></seemfa> also binds <c>Buffer</c> to the generic buffer binding point specified by <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindBufferBase.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindBufferRange" arity="5" clause_i="1" since=""/>
    <fsummary>bind a range within a buffer object to an indexed buffer target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindBufferRange/5"><c>gl:bindBufferRange/5</c></seemfa> binds a range the buffer object <c>Buffer</c> represented by <c>Offset</c> and <c>Size</c> to the binding point at index <c>Index</c> of the array of targets specified by <c>Target</c>. Each <c>Target</c> represents an indexed array of buffer binding points, as well as a single general binding point that can be used by other buffer manipulation functions such as <seemfa marker="gl#bindBuffer/2"><c>gl:bindBuffer/2</c></seemfa> or <c>glMapBuffer</c>. In addition to binding a range of <c>Buffer</c> to the indexed buffer binding target, <seemfa marker="gl#bindBufferRange/5"><c>gl:bindBufferRange/5</c></seemfa> also binds the range to the generic buffer binding point specified by <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindBufferRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindBuffersBase" arity="3" clause_i="1" since=""/>
    <fsummary>bind one or more buffer objects to a sequence of indexed buffer targets</fsummary>
    <desc>
    <p><seemfa marker="gl#bindBuffersBase/3"><c>gl:bindBuffersBase/3</c></seemfa> binds a set of <c>Count</c> buffer objects whose names are given in the array <c>Buffers</c> to the <c>Count</c> consecutive binding points starting from index <c>First</c> of the array of targets specified by <c>Target</c>. If <c>Buffers</c> is <c>?NULL</c> then <seemfa marker="gl#bindBuffersBase/3"><c>gl:bindBuffersBase/3</c></seemfa> unbinds any buffers that are currently bound to the referenced binding points. Assuming no errors are generated, it is equivalent to the following pseudo-code, which calls <seemfa marker="gl#bindBufferBase/3"><c>gl:bindBufferBase/3</c></seemfa>, with the exception that the non-indexed <c>Target</c> is not changed by <seemfa marker="gl#bindBuffersBase/3"><c>gl:bindBuffersBase/3</c></seemfa>: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindBuffersBase.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindBuffersRange" arity="5" clause_i="1" since=""/>
    <fsummary>bind ranges of one or more buffer objects to a sequence of indexed buffer targets</fsummary>
    <desc>
    <p><seemfa marker="gl#bindBuffersRange/5"><c>gl:bindBuffersRange/5</c></seemfa> binds a set of <c>Count</c> ranges from buffer objects whose names are given in the array <c>Buffers</c> to the <c>Count</c> consecutive binding points starting from index <c>First</c> of the array of targets specified by <c>Target</c>. <c>Offsets</c> specifies the address of an array containing <c>Count</c> starting offsets within the buffers, and <c>Sizes</c> specifies the address of an array of <c>Count</c> sizes of the ranges. If <c>Buffers</c> is <c>?NULL</c> then <c>Offsets</c> and <c>Sizes</c> are ignored and <seemfa marker="gl#bindBuffersRange/5"><c>gl:bindBuffersRange/5</c></seemfa> unbinds any buffers that are currently bound to the referenced binding points. Assuming no errors are generated, it is equivalent to the following pseudo-code, which calls <seemfa marker="gl#bindBufferRange/5"><c>gl:bindBufferRange/5</c></seemfa>, with the exception that the non-indexed <c>Target</c> is not changed by <seemfa marker="gl#bindBuffersRange/5"><c>gl:bindBuffersRange/5</c></seemfa>:</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindBuffersRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindFragDataLocation" arity="3" clause_i="1" since=""/>
    <fsummary>bind a user-defined varying out variable to a fragment shader color number</fsummary>
    <desc>
    <p><seemfa marker="gl#bindFragDataLocation/3"><c>gl:bindFragDataLocation/3</c></seemfa> explicitly specifies the binding of the user-defined varying out variable <c>Name</c> to fragment shader color number <c>ColorNumber</c> for program <c>Program</c>. If <c>Name</c> was bound previously, its assigned binding is replaced with <c>ColorNumber</c>. <c>Name</c> must be a null-terminated string. <c>ColorNumber</c> must be less than <c>?GL_MAX_DRAW_BUFFERS</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindFragDataLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindFragDataLocationIndexed" arity="4" clause_i="1" since=""/>
    <fsummary>bind a user-defined varying out variable to a fragment shader color number and index</fsummary>
    <desc>
    <p><seemfa marker="gl#bindFragDataLocationIndexed/4"><c>gl:bindFragDataLocationIndexed/4</c></seemfa> specifies that the varying out variable <c>Name</c> in <c>Program</c> should be bound to fragment color <c>ColorNumber</c> when the program is next linked. <c>Index</c> may be zero or one to specify that the color be used as either the first or second color input to the blend equation, respectively. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindFragDataLocationIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindFramebuffer" arity="2" clause_i="1" since=""/>
    <fsummary>bind a framebuffer to a framebuffer target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindFramebuffer/2"><c>gl:bindFramebuffer/2</c></seemfa> binds the framebuffer object with name <c>Framebuffer</c> to the framebuffer target specified by <c>Target</c>. <c>Target</c> must be either <c>?GL_DRAW_FRAMEBUFFER</c>, <c>?GL_READ_FRAMEBUFFER</c> or <c>?GL_FRAMEBUFFER</c>. If a framebuffer object is bound to <c>?GL_DRAW_FRAMEBUFFER</c> or <c>?GL_READ_FRAMEBUFFER</c>, it becomes the target for rendering or readback operations, respectively, until it is deleted or another framebuffer is bound to the corresponding bind point. Calling <seemfa marker="gl#bindFramebuffer/2"><c>gl:bindFramebuffer/2</c></seemfa> with <c>Target</c> set to <c>?GL_FRAMEBUFFER</c> binds <c>Framebuffer</c> to both the read and draw framebuffer targets. <c>Framebuffer</c> is the name of a framebuffer object previously returned from a call to <seemfa marker="gl#genFramebuffers/1"><c>gl:genFramebuffers/1</c></seemfa>, or zero to break the existing binding of a framebuffer object to <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindFramebuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindImageTexture" arity="7" clause_i="1" since=""/>
    <fsummary>bind a level of a texture to an image unit</fsummary>
    <desc>
    <p><seemfa marker="gl#bindImageTexture/7"><c>gl:bindImageTexture/7</c></seemfa> binds a single level of a texture to an image unit for the purpose of reading and writing it from shaders. <c>Unit</c> specifies the zero-based index of the image unit to which to bind the texture level. <c>Texture</c> specifies the name of an existing texture object to bind to the image unit. If <c>Texture</c> is zero, then any existing binding to the image unit is broken. <c>Level</c> specifies the level of the texture to bind to the image unit. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindImageTexture.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindImageTextures" arity="2" clause_i="1" since=""/>
    <fsummary>bind one or more named texture images to a sequence of consecutive image units</fsummary>
    <desc>
    <p><seemfa marker="gl#bindImageTextures/2"><c>gl:bindImageTextures/2</c></seemfa> binds images from an array of existing texture objects to a specified number of consecutive image units. <c>Count</c> specifies the number of texture objects whose names are stored in the array <c>Textures</c>. That number of texture names are read from the array and bound to the <c>Count</c> consecutive texture units starting from <c>First</c>.  If the name zero appears in the <c>Textures</c> array, any existing binding to the image unit is reset. Any non-zero entry in <c>Textures</c> must be the name of an existing texture object. When a non-zero entry in <c>Textures</c> is present, the image at level zero is bound, the binding is considered layered, with the first layer set to zero, and the image is bound for read-write access. The image unit format parameter is taken from the internal format of the image at level zero of the texture object. For cube map textures, the internal format of the positive X image of level zero is used.   If <c>Textures</c> is <c>?NULL</c> then it is as if an appropriately sized array containing only zeros had been specified. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindImageTextures.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindProgramPipeline" arity="1" clause_i="1" since=""/>
    <fsummary>bind a program pipeline to the current context</fsummary>
    <desc>
    <p><seemfa marker="gl#bindProgramPipeline/1"><c>gl:bindProgramPipeline/1</c></seemfa> binds a program pipeline object to the current context. <c>Pipeline</c> must be a name previously returned from a call to <seemfa marker="gl#genProgramPipelines/1"><c>gl:genProgramPipelines/1</c></seemfa>. If no program pipeline exists with name <c>Pipeline</c> then a new pipeline object is created with that name and initialized to the default state vector. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindProgramPipeline.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindRenderbuffer" arity="2" clause_i="1" since=""/>
    <fsummary>bind a renderbuffer to a renderbuffer target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindRenderbuffer/2"><c>gl:bindRenderbuffer/2</c></seemfa> binds the renderbuffer object with name <c>Renderbuffer</c> to the renderbuffer target specified by <c>Target</c>. <c>Target</c> must be <c>?GL_RENDERBUFFER</c>. <c>Renderbuffer</c> is the name of a renderbuffer object previously returned from a call to <seemfa marker="gl#genRenderbuffers/1"><c>gl:genRenderbuffers/1</c></seemfa>, or zero to break the existing binding of a renderbuffer object to <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindRenderbuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindSampler" arity="2" clause_i="1" since=""/>
    <fsummary>bind a named sampler to a texturing target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindSampler/2"><c>gl:bindSampler/2</c></seemfa> binds <c>Sampler</c> to the texture unit at index <c>Unit</c>. <c>Sampler</c> must be zero or the name of a sampler object previously returned from a call to <seemfa marker="gl#genSamplers/1"><c>gl:genSamplers/1</c></seemfa>. <c>Unit</c> must be less than the value of <c>?GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindSampler.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindSamplers" arity="2" clause_i="1" since=""/>
    <fsummary>bind one or more named sampler objects to a sequence of consecutive sampler units</fsummary>
    <desc>
    <p><seemfa marker="gl#bindSamplers/2"><c>gl:bindSamplers/2</c></seemfa> binds samplers from an array of existing sampler objects to a specified number of consecutive sampler units. <c>Count</c> specifies the number of sampler objects whose names are stored in the array <c>Samplers</c>. That number of sampler names is read from the array and bound to the <c>Count</c> consecutive sampler units starting from <c>First</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindSamplers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindTexture" arity="2" clause_i="1" since=""/>
    <fsummary>bind a named texture to a texturing target</fsummary>
    <desc>
    <p><seemfa marker="gl#bindTexture/2"><c>gl:bindTexture/2</c></seemfa> lets you create or use a named texture. Calling <seemfa marker="gl#bindTexture/2"><c>gl:bindTexture/2</c></seemfa> with <c>Target</c> set to <c>?GL_TEXTURE_1D</c>, <c>?GL_TEXTURE_2D</c>, <c>?GL_TEXTURE_3D</c>, <c>?GL_TEXTURE_1D_ARRAY</c>, <c>?GL_TEXTURE_2D_ARRAY</c>, <c>?GL_TEXTURE_RECTANGLE</c>, <c>?GL_TEXTURE_CUBE_MAP</c>, <c>?GL_TEXTURE_CUBE_MAP_ARRAY</c>, <c>?GL_TEXTURE_BUFFER</c>, <c>?GL_TEXTURE_2D_MULTISAMPLE</c> or <c>?GL_TEXTURE_2D_MULTISAMPLE_ARRAY</c> and <c>Texture</c> set to the name of the new texture binds the texture name to the target. When a texture is bound to a target, the previous binding for that target is automatically broken. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTexture.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindTextureUnit" arity="2" clause_i="1" since=""/>
    <fsummary>bind an existing texture object to the specified texture unit </fsummary>
    <desc>
    <p><seemfa marker="gl#bindTextureUnit/2"><c>gl:bindTextureUnit/2</c></seemfa> binds an existing texture object to the texture unit numbered <c>Unit</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTextureUnit.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindTextures" arity="2" clause_i="1" since=""/>
    <fsummary>bind one or more named textures to a sequence of consecutive texture units</fsummary>
    <desc>
    <p><seemfa marker="gl#bindTextures/2"><c>gl:bindTextures/2</c></seemfa> binds an array of existing texture objects to a specified number of consecutive texture units. <c>Count</c> specifies the number of texture objects whose names are stored in the array <c>Textures</c>. That number of texture names are read from the array and bound to the <c>Count</c> consecutive texture units starting from <c>First</c>. The target, or type of texture is deduced from the texture object and each texture is bound to the corresponding target of the texture unit. If the name zero appears in the <c>Textures</c> array, any existing binding to any target of the texture unit is reset and the default texture for that target is bound in its place. Any non-zero entry in <c>Textures</c> must be the name of an existing texture object. If <c>Textures</c> is <c>?NULL</c> then it is as if an appropriately sized array containing only zeros had been specified. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTextures.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindTransformFeedback" arity="2" clause_i="1" since=""/>
    <fsummary>bind a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#bindTransformFeedback/2"><c>gl:bindTransformFeedback/2</c></seemfa> binds the transform feedback object with name <c>Id</c> to the current GL state. <c>Id</c> must be a name previously returned from a call to <seemfa marker="gl#genTransformFeedbacks/1"><c>gl:genTransformFeedbacks/1</c></seemfa>. If <c>Id</c> has not previously been bound, a new transform feedback object with name <c>Id</c> and initialized with the default transform state vector is created. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindVertexArray" arity="1" clause_i="1" since=""/>
    <fsummary>bind a vertex array object</fsummary>
    <desc>
    <p><seemfa marker="gl#bindVertexArray/1"><c>gl:bindVertexArray/1</c></seemfa> binds the vertex array object with name <c>Array</c>. <c>Array</c> is the name of a vertex array object previously returned from a call to <seemfa marker="gl#genVertexArrays/1"><c>gl:genVertexArrays/1</c></seemfa>, or zero to break the existing vertex array object binding. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindVertexArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindVertexBuffer" arity="4" clause_i="1" since=""/>
    <name name="vertexArrayVertexBuffer" arity="5" clause_i="1" since=""/>
    <fsummary>bind a buffer to a vertex buffer bind point</fsummary>
    <desc>
    <p><seemfa marker="gl#bindVertexBuffer/4"><c>gl:bindVertexBuffer/4</c></seemfa> and <seemfa marker="gl#bindVertexBuffer/4"><c>gl:vertexArrayVertexBuffer/5</c></seemfa> bind the buffer named <c>Buffer</c> to the vertex buffer binding point whose index is given by <c>Bindingindex</c>. <seemfa marker="gl#bindVertexBuffer/4"><c>gl:bindVertexBuffer/4</c></seemfa> modifies the binding of the currently bound vertex array object, whereas <seemfa marker="gl#bindVertexBuffer/4"><c>gl:vertexArrayVertexBuffer/5</c></seemfa> allows the caller to specify ID of the vertex array object with an argument named <c>Vaobj</c>, for which the binding should be modified. <c>Offset</c> and <c>Stride</c> specify the offset of the first element within the buffer and the distance between elements within the buffer, respectively, and are both measured in basic machine units. <c>Bindingindex</c> must be less than the value of <c>?GL_MAX_VERTEX_ATTRIB_BINDINGS</c>. <c>Offset</c> and <c>Stride</c> must be greater than or equal to zero. If <c>Buffer</c> is zero, then any buffer currently bound to the specified binding point is unbound.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindVertexBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bindVertexBuffers" arity="4" clause_i="1" since=""/>
    <name name="vertexArrayVertexBuffers" arity="5" clause_i="1" since=""/>
    <fsummary>attach multiple buffer objects to a vertex array object</fsummary>
    <desc>
    <p><seemfa marker="gl#bindVertexBuffers/4"><c>gl:bindVertexBuffers/4</c></seemfa> and <seemfa marker="gl#bindVertexBuffers/4"><c>gl:vertexArrayVertexBuffers/5</c></seemfa> bind storage from an array of existing buffer objects to a specified number of consecutive vertex buffer binding points units in a vertex array object. For <seemfa marker="gl#bindVertexBuffers/4"><c>gl:bindVertexBuffers/4</c></seemfa>, the vertex array object is the currently bound vertex array object. For <seemfa marker="gl#bindVertexBuffers/4"><c>gl:vertexArrayVertexBuffers/5</c></seemfa>, <c>Vaobj</c> is the name of the vertex array object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBindVertexBuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bitmap" arity="7" clause_i="1" since=""/>
    <fsummary>draw a bitmap</fsummary>
    <desc>
    <p> A bitmap is a binary image. When drawn, the bitmap is positioned relative to the current raster position, and frame buffer pixels corresponding to 1's in the bitmap are written using the current raster color or index. Frame buffer pixels corresponding to 0's in the bitmap are not modified. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glBitmap.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blendColor" arity="4" clause_i="1" since=""/>
    <fsummary>set the blend color</fsummary>
    <desc>
    <p> The <c>?GL_BLEND_COLOR</c> may be used to calculate the source and destination blending factors. The color components are clamped to the range [0 1] before being stored. See <seemfa marker="gl#blendFunc/2"><c>gl:blendFunc/2</c></seemfa> for a complete description of the blending operations. Initially the <c>?GL_BLEND_COLOR</c> is set to (0, 0, 0, 0). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendColor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blendEquation" arity="1" clause_i="1" since=""/>
    <name name="blendEquationi" arity="2" clause_i="1" since=""/>
    <fsummary>specify the equation used for both the RGB blend equation and the Alpha blend equation</fsummary>
    <desc>
    <p> The blend equations determine how a new pixel (the ''source'' color) is combined with a pixel already in the framebuffer (the ''destination'' color). This function sets both the RGB blend equation and the alpha blend equation to a single equation. <seemfa marker="gl#blendEquation/1"><c>gl:blendEquationi/2</c></seemfa> specifies the blend equation for a single draw buffer whereas <seemfa marker="gl#blendEquation/1"><c>gl:blendEquation/1</c></seemfa> sets the blend equation for all draw buffers. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendEquation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blendEquationSeparate" arity="2" clause_i="1" since=""/>
    <name name="blendEquationSeparatei" arity="3" clause_i="1" since=""/>
    <fsummary>set the RGB blend equation and the alpha blend equation separately</fsummary>
    <desc>
    <p> The blend equations determines how a new pixel (the ''source'' color) is combined with a pixel already in the framebuffer (the ''destination'' color). These functions specify one blend equation for the RGB-color components and one blend equation for the alpha component. <seemfa marker="gl#blendEquationSeparate/2"><c>gl:blendEquationSeparatei/3</c></seemfa> specifies the blend equations for a single draw buffer whereas <seemfa marker="gl#blendEquationSeparate/2"><c>gl:blendEquationSeparate/2</c></seemfa> sets the blend equations for all draw buffers. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendEquationSeparate.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blendFunc" arity="2" clause_i="1" since=""/>
    <name name="blendFunci" arity="3" clause_i="1" since=""/>
    <fsummary>specify pixel arithmetic</fsummary>
    <desc>
    <p> Pixels can be drawn using a function that blends the incoming (source) RGBA values with the RGBA values that are already in the frame buffer (the destination values). Blending is initially disabled. Use <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_BLEND</c> to enable and disable blending. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendFunc.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blendFuncSeparate" arity="4" clause_i="1" since=""/>
    <name name="blendFuncSeparatei" arity="5" clause_i="1" since=""/>
    <fsummary>specify pixel arithmetic for RGB and alpha components separately</fsummary>
    <desc>
    <p> Pixels can be drawn using a function that blends the incoming (source) RGBA values with the RGBA values that are already in the frame buffer (the destination values). Blending is initially disabled. Use <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_BLEND</c> to enable and disable blending. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendFuncSeparate.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="blitFramebuffer" arity="10" clause_i="1" since=""/>
    <fsummary>copy a block of pixels from one framebuffer object to another</fsummary>
    <desc>
    <p><seemfa marker="gl#blitFramebuffer/10"><c>gl:blitFramebuffer/10</c></seemfa> and <c>glBlitNamedFramebuffer</c> transfer a rectangle of pixel values from one region of a read framebuffer to another region of a draw framebuffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlitFramebuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bufferData" arity="4" clause_i="1" since=""/>
    <fsummary>creates and initializes a buffer object's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#bufferData/4"><c>gl:bufferData/4</c></seemfa> and <c>glNamedBufferData</c> create a new data store for a buffer object. In case of <seemfa marker="gl#bufferData/4"><c>gl:bufferData/4</c></seemfa>, the buffer object currently bound to <c>Target</c> is used. For <c>glNamedBufferData</c>, a buffer object associated with ID specified by the caller in <c>Buffer</c> will be used instead.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBufferData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bufferStorage" arity="4" clause_i="1" since=""/>
    <fsummary>creates and initializes a buffer object's immutable data store</fsummary>
    <desc>
    <p><seemfa marker="gl#bufferStorage/4"><c>gl:bufferStorage/4</c></seemfa> and <c>glNamedBufferStorage</c> create a new immutable data store. For <seemfa marker="gl#bufferStorage/4"><c>gl:bufferStorage/4</c></seemfa>, the buffer object currently bound to <c>Target</c> will be initialized. For <c>glNamedBufferStorage</c>, <c>Buffer</c> is the name of the buffer object that will be configured. The size of the data store is specified by <c>Size</c>. If an initial data is available, its address may be supplied in <c>Data</c>. Otherwise, to create an uninitialized data store, <c>Data</c> should be <c>?NULL</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBufferStorage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="bufferSubData" arity="4" clause_i="1" since=""/>
    <fsummary>updates a subset of a buffer object's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#bufferSubData/4"><c>gl:bufferSubData/4</c></seemfa> and <c>glNamedBufferSubData</c> redefine some or all of the data store for the specified buffer object. Data starting at byte offset <c>Offset</c> and extending for <c>Size</c> bytes is copied to the data store from the memory pointed to by <c>Data</c>. <c>Offset</c> and <c>Size</c> must define a range lying entirely within the buffer object's data store. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBufferSubData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="callList" arity="1" clause_i="1" since=""/>
    <fsummary>execute a display list</fsummary>
    <desc>
    <p><seemfa marker="gl#callList/1"><c>gl:callList/1</c></seemfa> causes the named display list to be executed. The commands saved in the display list are executed in order, just as if they were called without using a display list. If <c>List</c> has not been defined as a display list, <seemfa marker="gl#callList/1"><c>gl:callList/1</c></seemfa> is ignored. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCallList.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="callLists" arity="1" clause_i="1" since=""/>
    <fsummary>execute a list of display lists</fsummary>
    <desc>
    <p><seemfa marker="gl#callLists/1"><c>gl:callLists/1</c></seemfa> causes each display list in the list of names passed as <c>Lists</c> to be executed. As a result, the commands saved in each display list are executed in order, just as if they were called without using a display list. Names of display lists that have not been defined are ignored. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCallLists.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="checkFramebufferStatus" arity="1" clause_i="1" since=""/>
    <fsummary>check the completeness status of a framebuffer</fsummary>
    <desc>
    <p><seemfa marker="gl#checkFramebufferStatus/1"><c>gl:checkFramebufferStatus/1</c></seemfa> and <c>glCheckNamedFramebufferStatus</c> return the completeness status of a framebuffer object when treated as a read or draw framebuffer, depending on the value of <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCheckFramebufferStatus.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clampColor" arity="2" clause_i="1" since=""/>
    <fsummary>specify whether data read via <c>glReadPixels</c> should be clamped</fsummary>
    <desc>
    <p><seemfa marker="gl#clampColor/2"><c>gl:clampColor/2</c></seemfa> controls color clamping that is performed during <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>. <c>Target</c> must be <c>?GL_CLAMP_READ_COLOR</c>. If <c>Clamp</c> is <c>?GL_TRUE</c>, read color clamping is enabled; if <c>Clamp</c> is <c>?GL_FALSE</c>, read color clamping is disabled. If <c>Clamp</c> is <c>?GL_FIXED_ONLY</c>, read color clamping is enabled only if the selected read buffer has fixed point components and disabled otherwise. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClampColor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clear" arity="1" clause_i="1" since=""/>
    <fsummary>clear buffers to preset values</fsummary>
    <desc>
    <p><seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> sets the bitplane area of the window to values previously selected by <seemfa marker="gl#clearColor/4"><c>gl:clearColor/4</c></seemfa>, <seemfa marker="gl#clearDepth/1"><c>gl:clearDepth/1</c></seemfa>, and <seemfa marker="gl#clearStencil/1"><c>gl:clearStencil/1</c></seemfa>. Multiple color buffers can be cleared simultaneously by selecting more than one buffer at a time using <seemfa marker="gl#drawBuffer/1"><c>gl:drawBuffer/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClear.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearAccum" arity="4" clause_i="1" since=""/>
    <fsummary>specify clear values for the accumulation buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#clearAccum/4"><c>gl:clearAccum/4</c></seemfa> specifies the red, green, blue, and alpha values used by <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> to clear the accumulation buffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glClearAccum.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearBufferData" arity="5" clause_i="1" since=""/>
    <name name="clearBufferSubData" arity="7" clause_i="1" since=""/>
    <name name="clearBufferfi" arity="4" clause_i="1" since=""/>
    <name name="clearBufferfv" arity="3" clause_i="1" since=""/>
    <name name="clearBufferiv" arity="3" clause_i="1" since=""/>
    <name name="clearBufferuiv" arity="3" clause_i="1" since=""/>
    <fsummary>clear individual buffers of a framebuffer</fsummary>
    <desc>
    <p> These commands clear a specified buffer of a framebuffer to specified value(s). For <seemfa marker="gl#clearBufferiv/3"><c>gl:clearBuffer*()</c></seemfa>, the framebuffer is the currently bound draw framebuffer object. For <c>glClearNamedFramebuffer*</c>, <c>Framebuffer</c> is zero, indicating the default draw framebuffer, or the name of a framebuffer object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearColor" arity="4" clause_i="1" since=""/>
    <fsummary>specify clear values for the color buffers</fsummary>
    <desc>
    <p><seemfa marker="gl#clearColor/4"><c>gl:clearColor/4</c></seemfa> specifies the red, green, blue, and alpha values used by <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> to clear the color buffers. Values specified by <seemfa marker="gl#clearColor/4"><c>gl:clearColor/4</c></seemfa> are clamped to the range [0 1]. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearColor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearDepth" arity="1" clause_i="1" since=""/>
    <name name="clearDepthf" arity="1" clause_i="1" since=""/>
    <fsummary>specify the clear value for the depth buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#clearDepth/1"><c>gl:clearDepth/1</c></seemfa> specifies the depth value used by <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> to clear the depth buffer. Values specified by <seemfa marker="gl#clearDepth/1"><c>gl:clearDepth/1</c></seemfa> are clamped to the range [0 1]. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearDepth.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearIndex" arity="1" clause_i="1" since=""/>
    <fsummary>specify the clear value for the color index buffers</fsummary>
    <desc>
    <p><seemfa marker="gl#clearIndex/1"><c>gl:clearIndex/1</c></seemfa> specifies the index used by <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> to clear the color index buffers. <c>C</c> is not clamped. Rather, <c>C</c> is converted to a fixed-point value with unspecified precision to the right of the binary point. The integer part of this value is then masked with   2 m-1, where   m is the number of bits in a color index stored in the frame buffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glClearIndex.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearStencil" arity="1" clause_i="1" since=""/>
    <fsummary>specify the clear value for the stencil buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#clearStencil/1"><c>gl:clearStencil/1</c></seemfa> specifies the index used by <seemfa marker="gl#clear/1"><c>gl:clear/1</c></seemfa> to clear the stencil buffer. <c>S</c> is masked with  2 m-1, where  m is the number of bits in the stencil buffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearStencil.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearTexImage" arity="5" clause_i="1" since=""/>
    <fsummary>fills all a texture image with a constant value</fsummary>
    <desc>
    <p><seemfa marker="gl#clearTexImage/5"><c>gl:clearTexImage/5</c></seemfa> fills all an image contained in a texture with an application supplied value. <c>Texture</c> must be the name of an existing texture. Further, <c>Texture</c> may not be the name of a buffer texture, nor may its internal format be compressed. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearTexImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clearTexSubImage" arity="11" clause_i="1" since=""/>
    <fsummary>fills all or part of a texture image with a constant value</fsummary>
    <desc>
    <p><seemfa marker="gl#clearTexSubImage/11"><c>gl:clearTexSubImage/11</c></seemfa> fills all or part of an image contained in a texture with an application supplied value. <c>Texture</c> must be the name of an existing texture. Further, <c>Texture</c> may not be the name of a buffer texture, nor may its internal format be compressed. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClearTexSubImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clientActiveTexture" arity="1" clause_i="1" since=""/>
    <fsummary>select active texture unit</fsummary>
    <desc>
    <p><seemfa marker="gl#clientActiveTexture/1"><c>gl:clientActiveTexture/1</c></seemfa> selects the vertex array client state parameters to be modified by <seemfa marker="gl#texCoordPointer/4"><c>gl:texCoordPointer/4</c></seemfa>, and enabled or disabled with <seemfa marker="gl#enableClientState/1"><c>gl:enableClientState/1</c></seemfa> or <seemfa marker="gl#enableClientState/1"><c>gl:disableClientState/1</c></seemfa>, respectively, when called with a parameter of <c>?GL_TEXTURE_COORD_ARRAY</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glClientActiveTexture.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clientWaitSync" arity="3" clause_i="1" since=""/>
    <fsummary>block and wait for a sync object to become signaled</fsummary>
    <desc>
    <p><seemfa marker="gl#clientWaitSync/3"><c>gl:clientWaitSync/3</c></seemfa> causes the client to block and wait for the sync object specified by <c>Sync</c> to become signaled. If <c>Sync</c> is signaled when <seemfa marker="gl#clientWaitSync/3"><c>gl:clientWaitSync/3</c></seemfa> is called, <seemfa marker="gl#clientWaitSync/3"><c>gl:clientWaitSync/3</c></seemfa> returns immediately, otherwise it will block and wait for up to <c>Timeout</c> nanoseconds for <c>Sync</c> to become signaled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClientWaitSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clipControl" arity="2" clause_i="1" since=""/>
    <fsummary>control clip coordinate to window coordinate behavior</fsummary>
    <desc>
    <p><seemfa marker="gl#clipControl/2"><c>gl:clipControl/2</c></seemfa> controls the clipping volume behavior and the clip coordinate to window coordinate transformation behavior. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glClipControl.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="clipPlane" arity="2" clause_i="1" since=""/>
    <fsummary>specify a plane against which all geometry is clipped</fsummary>
    <desc>
    <p> Geometry is always clipped against the boundaries of a six-plane frustum in <c>x</c>, <c>y</c>, and <c>z</c>. <seemfa marker="gl#clipPlane/2"><c>gl:clipPlane/2</c></seemfa> allows the specification of additional planes, not necessarily perpendicular to the <c>x</c>, <c>y</c>, or <c>z</c> axis, against which all geometry is clipped. To determine the maximum number of additional clipping planes, call <seemfa marker="gl#getBooleanv/1"><c>gl:getIntegerv/1</c></seemfa> with argument <c>?GL_MAX_CLIP_PLANES</c>. All implementations support at least six such clipping planes. Because the resulting clipping region is the intersection of the defined half-spaces, it is always convex. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glClipPlane.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="color3b" arity="3" clause_i="1" since=""/>
    <name name="color3bv" arity="1" clause_i="1" since=""/>
    <name name="color3d" arity="3" clause_i="1" since=""/>
    <name name="color3dv" arity="1" clause_i="1" since=""/>
    <name name="color3f" arity="3" clause_i="1" since=""/>
    <name name="color3fv" arity="1" clause_i="1" since=""/>
    <name name="color3i" arity="3" clause_i="1" since=""/>
    <name name="color3iv" arity="1" clause_i="1" since=""/>
    <name name="color3s" arity="3" clause_i="1" since=""/>
    <name name="color3sv" arity="1" clause_i="1" since=""/>
    <name name="color3ub" arity="3" clause_i="1" since=""/>
    <name name="color3ubv" arity="1" clause_i="1" since=""/>
    <name name="color3ui" arity="3" clause_i="1" since=""/>
    <name name="color3uiv" arity="1" clause_i="1" since=""/>
    <name name="color3us" arity="3" clause_i="1" since=""/>
    <name name="color3usv" arity="1" clause_i="1" since=""/>
    <name name="color4b" arity="4" clause_i="1" since=""/>
    <name name="color4bv" arity="1" clause_i="1" since=""/>
    <name name="color4d" arity="4" clause_i="1" since=""/>
    <name name="color4dv" arity="1" clause_i="1" since=""/>
    <name name="color4f" arity="4" clause_i="1" since=""/>
    <name name="color4fv" arity="1" clause_i="1" since=""/>
    <name name="color4i" arity="4" clause_i="1" since=""/>
    <name name="color4iv" arity="1" clause_i="1" since=""/>
    <name name="color4s" arity="4" clause_i="1" since=""/>
    <name name="color4sv" arity="1" clause_i="1" since=""/>
    <name name="color4ub" arity="4" clause_i="1" since=""/>
    <name name="color4ubv" arity="1" clause_i="1" since=""/>
    <name name="color4ui" arity="4" clause_i="1" since=""/>
    <name name="color4uiv" arity="1" clause_i="1" since=""/>
    <name name="color4us" arity="4" clause_i="1" since=""/>
    <name name="color4usv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current color</fsummary>
    <desc>
    <p> The GL stores both a current single-valued color index and a current four-valued RGBA color. <seemfa marker="gl#color3b/3"><c>gl:color()</c></seemfa> sets a new four-valued RGBA color. <seemfa marker="gl#color3b/3"><c>gl:color()</c></seemfa> has two major variants: <seemfa marker="gl#color3b/3"><c>gl:color3()</c></seemfa> and <seemfa marker="gl#color3b/3"><c>gl:color4()</c></seemfa>. <seemfa marker="gl#color3b/3"><c>gl:color3()</c></seemfa> variants specify new red, green, and blue values explicitly and set the current alpha value to 1.0 (full intensity) implicitly. <seemfa marker="gl#color3b/3"><c>gl:color4()</c></seemfa> variants specify all four color components explicitly. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColor.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorMask" arity="4" clause_i="1" since=""/>
    <name name="colorMaski" arity="5" clause_i="1" since=""/>
    <fsummary>enable and disable writing of frame buffer color components</fsummary>
    <desc>
    <p><seemfa marker="gl#colorMask/4"><c>gl:colorMask/4</c></seemfa> and <seemfa marker="gl#colorMask/4"><c>gl:colorMaski/5</c></seemfa> specify whether the individual color components in the frame buffer can or cannot be written. <seemfa marker="gl#colorMask/4"><c>gl:colorMaski/5</c></seemfa> sets the mask for a specific draw buffer, whereas <seemfa marker="gl#colorMask/4"><c>gl:colorMask/4</c></seemfa> sets the mask for all draw buffers. If <c>Red</c> is <c>?GL_FALSE</c>, for example, no change is made to the red component of any pixel in any of the color buffers, regardless of the drawing operation attempted. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glColorMask.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorMaterial" arity="2" clause_i="1" since=""/>
    <fsummary>cause a material color to track the current color</fsummary>
    <desc>
    <p><seemfa marker="gl#colorMaterial/2"><c>gl:colorMaterial/2</c></seemfa> specifies which material parameters track the current color. When <c>?GL_COLOR_MATERIAL</c> is enabled, the material parameter or parameters specified by <c>Mode</c>, of the material or materials specified by <c>Face</c>, track the current color at all times. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColorMaterial.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorPointer" arity="4" clause_i="1" since=""/>
    <fsummary>define an array of colors</fsummary>
    <desc>
    <p><seemfa marker="gl#colorPointer/4"><c>gl:colorPointer/4</c></seemfa> specifies the location and data format of an array of color components to use when rendering. <c>Size</c> specifies the number of components per color, and must be 3 or 4. <c>Type</c> specifies the data type of each color component, and <c>Stride</c> specifies the byte stride from one color to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. (Single-array storage may be more efficient on some implementations; see <seemfa marker="gl#interleavedArrays/3"><c>gl:interleavedArrays/3</c></seemfa>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColorPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorSubTable" arity="6" clause_i="1" since=""/>
    <fsummary>respecify a portion of a color table</fsummary>
    <desc>
    <p><seemfa marker="gl#colorSubTable/6"><c>gl:colorSubTable/6</c></seemfa> is used to respecify a contiguous portion of a color table previously defined using <seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa>. The pixels referenced by <c>Data</c> replace the portion of the existing table from indices <c>Start</c> to  start+count-1, inclusive. This region may not include any entries outside the range of the color table as it was originally specified. It is not an error to specify a subtexture with width of 0, but such a specification has no effect. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColorSubTable.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorTable" arity="6" clause_i="1" since=""/>
    <fsummary>define a color lookup table</fsummary>
    <desc>
    <p><seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa> may be used in two ways: to test the actual size and color resolution of a lookup table given a particular set of parameters, or to load the contents of a color lookup table. Use the targets <c>?GL_PROXY_*</c> for the first case and the other targets for the second case. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColorTable.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="colorTableParameterfv" arity="3" clause_i="1" since=""/>
    <name name="colorTableParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>set color lookup table parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#colorTableParameterfv/3"><c>gl:colorTableParameter()</c></seemfa> is used to specify the scale factors and bias terms applied to color components when they are loaded into a color table. <c>Target</c> indicates which color table the scale and bias terms apply to; it must be set to <c>?GL_COLOR_TABLE</c>, <c>?GL_POST_CONVOLUTION_COLOR_TABLE</c>, or <c>?GL_POST_COLOR_MATRIX_COLOR_TABLE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glColorTableParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compileShader" arity="1" clause_i="1" since=""/>
    <fsummary>Compiles a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#compileShader/1"><c>gl:compileShader/1</c></seemfa> compiles the source code strings that have been stored in the shader object specified by <c>Shader</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompileShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexImage1D" arity="7" clause_i="1" since=""/>
    <fsummary>specify a one-dimensional texture image in a compressed format</fsummary>
    <desc>
    <p> Texturing allows elements of an image array to be read by shaders. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexImage2D" arity="8" clause_i="1" since=""/>
    <fsummary>specify a two-dimensional texture image in a compressed format</fsummary>
    <desc>
    <p> Texturing allows elements of an image array to be read by shaders. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexImage3D" arity="9" clause_i="1" since=""/>
    <fsummary>specify a three-dimensional texture image in a compressed format</fsummary>
    <desc>
    <p> Texturing allows elements of an image array to be read by shaders. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexImage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexSubImage1D" arity="7" clause_i="1" since=""/>
    <name name="compressedTextureSubImage1D" arity="7" clause_i="1" since=""/>
    <fsummary>specify a one-dimensional texture subimage in a compressed format</fsummary>
    <desc>
    <p>Texturing allows elements of an image array to be read by shaders.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexSubImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexSubImage2D" arity="9" clause_i="1" since=""/>
    <name name="compressedTextureSubImage2D" arity="9" clause_i="1" since=""/>
    <fsummary>specify a two-dimensional texture subimage in a compressed format</fsummary>
    <desc>
    <p>Texturing allows elements of an image array to be read by shaders.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexSubImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="compressedTexSubImage3D" arity="11" clause_i="1" since=""/>
    <name name="compressedTextureSubImage3D" arity="11" clause_i="1" since=""/>
    <fsummary>specify a three-dimensional texture subimage in a compressed format</fsummary>
    <desc>
    <p>Texturing allows elements of an image array to be read by shaders.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCompressedTexSubImage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="convolutionFilter1D" arity="6" clause_i="1" since=""/>
    <fsummary>define a one-dimensional convolution filter</fsummary>
    <desc>
    <p><seemfa marker="gl#convolutionFilter1D/6"><c>gl:convolutionFilter1D/6</c></seemfa> builds a one-dimensional convolution filter kernel from an array of pixels. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glConvolutionFilter1D.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="convolutionFilter2D" arity="7" clause_i="1" since=""/>
    <fsummary>define a two-dimensional convolution filter</fsummary>
    <desc>
    <p><seemfa marker="gl#convolutionFilter2D/7"><c>gl:convolutionFilter2D/7</c></seemfa> builds a two-dimensional convolution filter kernel from an array of pixels. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glConvolutionFilter2D.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="convolutionParameterf" arity="3" clause_i="1" since=""/>
    <name name="convolutionParameterfv" arity="3" clause_i="1" since=""/>
    <name name="convolutionParameteri" arity="3" clause_i="1" since=""/>
    <name name="convolutionParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>set convolution parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#convolutionParameterf/3"><c>gl:convolutionParameter()</c></seemfa> sets the value of a convolution parameter. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glConvolutionParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyBufferSubData" arity="5" clause_i="1" since=""/>
    <fsummary>copy all or part of the data store of a buffer object to the data store of another buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#copyBufferSubData/5"><c>gl:copyBufferSubData/5</c></seemfa> and <c>glCopyNamedBufferSubData</c> copy part of the data store attached to a source buffer object to the data store attached to a destination buffer object. The number of basic machine units indicated by <c>Size</c> is copied from the source at offset <c>ReadOffset</c> to the destination at <c>WriteOffset</c>. <c>ReadOffset</c>, <c>WriteOffset</c> and <c>Size</c> are in terms of basic machine units. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyBufferSubData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyColorSubTable" arity="5" clause_i="1" since=""/>
    <fsummary>respecify a portion of a color table</fsummary>
    <desc>
    <p><seemfa marker="gl#copyColorSubTable/5"><c>gl:copyColorSubTable/5</c></seemfa> is used to respecify a contiguous portion of a color table previously defined using <seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa>. The pixels copied from the framebuffer replace the portion of the existing table from indices <c>Start</c> to  start+x-1, inclusive. This region may not include any entries outside the range of the color table, as was originally specified. It is not an error to specify a subtexture with width of 0, but such a specification has no effect. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCopyColorSubTable.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyColorTable" arity="5" clause_i="1" since=""/>
    <fsummary>copy pixels into a color table</fsummary>
    <desc>
    <p><seemfa marker="gl#copyColorTable/5"><c>gl:copyColorTable/5</c></seemfa> loads a color table with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCopyColorTable.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyConvolutionFilter1D" arity="5" clause_i="1" since=""/>
    <fsummary>copy pixels into a one-dimensional convolution filter</fsummary>
    <desc>
    <p><seemfa marker="gl#copyConvolutionFilter1D/5"><c>gl:copyConvolutionFilter1D/5</c></seemfa> defines a one-dimensional convolution filter kernel with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#convolutionFilter1D/6"><c>gl:convolutionFilter1D/6</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCopyConvolutionFilter1D.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyConvolutionFilter2D" arity="6" clause_i="1" since=""/>
    <fsummary>copy pixels into a two-dimensional convolution filter</fsummary>
    <desc>
    <p><seemfa marker="gl#copyConvolutionFilter2D/6"><c>gl:copyConvolutionFilter2D/6</c></seemfa> defines a two-dimensional convolution filter kernel with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#convolutionFilter2D/7"><c>gl:convolutionFilter2D/7</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCopyConvolutionFilter2D.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyImageSubData" arity="15" clause_i="1" since=""/>
    <fsummary>perform a raw data copy between two images</fsummary>
    <desc>
    <p><seemfa marker="gl#copyImageSubData/15"><c>gl:copyImageSubData/15</c></seemfa> may be used to copy data from one image (i.e. texture or renderbuffer) to another. <seemfa marker="gl#copyImageSubData/15"><c>gl:copyImageSubData/15</c></seemfa> does not perform general-purpose conversions such as scaling, resizing, blending, color-space, or format conversions. It should be considered to operate in a manner similar to a CPU memcpy. CopyImageSubData can copy between images with different internal formats, provided the formats are compatible. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyImageSubData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyPixels" arity="5" clause_i="1" since=""/>
    <fsummary>copy pixels in the frame buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa> copies a screen-aligned rectangle of pixels from the specified frame buffer location to a region relative to the current raster position. Its operation is well defined only if the entire pixel source region is within the exposed portion of the window. Results of copies from outside the window, or from regions of the window that are not exposed, are hardware dependent and undefined. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glCopyPixels.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyTexImage1D" arity="7" clause_i="1" since=""/>
    <fsummary>copy pixels into a 1D texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa> defines a one-dimensional texture image with pixels from the current <c>?GL_READ_BUFFER</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyTexImage2D" arity="8" clause_i="1" since=""/>
    <fsummary>copy pixels into a 2D texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa> defines a two-dimensional texture image, or cube-map texture image with pixels from the current <c>?GL_READ_BUFFER</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyTexSubImage1D" arity="6" clause_i="1" since=""/>
    <fsummary>copy a one-dimensional texture subimage</fsummary>
    <desc>
    <p><seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa> and <c>glCopyTextureSubImage1D</c> replace a portion of a one-dimensional texture image with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>). For <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, the texture object that is bound to <c>Target</c> will be used for the process. For <c>glCopyTextureSubImage1D</c>, <c>Texture</c> tells which texture object should be used for the purpose of the call. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexSubImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyTexSubImage2D" arity="8" clause_i="1" since=""/>
    <fsummary>copy a two-dimensional texture subimage</fsummary>
    <desc>
    <p><seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa> and <c>glCopyTextureSubImage2D</c> replace a rectangular portion of a two-dimensional texture image, cube-map texture image, rectangular image, or a linear portion of a number of slices of a one-dimensional array texture with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexSubImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="copyTexSubImage3D" arity="9" clause_i="1" since=""/>
    <fsummary>copy a three-dimensional texture subimage</fsummary>
    <desc>
    <p><seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa> and <c>glCopyTextureSubImage3D</c> functions replace a rectangular portion of a three-dimensional or two-dimensional array texture image with pixels from the current <c>?GL_READ_BUFFER</c> (rather than from main memory, as is the case for <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexSubImage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createBuffers" arity="1" clause_i="1" since=""/>
    <fsummary>create buffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createBuffers/1"><c>gl:createBuffers/1</c></seemfa> returns <c>N</c> previously unused buffer names in <c>Buffers</c>, each representing a new buffer object initialized as if it had been bound to an unspecified target. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateBuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createFramebuffers" arity="1" clause_i="1" since=""/>
    <fsummary>create framebuffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createFramebuffers/1"><c>gl:createFramebuffers/1</c></seemfa> returns <c>N</c> previously unused framebuffer names in <c>Framebuffers</c>, each representing a new framebuffer object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateFramebuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createProgram" arity="0" clause_i="1" since=""/>
    <fsummary>Creates a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#createProgram/0"><c>gl:createProgram/0</c></seemfa> creates an empty program object and returns a non-zero value by which it can be referenced. A program object is an object to which shader objects can be attached. This provides a mechanism to specify the shader objects that will be linked to create a program. It also provides a means for checking the compatibility of the shaders that will be used to create a program (for instance, checking the compatibility between a vertex shader and a fragment shader). When no longer needed as part of a program object, shader objects can be detached.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createProgramPipelines" arity="1" clause_i="1" since=""/>
    <fsummary>create program pipeline objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createProgramPipelines/1"><c>gl:createProgramPipelines/1</c></seemfa> returns <c>N</c> previously unused program pipeline names in <c>Pipelines</c>, each representing a new program pipeline object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateProgramPipelines.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createQueries" arity="2" clause_i="1" since=""/>
    <fsummary>create query objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createQueries/2"><c>gl:createQueries/2</c></seemfa> returns <c>N</c> previously unused query object names in <c>Ids</c>, each representing a new query object with the specified <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateQueries.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createRenderbuffers" arity="1" clause_i="1" since=""/>
    <fsummary>create renderbuffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createRenderbuffers/1"><c>gl:createRenderbuffers/1</c></seemfa> returns <c>N</c> previously unused renderbuffer object names in <c>Renderbuffers</c>, each representing a new renderbuffer object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateRenderbuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createSamplers" arity="1" clause_i="1" since=""/>
    <fsummary>create sampler objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createSamplers/1"><c>gl:createSamplers/1</c></seemfa> returns <c>N</c> previously unused sampler names in <c>Samplers</c>, each representing a new sampler object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateSamplers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createShader" arity="1" clause_i="1" since=""/>
    <fsummary>Creates a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#createShader/1"><c>gl:createShader/1</c></seemfa> creates an empty shader object and returns a non-zero value by which it can be referenced. A shader object is used to maintain the source code strings that define a shader. <c>ShaderType</c> indicates the type of shader to be created. Five types of shader are supported. A shader of type <c>?GL_COMPUTE_SHADER</c> is a shader that is intended to run on the programmable compute processor. A shader of type <c>?GL_VERTEX_SHADER</c> is a shader that is intended to run on the programmable vertex processor. A shader of type <c>?GL_TESS_CONTROL_SHADER</c> is a shader that is intended to run on the programmable tessellation processor in the control stage. A shader of type <c>?GL_TESS_EVALUATION_SHADER</c> is a shader that is intended to run on the programmable tessellation processor in the evaluation stage. A shader of type <c>?GL_GEOMETRY_SHADER</c> is a shader that is intended to run on the programmable geometry processor. A shader of type <c>?GL_FRAGMENT_SHADER</c> is a shader that is intended to run on the programmable fragment processor.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createShaderProgramv" arity="2" clause_i="1" since=""/>
    <fsummary>create a stand-alone program from an array of null-terminated source code strings</fsummary>
    <desc>
    <p><seemfa marker="gl#createShaderProgramv/2"><c>gl:createShaderProgram()</c></seemfa> creates a program object containing compiled and linked shaders for a single stage specified by <c>Type</c>. <c>Strings</c> refers to an array of <c>Count</c> strings from which to create the shader executables. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateShaderProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createTextures" arity="2" clause_i="1" since=""/>
    <fsummary>create texture objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createTextures/2"><c>gl:createTextures/2</c></seemfa> returns <c>N</c> previously unused texture names in <c>Textures</c>, each representing a new texture object of the dimensionality and type specified by <c>Target</c> and initialized to the default values for that texture type. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateTextures.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createTransformFeedbacks" arity="1" clause_i="1" since=""/>
    <fsummary>create transform feedback objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createTransformFeedbacks/1"><c>gl:createTransformFeedbacks/1</c></seemfa> returns <c>N</c> previously unused transform feedback object names in <c>Ids</c>, each representing a new transform feedback object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateTransformFeedbacks.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="createVertexArrays" arity="1" clause_i="1" since=""/>
    <fsummary>create vertex array objects</fsummary>
    <desc>
    <p><seemfa marker="gl#createVertexArrays/1"><c>gl:createVertexArrays/1</c></seemfa> returns <c>N</c> previously unused vertex array object names in <c>Arrays</c>, each representing a new vertex array object initialized to the default state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateVertexArrays.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="cullFace" arity="1" clause_i="1" since=""/>
    <fsummary>specify whether front- or back-facing facets can be culled</fsummary>
    <desc>
    <p><seemfa marker="gl#cullFace/1"><c>gl:cullFace/1</c></seemfa> specifies whether front- or back-facing facets are culled (as specified by <c>mode</c>) when facet culling is enabled. Facet culling is initially disabled. To enable and disable facet culling, call the <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> commands with the argument <c>?GL_CULL_FACE</c>. Facets include triangles, quadrilaterals, polygons, and rectangles. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glCullFace.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="debugMessageControl" arity="5" clause_i="1" since=""/>
    <fsummary>control the reporting of debug messages in a debug context</fsummary>
    <desc>
    <p><seemfa marker="gl#debugMessageControl/5"><c>gl:debugMessageControl/5</c></seemfa> controls the reporting of debug messages generated by a debug context. The parameters <c>Source</c>, <c>Type</c> and <c>Severity</c> form a filter to select messages from the pool of potential messages generated by the GL. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDebugMessageControl.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="debugMessageInsert" arity="5" clause_i="1" since=""/>
    <fsummary>inject an application-supplied message into the debug message queue</fsummary>
    <desc>
    <p><seemfa marker="gl#debugMessageInsert/5"><c>gl:debugMessageInsert/5</c></seemfa> inserts a user-supplied message into the debug output queue. <c>Source</c> specifies the source that will be used to classify the message and must be <c>?GL_DEBUG_SOURCE_APPLICATION</c> or <c>?GL_DEBUG_SOURCE_THIRD_PARTY</c>. All other sources are reserved for use by the GL implementation. <c>Type</c> indicates the type of the message to be inserted and may be one of <c>?GL_DEBUG_TYPE_ERROR</c>, <c>?GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR</c>, <c>?GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR</c>, <c>?GL_DEBUG_TYPE_PORTABILITY</c>, <c>?GL_DEBUG_TYPE_PERFORMANCE</c>, <c>?GL_DEBUG_TYPE_MARKER</c>, <c>?GL_DEBUG_TYPE_PUSH_GROUP</c>, <c>?GL_DEBUG_TYPE_POP_GROUP</c>, or <c>?GL_DEBUG_TYPE_OTHER</c>. <c>Severity</c> indicates the severity of the message and may be <c>?GL_DEBUG_SEVERITY_LOW</c>, <c>?GL_DEBUG_SEVERITY_MEDIUM</c>, <c>?GL_DEBUG_SEVERITY_HIGH</c> or <c>?GL_DEBUG_SEVERITY_NOTIFICATION</c>. <c>Id</c> is available for application defined use and may be any value. This value will be recorded and used to identify the message. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDebugMessageInsert.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteBuffers" arity="1" clause_i="1" since=""/>
    <fsummary>delete named buffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteBuffers/1"><c>gl:deleteBuffers/1</c></seemfa> deletes <c>N</c> buffer objects named by the elements of the array <c>Buffers</c>. After a buffer object is deleted, it has no contents, and its name is free for reuse (for example by <seemfa marker="gl#genBuffers/1"><c>gl:genBuffers/1</c></seemfa>). If a buffer object that is currently bound is deleted, the binding reverts to 0 (the absence of any buffer object). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteBuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteFramebuffers" arity="1" clause_i="1" since=""/>
    <fsummary>delete framebuffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteFramebuffers/1"><c>gl:deleteFramebuffers/1</c></seemfa> deletes the <c>N</c> framebuffer objects whose names are stored in the array addressed by <c>Framebuffers</c>. The name zero is reserved by the GL and is silently ignored, should it occur in <c>Framebuffers</c>, as are other unused names. Once a framebuffer object is deleted, its name is again unused and it has no attachments. If a framebuffer that is currently bound to one or more of the targets <c>?GL_DRAW_FRAMEBUFFER</c> or <c>?GL_READ_FRAMEBUFFER</c> is deleted, it is as though <seemfa marker="gl#bindFramebuffer/2"><c>gl:bindFramebuffer/2</c></seemfa> had been executed with the corresponding <c>Target</c> and <c>Framebuffer</c> zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteFramebuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteLists" arity="2" clause_i="1" since=""/>
    <fsummary>delete a contiguous group of display lists</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteLists/2"><c>gl:deleteLists/2</c></seemfa> causes a contiguous group of display lists to be deleted. <c>List</c> is the name of the first display list to be deleted, and <c>Range</c> is the number of display lists to delete. All display lists   d with   list&amp;lt;= d&amp;lt;= list+range-1 are deleted. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glDeleteLists.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteProgram" arity="1" clause_i="1" since=""/>
    <fsummary>Deletes a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteProgram/1"><c>gl:deleteProgram/1</c></seemfa> frees the memory and invalidates the name associated with the program object specified by <c>Program.</c> This command effectively undoes the effects of a call to <seemfa marker="gl#createProgram/0"><c>gl:createProgram/0</c></seemfa>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteProgramPipelines" arity="1" clause_i="1" since=""/>
    <fsummary>delete program pipeline objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteProgramPipelines/1"><c>gl:deleteProgramPipelines/1</c></seemfa> deletes the <c>N</c> program pipeline objects whose names are stored in the array <c>Pipelines</c>. Unused names in <c>Pipelines</c> are ignored, as is the name zero. After a program pipeline object is deleted, its name is again unused and it has no contents. If program pipeline object that is currently bound is deleted, the binding for that object reverts to zero and no program pipeline object becomes current. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteProgramPipelines.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteQueries" arity="1" clause_i="1" since=""/>
    <fsummary>delete named query objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteQueries/1"><c>gl:deleteQueries/1</c></seemfa> deletes <c>N</c> query objects named by the elements of the array <c>Ids</c>. After a query object is deleted, it has no contents, and its name is free for reuse (for example by <seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteQueries.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteRenderbuffers" arity="1" clause_i="1" since=""/>
    <fsummary>delete renderbuffer objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteRenderbuffers/1"><c>gl:deleteRenderbuffers/1</c></seemfa> deletes the <c>N</c> renderbuffer objects whose names are stored in the array addressed by <c>Renderbuffers</c>. The name zero is reserved by the GL and is silently ignored, should it occur in <c>Renderbuffers</c>, as are other unused names. Once a renderbuffer object is deleted, its name is again unused and it has no contents. If a renderbuffer that is currently bound to the target <c>?GL_RENDERBUFFER</c> is deleted, it is as though <seemfa marker="gl#bindRenderbuffer/2"><c>gl:bindRenderbuffer/2</c></seemfa> had been executed with a <c>Target</c> of <c>?GL_RENDERBUFFER</c> and a <c>Name</c> of zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteRenderbuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteSamplers" arity="1" clause_i="1" since=""/>
    <fsummary>delete named sampler objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteSamplers/1"><c>gl:deleteSamplers/1</c></seemfa> deletes <c>N</c> sampler objects named by the elements of the array <c>Samplers</c>. After a sampler object is deleted, its name is again unused. If a sampler object that is currently bound to a sampler unit is deleted, it is as though <seemfa marker="gl#bindSampler/2"><c>gl:bindSampler/2</c></seemfa> is called with unit set to the unit the sampler is bound to and sampler zero. Unused names in samplers are silently ignored, as is the reserved name zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteSamplers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteShader" arity="1" clause_i="1" since=""/>
    <fsummary>Deletes a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteShader/1"><c>gl:deleteShader/1</c></seemfa> frees the memory and invalidates the name associated with the shader object specified by <c>Shader</c>. This command effectively undoes the effects of a call to <seemfa marker="gl#createShader/1"><c>gl:createShader/1</c></seemfa>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteSync" arity="1" clause_i="1" since=""/>
    <fsummary>delete a sync object</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteSync/1"><c>gl:deleteSync/1</c></seemfa> deletes the sync object specified by <c>Sync</c>. If the fence command corresponding to the specified sync object has completed, or if no <seemfa marker="gl#waitSync/3"><c>gl:waitSync/3</c></seemfa> or <seemfa marker="gl#clientWaitSync/3"><c>gl:clientWaitSync/3</c></seemfa> commands are blocking on <c>Sync</c>, the object is deleted immediately. Otherwise, <c>Sync</c> is flagged for deletion and will be deleted when it is no longer associated with any fence command and is no longer blocking any <seemfa marker="gl#waitSync/3"><c>gl:waitSync/3</c></seemfa> or <seemfa marker="gl#clientWaitSync/3"><c>gl:clientWaitSync/3</c></seemfa> command. In either case, after <seemfa marker="gl#deleteSync/1"><c>gl:deleteSync/1</c></seemfa> returns, the name <c>Sync</c> is invalid and can no longer be used to refer to the sync object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteTextures" arity="1" clause_i="1" since=""/>
    <fsummary>delete named textures</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteTextures/1"><c>gl:deleteTextures/1</c></seemfa> deletes <c>N</c> textures named by the elements of the array <c>Textures</c>. After a texture is deleted, it has no contents or dimensionality, and its name is free for reuse (for example by <seemfa marker="gl#genTextures/1"><c>gl:genTextures/1</c></seemfa>). If a texture that is currently bound is deleted, the binding reverts to 0 (the default texture). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteTextures.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteTransformFeedbacks" arity="1" clause_i="1" since=""/>
    <fsummary>delete transform feedback objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteTransformFeedbacks/1"><c>gl:deleteTransformFeedbacks/1</c></seemfa> deletes the <c>N</c> transform feedback objects whose names are stored in the array <c>Ids</c>. Unused names in <c>Ids</c> are ignored, as is the name zero. After a transform feedback object is deleted, its name is again unused and it has no contents. If an active transform feedback object is deleted, its name immediately becomes unused, but the underlying object is not deleted until it is no longer active. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteTransformFeedbacks.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="deleteVertexArrays" arity="1" clause_i="1" since=""/>
    <fsummary>delete vertex array objects</fsummary>
    <desc>
    <p><seemfa marker="gl#deleteVertexArrays/1"><c>gl:deleteVertexArrays/1</c></seemfa> deletes <c>N</c> vertex array objects whose names are stored in the array addressed by <c>Arrays</c>. Once a vertex array object is deleted it has no contents and its name is again unused. If a vertex array object that is currently bound is deleted, the binding for that object reverts to zero and the default vertex array becomes current. Unused names in <c>Arrays</c> are silently ignored, as is the value zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteVertexArrays.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="depthFunc" arity="1" clause_i="1" since=""/>
    <fsummary>specify the value used for depth buffer comparisons</fsummary>
    <desc>
    <p><seemfa marker="gl#depthFunc/1"><c>gl:depthFunc/1</c></seemfa> specifies the function used to compare each incoming pixel depth value with the depth value present in the depth buffer. The comparison is performed only if depth testing is enabled. (See <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> of <c>?GL_DEPTH_TEST</c>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthFunc.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="depthMask" arity="1" clause_i="1" since=""/>
    <fsummary>enable or disable writing into the depth buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#depthMask/1"><c>gl:depthMask/1</c></seemfa> specifies whether the depth buffer is enabled for writing. If <c>Flag</c> is <c>?GL_FALSE</c>, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthMask.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="depthRange" arity="2" clause_i="1" since=""/>
    <name name="depthRangef" arity="2" clause_i="1" since=""/>
    <fsummary>specify mapping of depth values from normalized device coordinates to window coordinates</fsummary>
    <desc>
    <p> After clipping and division by <c>w</c>, depth coordinates range from  -1 to 1, corresponding to the near and far clipping planes. <seemfa marker="gl#depthRange/2"><c>gl:depthRange/2</c></seemfa> specifies a linear mapping of the normalized depth coordinates in this range to window depth coordinates. Regardless of the actual depth buffer implementation, window coordinate depth values are treated as though they range from 0 through 1 (like color components). Thus, the values accepted by <seemfa marker="gl#depthRange/2"><c>gl:depthRange/2</c></seemfa> are both clamped to this range before they are accepted. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="depthRangeArrayv" arity="2" clause_i="1" since=""/>
    <fsummary>specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports</fsummary>
    <desc>
    <p> After clipping and division by <c>w</c>, depth coordinates range from  -1 to 1, corresponding to the near and far clipping planes. Each viewport has an independent depth range specified as a linear mapping of the normalized depth coordinates in this range to window depth coordinates. Regardless of the actual depth buffer implementation, window coordinate depth values are treated as though they range from 0 through 1 (like color components). <seemfa marker="gl#depthRangeArrayv/2"><c>gl:depthRangeArray()</c></seemfa> specifies a linear mapping of the normalized depth coordinates in this range to window depth coordinates for each viewport in the range [<c>First</c>, <c>First</c> + <c>Count</c>). Thus, the values accepted by <seemfa marker="gl#depthRangeArrayv/2"><c>gl:depthRangeArray()</c></seemfa> are both clamped to this range before they are accepted. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthRangeArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="depthRangeIndexed" arity="3" clause_i="1" since=""/>
    <fsummary>specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport</fsummary>
    <desc>
    <p> After clipping and division by <c>w</c>, depth coordinates range from  -1 to 1, corresponding to the near and far clipping planes. Each viewport has an independent depth range specified as a linear mapping of the normalized depth coordinates in this range to window depth coordinates. Regardless of the actual depth buffer implementation, window coordinate depth values are treated as though they range from 0 through 1 (like color components). <seemfa marker="gl#depthRangeIndexed/3"><c>gl:depthRangeIndexed/3</c></seemfa> specifies a linear mapping of the normalized depth coordinates in this range to window depth coordinates for a specified viewport. Thus, the values accepted by <seemfa marker="gl#depthRangeIndexed/3"><c>gl:depthRangeIndexed/3</c></seemfa> are both clamped to this range before they are accepted. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthRangeIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="detachShader" arity="2" clause_i="1" since=""/>
    <fsummary>Detaches a shader object from a program object to which it is attached</fsummary>
    <desc>
    <p><seemfa marker="gl#detachShader/2"><c>gl:detachShader/2</c></seemfa> detaches the shader object specified by <c>Shader</c> from the program object specified by <c>Program</c>. This command can be used to undo the effect of the command <seemfa marker="gl#attachShader/2"><c>gl:attachShader/2</c></seemfa>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDetachShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="dispatchCompute" arity="3" clause_i="1" since=""/>
    <fsummary>launch one or more compute work groups</fsummary>
    <desc>
    <p><seemfa marker="gl#dispatchCompute/3"><c>gl:dispatchCompute/3</c></seemfa> launches one or more compute work groups. Each work group is processed by the active program object for the compute shader stage. While the individual shader invocations within a work group are executed as a unit, work groups are executed completely independently and in unspecified order. <c>Num_groups_x</c>, <c>Num_groups_y</c> and <c>Num_groups_z</c> specify the number of local work groups that will be dispatched in the X, Y and Z dimensions, respectively. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDispatchCompute.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="dispatchComputeIndirect" arity="1" clause_i="1" since=""/>
    <fsummary>launch one or more compute work groups using parameters stored in a buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#dispatchComputeIndirect/1"><c>gl:dispatchComputeIndirect/1</c></seemfa> launches one or more compute work groups using parameters stored in the buffer object currently bound to the <c>?GL_DISPATCH_INDIRECT_BUFFER</c> target. Each work group is processed by the active program object for the compute shader stage. While the individual shader invocations within a work group are executed as a unit, work groups are executed completely independently and in unspecified order. <c>Indirect</c> contains the offset into the data store of the buffer object bound to the <c>?GL_DISPATCH_INDIRECT_BUFFER</c> target at which the parameters are stored. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDispatchComputeIndirect.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawArrays" arity="3" clause_i="1" since=""/>
    <fsummary>render primitives from array data</fsummary>
    <desc>
    <p><seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa> specifies multiple geometric primitives with very few subroutine calls. Instead of calling a GL procedure to pass each individual vertex, normal, texture coordinate, edge flag, or color, you can prespecify separate arrays of vertices, normals, and colors and use them to construct a sequence of primitives with a single call to <seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawArrays.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawArraysIndirect" arity="2" clause_i="1" since=""/>
    <fsummary>render primitives from array data, taking parameters from memory</fsummary>
    <desc>
    <p><seemfa marker="gl#drawArraysIndirect/2"><c>gl:drawArraysIndirect/2</c></seemfa> specifies multiple geometric primitives with very few subroutine calls. <seemfa marker="gl#drawArraysIndirect/2"><c>gl:drawArraysIndirect/2</c></seemfa> behaves similarly to <seemfa marker="gl#drawArraysInstancedBaseInstance/5"><c>gl:drawArraysInstancedBaseInstance/5</c></seemfa>, execept that the parameters to <seemfa marker="gl#drawArraysInstancedBaseInstance/5"><c>gl:drawArraysInstancedBaseInstance/5</c></seemfa> are stored in memory at the address given by <c>Indirect</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawArraysIndirect.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawArraysInstanced" arity="4" clause_i="1" since=""/>
    <fsummary>draw multiple instances of a range of elements</fsummary>
    <desc>
    <p><seemfa marker="gl#drawArraysInstanced/4"><c>gl:drawArraysInstanced/4</c></seemfa> behaves identically to <seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa> except that <c>Instancecount</c> instances of the range of elements are executed and the value of the internal counter <c>InstanceID</c> advances for each iteration. <c>InstanceID</c> is an internal 32-bit integer counter that may be read by a vertex shader as <c>?gl_InstanceID</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawArraysInstanced.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawArraysInstancedBaseInstance" arity="5" clause_i="1" since=""/>
    <fsummary>draw multiple instances of a range of elements with offset applied to instanced attributes</fsummary>
    <desc>
    <p><seemfa marker="gl#drawArraysInstancedBaseInstance/5"><c>gl:drawArraysInstancedBaseInstance/5</c></seemfa> behaves identically to <seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa> except that <c>Instancecount</c> instances of the range of elements are executed and the value of the internal counter <c>InstanceID</c> advances for each iteration. <c>InstanceID</c> is an internal 32-bit integer counter that may be read by a vertex shader as <c>?gl_InstanceID</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawArraysInstancedBaseInstance.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawBuffer" arity="1" clause_i="1" since=""/>
    <fsummary>specify which color buffers are to be drawn into</fsummary>
    <desc>
    <p>When colors are written to the frame buffer, they are written into the color buffers specified by <seemfa marker="gl#drawBuffer/1"><c>gl:drawBuffer/1</c></seemfa>. One of the following values can be used for default framebuffer:</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawBuffers" arity="1" clause_i="1" since=""/>
    <fsummary>Specifies a list of color buffers to be drawn into</fsummary>
    <desc>
    <p><seemfa marker="gl#drawBuffers/1"><c>gl:drawBuffers/1</c></seemfa> and <c>glNamedFramebufferDrawBuffers</c> define an array of buffers into which outputs from the fragment shader data will be written. If a fragment shader writes a value to one or more user defined output variables, then the value of each variable will be written into the buffer specified at a location within <c>Bufs</c> corresponding to the location assigned to that user defined output. The draw buffer used for user defined outputs assigned to locations greater than or equal to <c>N</c> is implicitly set to <c>?GL_NONE</c> and any data written to such an output is discarded.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawBuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElements" arity="4" clause_i="1" since=""/>
    <fsummary>render primitives from array data</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa> specifies multiple geometric primitives with very few subroutine calls. Instead of calling a GL function to pass each individual vertex, normal, texture coordinate, edge flag, or color, you can prespecify separate arrays of vertices, normals, and so on, and use them to construct a sequence of primitives with a single call to <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElements.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsBaseVertex" arity="5" clause_i="1" since=""/>
    <fsummary>render primitives from array data with a per-element offset</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsBaseVertex/5"><c>gl:drawElementsBaseVertex/5</c></seemfa> behaves identically to <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa> except that the <c>i</c>th element transferred by the corresponding draw call will be taken from element <c>Indices</c>[i] + <c>Basevertex</c> of each enabled array. If the resulting value is larger than the maximum value representable by <c>Type</c>, it is as if the calculation were upconverted to 32-bit unsigned integers (with wrapping on overflow conditions). The operation is undefined if the sum would be negative. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsBaseVertex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsIndirect" arity="3" clause_i="1" since=""/>
    <fsummary>render indexed primitives from array data, taking parameters from memory</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsIndirect/3"><c>gl:drawElementsIndirect/3</c></seemfa> specifies multiple indexed geometric primitives with very few subroutine calls. <seemfa marker="gl#drawElementsIndirect/3"><c>gl:drawElementsIndirect/3</c></seemfa> behaves similarly to <seemfa marker="gl#drawElementsInstancedBaseVertexBaseInstance/7"><c>gl:drawElementsInstancedBaseVertexBaseInstance/7</c></seemfa>, execpt that the parameters to <seemfa marker="gl#drawElementsInstancedBaseVertexBaseInstance/7"><c>gl:drawElementsInstancedBaseVertexBaseInstance/7</c></seemfa> are stored in memory at the address given by <c>Indirect</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsIndirect.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsInstanced" arity="5" clause_i="1" since=""/>
    <fsummary>draw multiple instances of a set of elements</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsInstanced/5"><c>gl:drawElementsInstanced/5</c></seemfa> behaves identically to <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa> except that <c>Instancecount</c> instances of the set of elements are executed and the value of the internal counter <c>InstanceID</c> advances for each iteration. <c>InstanceID</c> is an internal 32-bit integer counter that may be read by a vertex shader as <c>?gl_InstanceID</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsInstanced.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsInstancedBaseInstance" arity="6" clause_i="1" since=""/>
    <fsummary>draw multiple instances of a set of elements with offset applied to instanced attributes</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsInstancedBaseInstance/6"><c>gl:drawElementsInstancedBaseInstance/6</c></seemfa> behaves identically to <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa> except that <c>Instancecount</c> instances of the set of elements are executed and the value of the internal counter <c>InstanceID</c> advances for each iteration. <c>InstanceID</c> is an internal 32-bit integer counter that may be read by a vertex shader as <c>?gl_InstanceID</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsInstancedBaseInstance.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsInstancedBaseVertex" arity="6" clause_i="1" since=""/>
    <fsummary>render multiple instances of a set of primitives from array data with a per-element offset</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsInstancedBaseVertex/6"><c>gl:drawElementsInstancedBaseVertex/6</c></seemfa> behaves identically to <seemfa marker="gl#drawElementsInstanced/5"><c>gl:drawElementsInstanced/5</c></seemfa> except that the <c>i</c>th element transferred by the corresponding draw call will be taken from element <c>Indices</c>[i] + <c>Basevertex</c> of each enabled array. If the resulting value is larger than the maximum value representable by <c>Type</c>, it is as if the calculation were upconverted to 32-bit unsigned integers (with wrapping on overflow conditions). The operation is undefined if the sum would be negative. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsInstancedBaseVertex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawElementsInstancedBaseVertexBaseInstance" arity="7" clause_i="1" since=""/>
    <fsummary>render multiple instances of a set of primitives from array data with a per-element offset</fsummary>
    <desc>
    <p><seemfa marker="gl#drawElementsInstancedBaseVertexBaseInstance/7"><c>gl:drawElementsInstancedBaseVertexBaseInstance/7</c></seemfa> behaves identically to <seemfa marker="gl#drawElementsInstanced/5"><c>gl:drawElementsInstanced/5</c></seemfa> except that the <c>i</c>th element transferred by the corresponding draw call will be taken from element <c>Indices</c>[i] + <c>Basevertex</c> of each enabled array. If the resulting value is larger than the maximum value representable by <c>Type</c>, it is as if the calculation were upconverted to 32-bit unsigned integers (with wrapping on overflow conditions). The operation is undefined if the sum would be negative. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawElementsInstancedBaseVertexBaseInstance.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawPixels" arity="5" clause_i="1" since=""/>
    <fsummary>write a block of pixels to the frame buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa> reads pixel data from memory and writes it into the frame buffer relative to the current raster position, provided that the raster position is valid. Use <seemfa marker="gl#rasterPos2d/2"><c>gl:rasterPos()</c></seemfa> or <seemfa marker="gl#windowPos2d/2"><c>gl:windowPos()</c></seemfa> to set the current raster position; use <seemfa marker="gl#getBooleanv/1"><c>gl:get()</c></seemfa> with argument <c>?GL_CURRENT_RASTER_POSITION_VALID</c> to determine if the specified raster position is valid, and <seemfa marker="gl#getBooleanv/1"><c>gl:get()</c></seemfa> with argument <c>?GL_CURRENT_RASTER_POSITION</c> to query the raster position. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glDrawPixels.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawRangeElements" arity="6" clause_i="1" since=""/>
    <fsummary>render primitives from array data</fsummary>
    <desc>
    <p><seemfa marker="gl#drawRangeElements/6"><c>gl:drawRangeElements/6</c></seemfa> is a restricted form of <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa>. <c>Mode</c>, and <c>Count</c> match the corresponding arguments to <seemfa marker="gl#drawElements/4"><c>gl:drawElements/4</c></seemfa>, with the additional constraint that all values in the arrays <c>Count</c> must lie between <c>Start</c> and <c>End</c>, inclusive. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawRangeElements.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawRangeElementsBaseVertex" arity="7" clause_i="1" since=""/>
    <fsummary>render primitives from array data with a per-element offset</fsummary>
    <desc>
    <p><seemfa marker="gl#drawRangeElementsBaseVertex/7"><c>gl:drawRangeElementsBaseVertex/7</c></seemfa> is a restricted form of <seemfa marker="gl#drawElementsBaseVertex/5"><c>gl:drawElementsBaseVertex/5</c></seemfa>. <c>Mode</c>, <c>Count</c> and <c>Basevertex</c> match the corresponding arguments to <seemfa marker="gl#drawElementsBaseVertex/5"><c>gl:drawElementsBaseVertex/5</c></seemfa>, with the additional constraint that all values in the array <c>Indices</c> must lie between <c>Start</c> and <c>End</c>, inclusive, prior to adding <c>Basevertex</c>. Index values lying outside the range [<c>Start</c>, <c>End</c>] are treated in the same way as <seemfa marker="gl#drawElementsBaseVertex/5"><c>gl:drawElementsBaseVertex/5</c></seemfa>. The <c>i</c>th element transferred by the corresponding draw call will be taken from element <c>Indices</c>[i] + <c>Basevertex</c> of each enabled array. If the resulting value is larger than the maximum value representable by <c>Type</c>, it is as if the calculation were upconverted to 32-bit unsigned integers (with wrapping on overflow conditions). The operation is undefined if the sum would be negative. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawRangeElementsBaseVertex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawTransformFeedback" arity="2" clause_i="1" since=""/>
    <fsummary>render primitives using a count derived from a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#drawTransformFeedback/2"><c>gl:drawTransformFeedback/2</c></seemfa> draws primitives of a type specified by <c>Mode</c> using a count retrieved from the transform feedback specified by <c>Id</c>. Calling <seemfa marker="gl#drawTransformFeedback/2"><c>gl:drawTransformFeedback/2</c></seemfa> is equivalent to calling <seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa> with <c>Mode</c> as specified, <c>First</c> set to zero, and <c>Count</c> set to the number of vertices captured on vertex stream zero the last time transform feedback was active on the transform feedback object named by <c>Id</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawTransformFeedbackInstanced" arity="3" clause_i="1" since=""/>
    <fsummary>render multiple instances of primitives using a count derived from a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#drawTransformFeedbackInstanced/3"><c>gl:drawTransformFeedbackInstanced/3</c></seemfa> draws multiple copies of a range of primitives of a type specified by <c>Mode</c> using a count retrieved from the transform feedback stream specified by <c>Stream</c> of the transform feedback object specified by <c>Id</c>. Calling <seemfa marker="gl#drawTransformFeedbackInstanced/3"><c>gl:drawTransformFeedbackInstanced/3</c></seemfa> is equivalent to calling <seemfa marker="gl#drawArraysInstanced/4"><c>gl:drawArraysInstanced/4</c></seemfa> with <c>Mode</c> and <c>Instancecount</c> as specified, <c>First</c> set to zero, and <c>Count</c> set to the number of vertices captured on vertex stream zero the last time transform feedback was active on the transform feedback object named by <c>Id</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackInstanced.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawTransformFeedbackStream" arity="3" clause_i="1" since=""/>
    <fsummary>render primitives using a count derived from a specifed stream of a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#drawTransformFeedbackStream/3"><c>gl:drawTransformFeedbackStream/3</c></seemfa> draws primitives of a type specified by <c>Mode</c> using a count retrieved from the transform feedback stream specified by <c>Stream</c> of the transform feedback object specified by <c>Id</c>. Calling <seemfa marker="gl#drawTransformFeedbackStream/3"><c>gl:drawTransformFeedbackStream/3</c></seemfa> is equivalent to calling <seemfa marker="gl#drawArrays/3"><c>gl:drawArrays/3</c></seemfa> with <c>Mode</c> as specified, <c>First</c> set to zero, and <c>Count</c> set to the number of vertices captured on vertex stream <c>Stream</c> the last time transform feedback was active on the transform feedback object named by <c>Id</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackStream.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="drawTransformFeedbackStreamInstanced" arity="4" clause_i="1" since=""/>
    <fsummary>render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#drawTransformFeedbackStreamInstanced/4"><c>gl:drawTransformFeedbackStreamInstanced/4</c></seemfa> draws multiple copies of a range of primitives of a type specified by <c>Mode</c> using a count retrieved from the transform feedback stream specified by <c>Stream</c> of the transform feedback object specified by <c>Id</c>. Calling <seemfa marker="gl#drawTransformFeedbackStreamInstanced/4"><c>gl:drawTransformFeedbackStreamInstanced/4</c></seemfa> is equivalent to calling <seemfa marker="gl#drawArraysInstanced/4"><c>gl:drawArraysInstanced/4</c></seemfa> with <c>Mode</c> and <c>Instancecount</c> as specified, <c>First</c> set to zero, and <c>Count</c> set to the number of vertices captured on vertex stream <c>Stream</c> the last time transform feedback was active on the transform feedback object named by <c>Id</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackStreamInstanced.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="edgeFlag" arity="1" clause_i="1" since=""/>
    <name name="edgeFlagv" arity="1" clause_i="1" since=""/>
    <fsummary>flag edges as either boundary or nonboundary</fsummary>
    <desc>
    <p> Each vertex of a polygon, separate triangle, or separate quadrilateral specified between a <seemfa marker="gl#'begin'/1"><c>gl:'begin'/1</c></seemfa>/<seemfa marker="gl#'begin'/1"><c>gl:'end'/0</c></seemfa> pair is marked as the start of either a boundary or nonboundary edge. If the current edge flag is true when the vertex is specified, the vertex is marked as the start of a boundary edge. Otherwise, the vertex is marked as the start of a nonboundary edge. <seemfa marker="gl#edgeFlag/1"><c>gl:edgeFlag/1</c></seemfa> sets the edge flag bit to <c>?GL_TRUE</c> if <c>Flag</c> is <c>?GL_TRUE</c> and to <c>?GL_FALSE</c> otherwise. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEdgeFlag.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="edgeFlagPointer" arity="2" clause_i="1" since=""/>
    <fsummary>define an array of edge flags</fsummary>
    <desc>
    <p><seemfa marker="gl#edgeFlagPointer/2"><c>gl:edgeFlagPointer/2</c></seemfa> specifies the location and data format of an array of boolean edge flags to use when rendering. <c>Stride</c> specifies the byte stride from one edge flag to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEdgeFlagPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="disable" arity="1" clause_i="1" since=""/>
    <name name="disablei" arity="2" clause_i="1" since=""/>
    <name name="enable" arity="1" clause_i="1" since=""/>
    <name name="enablei" arity="2" clause_i="1" since=""/>
    <fsummary>enable or disable server-side GL capabilities</fsummary>
    <desc>
    <p><seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> enable and disable various capabilities. Use <seemfa marker="gl#isEnabled/1"><c>gl:isEnabled/1</c></seemfa> or <seemfa marker="gl#getBooleanv/1"><c>gl:get()</c></seemfa> to determine the current setting of any capability. The initial value for each capability with the exception of <c>?GL_DITHER</c> and <c>?GL_MULTISAMPLE</c> is <c>?GL_FALSE</c>. The initial value for <c>?GL_DITHER</c> and <c>?GL_MULTISAMPLE</c> is <c>?GL_TRUE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="disableClientState" arity="1" clause_i="1" since=""/>
    <name name="enableClientState" arity="1" clause_i="1" since=""/>
    <fsummary>enable or disable client-side capability</fsummary>
    <desc>
    <p><seemfa marker="gl#enableClientState/1"><c>gl:enableClientState/1</c></seemfa> and <seemfa marker="gl#enableClientState/1"><c>gl:disableClientState/1</c></seemfa> enable or disable individual client-side capabilities. By default, all client-side capabilities are disabled. Both <seemfa marker="gl#enableClientState/1"><c>gl:enableClientState/1</c></seemfa> and <seemfa marker="gl#enableClientState/1"><c>gl:disableClientState/1</c></seemfa> take a single argument, <c>Cap</c>, which can assume one of the following values: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEnableClientState.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="disableVertexArrayAttrib" arity="2" clause_i="1" since=""/>
    <name name="disableVertexAttribArray" arity="1" clause_i="1" since=""/>
    <name name="enableVertexArrayAttrib" arity="2" clause_i="1" since=""/>
    <name name="enableVertexAttribArray" arity="1" clause_i="1" since=""/>
    <fsummary>Enable or disable a generic vertex attribute array</fsummary>
    <desc>
    <p><seemfa marker="gl#enableVertexAttribArray/1"><c>gl:enableVertexAttribArray/1</c></seemfa> and <seemfa marker="gl#disableVertexAttribArray/1"><c>gl:enableVertexArrayAttrib/2</c></seemfa> enable the generic vertex attribute array specified by <c>Index</c>. <seemfa marker="gl#enableVertexAttribArray/1"><c>gl:enableVertexAttribArray/1</c></seemfa> uses currently bound vertex array object for the operation, whereas <seemfa marker="gl#disableVertexAttribArray/1"><c>gl:enableVertexArrayAttrib/2</c></seemfa> updates state of the vertex array object with ID <c>Vaobj</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glEnableVertexAttribArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="evalCoord1d" arity="1" clause_i="1" since=""/>
    <name name="evalCoord1dv" arity="1" clause_i="1" since=""/>
    <name name="evalCoord1f" arity="1" clause_i="1" since=""/>
    <name name="evalCoord1fv" arity="1" clause_i="1" since=""/>
    <name name="evalCoord2d" arity="2" clause_i="1" since=""/>
    <name name="evalCoord2dv" arity="1" clause_i="1" since=""/>
    <name name="evalCoord2f" arity="2" clause_i="1" since=""/>
    <name name="evalCoord2fv" arity="1" clause_i="1" since=""/>
    <fsummary>evaluate enabled one- and two-dimensional maps</fsummary>
    <desc>
    <p><seemfa marker="gl#evalCoord1d/1"><c>gl:evalCoord1()</c></seemfa> evaluates enabled one-dimensional maps at argument <c>U</c>. <seemfa marker="gl#evalCoord1d/1"><c>gl:evalCoord2()</c></seemfa> does the same for two-dimensional maps using two domain values, <c>U</c> and <c>V</c>. To define a map, call <c>glMap1</c> and <c>glMap2</c>; to enable and disable it, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEvalCoord.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="evalMesh1" arity="3" clause_i="1" since=""/>
    <name name="evalMesh2" arity="5" clause_i="1" since=""/>
    <fsummary>compute a one- or two-dimensional grid of points or lines</fsummary>
    <desc>
    <p><seemfa marker="gl#mapGrid1d/3"><c>gl:mapGrid()</c></seemfa> and <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa> are used in tandem to efficiently generate and evaluate a series of evenly-spaced map domain values. <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa> steps through the integer domain of a one- or two-dimensional grid, whose range is the domain of the evaluation maps specified by <c>glMap1</c> and <c>glMap2</c>. <c>Mode</c> determines whether the resulting vertices are connected as points, lines, or filled polygons. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEvalMesh.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="evalPoint1" arity="1" clause_i="1" since=""/>
    <name name="evalPoint2" arity="2" clause_i="1" since=""/>
    <fsummary>generate and evaluate a single point in a mesh</fsummary>
    <desc>
    <p><seemfa marker="gl#mapGrid1d/3"><c>gl:mapGrid()</c></seemfa> and <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa> are used in tandem to efficiently generate and evaluate a series of evenly spaced map domain values. <seemfa marker="gl#evalPoint1/1"><c>gl:evalPoint()</c></seemfa> can be used to evaluate a single grid point in the same gridspace that is traversed by <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa>. Calling <seemfa marker="gl#evalPoint1/1"><c>gl:evalPoint1/1</c></seemfa> is equivalent to calling  glEvalCoord1(  i.ð u+u 1 );  where ð u=(u 2-u 1)/n</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glEvalPoint.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="feedbackBuffer" arity="3" clause_i="1" since=""/>
    <fsummary>controls feedback mode</fsummary>
    <desc>
    <p> The <seemfa marker="gl#feedbackBuffer/3"><c>gl:feedbackBuffer/3</c></seemfa> function controls feedback. Feedback, like selection, is a GL mode. The mode is selected by calling <seemfa marker="gl#renderMode/1"><c>gl:renderMode/1</c></seemfa> with <c>?GL_FEEDBACK</c>. When the GL is in feedback mode, no pixels are produced by rasterization. Instead, information about primitives that would have been rasterized is fed back to the application using the GL. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFeedbackBuffer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="fenceSync" arity="2" clause_i="1" since=""/>
    <fsummary>create a new sync object and insert it into the GL command stream</fsummary>
    <desc>
    <p><seemfa marker="gl#fenceSync/2"><c>gl:fenceSync/2</c></seemfa> creates a new fence sync object, inserts a fence command into the GL command stream and associates it with that sync object, and returns a non-zero name corresponding to the sync object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFenceSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="finish" arity="0" clause_i="1" since=""/>
    <fsummary>block until all GL execution is complete</fsummary>
    <desc>
    <p><seemfa marker="gl#finish/0"><c>gl:finish/0</c></seemfa> does not return until the effects of all previously called GL commands are complete. Such effects include all changes to GL state, all changes to connection state, and all changes to the frame buffer contents. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFinish.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="flush" arity="0" clause_i="1" since=""/>
    <fsummary>force execution of GL commands in finite time</fsummary>
    <desc>
    <p> Different GL implementations buffer commands in several different locations, including network buffers and the graphics accelerator itself. <seemfa marker="gl#flush/0"><c>gl:flush/0</c></seemfa> empties all of these buffers, causing all issued commands to be executed as quickly as they are accepted by the actual rendering engine. Though this execution may not be completed in any particular time period, it does complete in finite time. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFlush.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="flushMappedBufferRange" arity="3" clause_i="1" since=""/>
    <name name="flushMappedNamedBufferRange" arity="3" clause_i="1" since=""/>
    <fsummary>indicate modifications to a range of a mapped buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#flushMappedBufferRange/3"><c>gl:flushMappedBufferRange/3</c></seemfa> indicates that modifications have been made to a range of a mapped buffer object. The buffer object must previously have been mapped with the <c>?GL_MAP_FLUSH_EXPLICIT_BIT</c> flag. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFlushMappedBufferRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="fogf" arity="2" clause_i="1" since=""/>
    <name name="fogfv" arity="2" clause_i="1" since=""/>
    <name name="fogi" arity="2" clause_i="1" since=""/>
    <name name="fogiv" arity="2" clause_i="1" since=""/>
    <fsummary>specify fog parameters</fsummary>
    <desc>
    <p> Fog is initially disabled. While enabled, fog affects rasterized geometry, bitmaps, and pixel blocks, but not buffer clear operations. To enable and disable fog, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_FOG</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFog.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="fogCoordd" arity="1" clause_i="1" since=""/>
    <name name="fogCoorddv" arity="1" clause_i="1" since=""/>
    <name name="fogCoordf" arity="1" clause_i="1" since=""/>
    <name name="fogCoordfv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current fog coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#fogCoordf/1"><c>gl:fogCoord()</c></seemfa> specifies the fog coordinate that is associated with each vertex and the current raster position. The value specified is interpolated and used in computing the fog color (see <seemfa marker="gl#fogf/2"><c>gl:fog()</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFogCoord.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="fogCoordPointer" arity="3" clause_i="1" since=""/>
    <fsummary>define an array of fog coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#fogCoordPointer/3"><c>gl:fogCoordPointer/3</c></seemfa> specifies the location and data format of an array of fog coordinates to use when rendering. <c>Type</c> specifies the data type of each fog coordinate, and <c>Stride</c> specifies the byte stride from one fog coordinate to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFogCoordPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="framebufferParameteri" arity="3" clause_i="1" since=""/>
    <fsummary>set a named parameter of a framebuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#framebufferParameteri/3"><c>gl:framebufferParameteri/3</c></seemfa> and <c>glNamedFramebufferParameteri</c> modify the value of the parameter named <c>Pname</c> in the specified framebuffer object. There are no modifiable parameters of the default draw and read framebuffer, so they are not valid targets of these commands. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFramebufferParameteri.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="framebufferRenderbuffer" arity="4" clause_i="1" since=""/>
    <fsummary>attach a renderbuffer as a logical buffer of a framebuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#framebufferRenderbuffer/4"><c>gl:framebufferRenderbuffer/4</c></seemfa> and <c>glNamedFramebufferRenderbuffer</c> attaches a renderbuffer as one of the logical buffers of the specified framebuffer object. Renderbuffers cannot be attached to the default draw and read framebuffer, so they are not valid targets of these commands. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFramebufferRenderbuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="framebufferTexture" arity="4" clause_i="1" since=""/>
    <name name="framebufferTexture1D" arity="5" clause_i="1" since=""/>
    <name name="framebufferTexture2D" arity="5" clause_i="1" since=""/>
    <name name="framebufferTexture3D" arity="6" clause_i="1" since=""/>
    <name name="framebufferTextureFaceARB" arity="5" clause_i="1" since=""/>
    <name name="framebufferTextureLayer" arity="5" clause_i="1" since=""/>
    <fsummary>attach a level of a texture object as a logical buffer of a framebuffer object</fsummary>
    <desc>
    <p> These commands attach a selected mipmap level or image of a texture object as one of the logical buffers of the specified framebuffer object. Textures cannot be attached to the default draw and read framebuffer, so they are not valid targets of these commands. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFramebufferTexture.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="frontFace" arity="1" clause_i="1" since=""/>
    <fsummary>define front- and back-facing polygons</fsummary>
    <desc>
    <p> In a scene composed entirely of opaque closed surfaces, back-facing polygons are never visible. Eliminating these invisible polygons has the obvious benefit of speeding up the rendering of the image. To enable and disable elimination of back-facing polygons, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_CULL_FACE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFrontFace.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="frustum" arity="6" clause_i="1" since=""/>
    <fsummary>multiply the current matrix by a perspective matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#frustum/6"><c>gl:frustum/6</c></seemfa> describes a perspective matrix that produces a perspective projection. The current matrix (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>) is multiplied by this matrix and the result replaces the current matrix, as if <seemfa marker="gl#multMatrixd/1"><c>gl:multMatrix()</c></seemfa> were called with the following matrix as its argument: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFrustum.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genBuffers" arity="1" clause_i="1" since=""/>
    <fsummary>generate buffer object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genBuffers/1"><c>gl:genBuffers/1</c></seemfa> returns <c>N</c> buffer object names in <c>Buffers</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genBuffers/1"><c>gl:genBuffers/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenBuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genFramebuffers" arity="1" clause_i="1" since=""/>
    <fsummary>generate framebuffer object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genFramebuffers/1"><c>gl:genFramebuffers/1</c></seemfa> returns <c>N</c> framebuffer object names in <c>Ids</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genFramebuffers/1"><c>gl:genFramebuffers/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenFramebuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genLists" arity="1" clause_i="1" since=""/>
    <fsummary>generate a contiguous set of empty display lists</fsummary>
    <desc>
    <p><seemfa marker="gl#genLists/1"><c>gl:genLists/1</c></seemfa> has one argument, <c>Range</c>. It returns an integer <c>n</c> such that <c>Range</c> contiguous empty display lists, named   n,   n+1,   ...,   n+range-1, are created. If <c>Range</c> is 0, if there is no group of <c>Range</c> contiguous names available, or if any error is generated, no display lists are generated, and 0 is returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGenLists.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genProgramPipelines" arity="1" clause_i="1" since=""/>
    <fsummary>reserve program pipeline object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genProgramPipelines/1"><c>gl:genProgramPipelines/1</c></seemfa> returns <c>N</c> previously unused program pipeline object names in <c>Pipelines</c>. These names are marked as used, for the purposes of <seemfa marker="gl#genProgramPipelines/1"><c>gl:genProgramPipelines/1</c></seemfa> only, but they acquire program pipeline state only when they are first bound. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenProgramPipelines.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genQueries" arity="1" clause_i="1" since=""/>
    <fsummary>generate query object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa> returns <c>N</c> query object names in <c>Ids</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genQueries/1"><c>gl:genQueries/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenQueries.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genRenderbuffers" arity="1" clause_i="1" since=""/>
    <fsummary>generate renderbuffer object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genRenderbuffers/1"><c>gl:genRenderbuffers/1</c></seemfa> returns <c>N</c> renderbuffer object names in <c>Renderbuffers</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genRenderbuffers/1"><c>gl:genRenderbuffers/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenRenderbuffers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genSamplers" arity="1" clause_i="1" since=""/>
    <fsummary>generate sampler object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genSamplers/1"><c>gl:genSamplers/1</c></seemfa> returns <c>N</c> sampler object names in <c>Samplers</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genSamplers/1"><c>gl:genSamplers/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenSamplers.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genTextures" arity="1" clause_i="1" since=""/>
    <fsummary>generate texture names</fsummary>
    <desc>
    <p><seemfa marker="gl#genTextures/1"><c>gl:genTextures/1</c></seemfa> returns <c>N</c> texture names in <c>Textures</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genTextures/1"><c>gl:genTextures/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenTextures.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genTransformFeedbacks" arity="1" clause_i="1" since=""/>
    <fsummary>reserve transform feedback object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genTransformFeedbacks/1"><c>gl:genTransformFeedbacks/1</c></seemfa> returns <c>N</c> previously unused transform feedback object names in <c>Ids</c>. These names are marked as used, for the purposes of <seemfa marker="gl#genTransformFeedbacks/1"><c>gl:genTransformFeedbacks/1</c></seemfa> only, but they acquire transform feedback state only when they are first bound. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenTransformFeedbacks.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="genVertexArrays" arity="1" clause_i="1" since=""/>
    <fsummary>generate vertex array object names</fsummary>
    <desc>
    <p><seemfa marker="gl#genVertexArrays/1"><c>gl:genVertexArrays/1</c></seemfa> returns <c>N</c> vertex array object names in <c>Arrays</c>. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to <seemfa marker="gl#genVertexArrays/1"><c>gl:genVertexArrays/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenVertexArrays.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="generateMipmap" arity="1" clause_i="1" since=""/>
    <name name="generateTextureMipmap" arity="1" clause_i="1" since=""/>
    <fsummary>generate mipmaps for a specified texture object</fsummary>
    <desc>
    <p><seemfa marker="gl#generateMipmap/1"><c>gl:generateMipmap/1</c></seemfa> and <seemfa marker="gl#generateMipmap/1"><c>gl:generateTextureMipmap/1</c></seemfa> generates mipmaps for the specified texture object. For <seemfa marker="gl#generateMipmap/1"><c>gl:generateMipmap/1</c></seemfa>, the texture object that is bound to <c>Target</c>. For <seemfa marker="gl#generateMipmap/1"><c>gl:generateTextureMipmap/1</c></seemfa>, <c>Texture</c> is the name of the texture object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGenerateMipmap.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getBooleani_v" arity="2" clause_i="1" since=""/>
    <name name="getBooleanv" arity="1" clause_i="1" since=""/>
    <name name="getDoublei_v" arity="2" clause_i="1" since=""/>
    <name name="getDoublev" arity="1" clause_i="1" since=""/>
    <name name="getFloati_v" arity="2" clause_i="1" since=""/>
    <name name="getFloatv" arity="1" clause_i="1" since=""/>
    <name name="getInteger64i_v" arity="2" clause_i="1" since=""/>
    <name name="getInteger64v" arity="1" clause_i="1" since=""/>
    <name name="getIntegeri_v" arity="2" clause_i="1" since=""/>
    <name name="getIntegerv" arity="1" clause_i="1" since=""/>
    <fsummary>return the value or values of a selected parameter</fsummary>
    <desc>
    <p> These commands return values for simple state variables in GL. <c>Pname</c> is a symbolic constant indicating the state variable to be returned, and <c>Data</c> is a pointer to an array of the indicated type in which to place the returned data. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGet.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveAttrib" arity="3" clause_i="1" since=""/>
    <fsummary>Returns information about an active attribute variable for the specified program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveAttrib/3"><c>gl:getActiveAttrib/3</c></seemfa> returns information about an active attribute variable in the program object specified by <c>Program</c>. The number of active attributes can be obtained by calling <seemfa marker="gl#getProgramiv/2"><c>gl:getProgram()</c></seemfa> with the value <c>?GL_ACTIVE_ATTRIBUTES</c>. A value of 0 for <c>Index</c> selects the first active attribute variable. Permissible values for <c>Index</c> range from zero to the number of active attribute variables minus one.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveAttrib.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveSubroutineName" arity="4" clause_i="1" since=""/>
    <fsummary>query the name of an active shader subroutine</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveSubroutineName/4"><c>gl:getActiveSubroutineName/4</c></seemfa> queries the name of an active shader subroutine uniform from the program object given in <c>Program</c>. <c>Index</c> specifies the index of the shader subroutine uniform within the shader stage given by <c>Stage</c>, and must between zero and the value of <c>?GL_ACTIVE_SUBROUTINES</c> minus one for the shader stage. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveSubroutineName.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveSubroutineUniformName" arity="4" clause_i="1" since=""/>
    <fsummary>query the name of an active shader subroutine uniform</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveSubroutineUniformName/4"><c>gl:getActiveSubroutineUniformName/4</c></seemfa> retrieves the name of an active shader subroutine uniform. <c>Program</c> contains the name of the program containing the uniform. <c>Shadertype</c> specifies the stage for which the uniform location, given by <c>Index</c>, is valid. <c>Index</c> must be between zero and the value of <c>?GL_ACTIVE_SUBROUTINE_UNIFORMS</c> minus one for the shader stage. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveSubroutineUniformName.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveUniform" arity="3" clause_i="1" since=""/>
    <fsummary>Returns information about an active uniform variable for the specified program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveUniform/3"><c>gl:getActiveUniform/3</c></seemfa> returns information about an active uniform variable in the program object specified by <c>Program</c>. The number of active uniform variables can be obtained by calling <seemfa marker="gl#getProgramiv/2"><c>gl:getProgram()</c></seemfa> with the value <c>?GL_ACTIVE_UNIFORMS</c>. A value of 0 for <c>Index</c> selects the first active uniform variable. Permissible values for <c>Index</c> range from zero to the number of active uniform variables minus one.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveUniform.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveUniformBlockiv" arity="4" clause_i="1" since=""/>
    <fsummary>query information about an active uniform block</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveUniformBlockiv/4"><c>gl:getActiveUniformBlockiv/4</c></seemfa> retrieves information about an active uniform block within <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveUniformBlock.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveUniformBlockName" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve the name of an active uniform block</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveUniformBlockName/3"><c>gl:getActiveUniformBlockName/3</c></seemfa> retrieves the name of the active uniform block at <c>UniformBlockIndex</c> within <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveUniformBlockName.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveUniformName" arity="3" clause_i="1" since=""/>
    <fsummary>query the name of an active uniform</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveUniformName/3"><c>gl:getActiveUniformName/3</c></seemfa> returns the name of the active uniform at <c>UniformIndex</c> within <c>Program</c>. If <c>UniformName</c> is not NULL, up to <c>BufSize</c> characters (including a nul-terminator) will be written into the array whose address is specified by <c>UniformName</c>. If <c>Length</c> is not NULL, the number of characters that were (or would have been) written into <c>UniformName</c> (not including the nul-terminator) will be placed in the variable whose address is specified in <c>Length</c>. If <c>Length</c> is NULL, no length is returned. The length of the longest uniform name in <c>Program</c> is given by the value of <c>?GL_ACTIVE_UNIFORM_MAX_LENGTH</c>, which can be queried with <seemfa marker="gl#getProgramiv/2"><c>gl:getProgram()</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveUniformName.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getActiveUniformsiv" arity="3" clause_i="1" since=""/>
    <fsummary>Returns information about several active uniform variables for the specified program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getActiveUniformsiv/3"><c>gl:getActiveUniformsiv/3</c></seemfa> queries the value of the parameter named <c>Pname</c> for each of the uniforms within <c>Program</c> whose indices are specified in the array of <c>UniformCount</c> unsigned integers <c>UniformIndices</c>. Upon success, the value of the parameter for each uniform is written into the corresponding entry in the array whose address is given in <c>Params</c>. If an error is generated, nothing is written into <c>Params</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetActiveUniformsiv.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getAttachedShaders" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the handles of the shader objects attached to a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getAttachedShaders/2"><c>gl:getAttachedShaders/2</c></seemfa> returns the names of the shader objects attached to <c>Program</c>. The names of shader objects that are attached to <c>Program</c> will be returned in <c>Shaders.</c> The actual number of shader names written into <c>Shaders</c> is returned in <c>Count.</c> If no shader objects are attached to <c>Program</c>, <c>Count</c> is set to 0. The maximum number of shader names that may be returned in <c>Shaders</c> is specified by <c>MaxCount</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetAttachedShaders.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getAttribLocation" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the location of an attribute variable</fsummary>
    <desc>
    <p><seemfa marker="gl#getAttribLocation/2"><c>gl:getAttribLocation/2</c></seemfa> queries the previously linked program object specified by <c>Program</c> for the attribute variable specified by <c>Name</c> and returns the index of the generic vertex attribute that is bound to that attribute variable. If <c>Name</c> is a matrix attribute variable, the index of the first column of the matrix is returned. If the named attribute variable is not an active attribute in the specified program object or if <c>Name</c> starts with the reserved prefix "gl_", a value of -1 is returned.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetAttribLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getBufferParameteri64v" arity="2" clause_i="1" since=""/>
    <name name="getBufferParameterivARB" arity="2" clause_i="1" since=""/>
    <fsummary>return parameters of a buffer object</fsummary>
    <desc>
    <p> These functions return in <c>Data</c> a selected parameter of the specified buffer object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetBufferParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getBufferParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>return parameters of a buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#getBufferParameteriv/2"><c>gl:getBufferParameteriv/2</c></seemfa> returns in <c>Data</c> a selected parameter of the buffer object specified by <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetBufferParameteriv.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getBufferSubData" arity="4" clause_i="1" since=""/>
    <fsummary>returns a subset of a buffer object's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#getBufferSubData/4"><c>gl:getBufferSubData/4</c></seemfa> and <c>glGetNamedBufferSubData</c> return some or all of the data contents of the data store of the specified buffer object. Data starting at byte offset <c>Offset</c> and extending for <c>Size</c> bytes is copied from the buffer object's data store to the memory pointed to by <c>Data</c>. An error is thrown if the buffer object is currently mapped, or if <c>Offset</c> and <c>Size</c> together define a range beyond the bounds of the buffer object's data store. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetBufferSubData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getClipPlane" arity="1" clause_i="1" since=""/>
    <fsummary>return the coefficients of the specified clipping plane</fsummary>
    <desc>
    <p><seemfa marker="gl#getClipPlane/1"><c>gl:getClipPlane/1</c></seemfa> returns in <c>Equation</c> the four coefficients of the plane equation for <c>Plane</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetClipPlane.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getColorTable" arity="4" clause_i="1" since=""/>
    <fsummary>retrieve contents of a color lookup table</fsummary>
    <desc>
    <p><seemfa marker="gl#getColorTable/4"><c>gl:getColorTable/4</c></seemfa> returns in <c>Table</c> the contents of the color table specified by <c>Target</c>. No pixel transfer operations are performed, but pixel storage modes that are applicable to <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa> are performed. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetColorTable.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getColorTableParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getColorTableParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>get color lookup table parameters</fsummary>
    <desc>
    <p> Returns parameters specific to color table <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetColorTableParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getCompressedTexImage" arity="3" clause_i="1" since=""/>
    <fsummary>return a compressed texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#getCompressedTexImage/3"><c>gl:getCompressedTexImage/3</c></seemfa> and <c>glGetnCompressedTexImage</c> return the compressed texture image associated with <c>Target</c> and <c>Lod</c> into <c>Pixels</c>. <c>glGetCompressedTextureImage</c> serves the same purpose, but instead of taking a texture target, it takes the ID of the texture object. <c>Pixels</c> should be an array of <c>BufSize</c> bytes for <c>glGetnCompresedTexImage</c> and <c>glGetCompressedTextureImage</c> functions, and of <c>?GL_TEXTURE_COMPRESSED_IMAGE_SIZE</c> bytes in case of <seemfa marker="gl#getCompressedTexImage/3"><c>gl:getCompressedTexImage/3</c></seemfa>. If the actual data takes less space than <c>BufSize</c>, the remaining bytes will not be touched. <c>Target</c> specifies the texture target, to which the texture the data the function should extract the data from is bound to. <c>Lod</c> specifies the level-of-detail number of the desired image.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetCompressedTexImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getConvolutionFilter" arity="4" clause_i="1" since=""/>
    <fsummary>get current 1D or 2D convolution filter kernel</fsummary>
    <desc>
    <p><seemfa marker="gl#getConvolutionFilter/4"><c>gl:getConvolutionFilter/4</c></seemfa> returns the current 1D or 2D convolution filter kernel as an image. The one- or two-dimensional image is placed in <c>Image</c> according to the specifications in <c>Format</c> and <c>Type</c>. No pixel transfer operations are performed on this image, but the relevant pixel storage modes are applied. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetConvolutionFilter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getConvolutionParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getConvolutionParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>get convolution parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getConvolutionParameterfv/2"><c>gl:getConvolutionParameter()</c></seemfa> retrieves convolution parameters. <c>Target</c> determines which convolution filter is queried. <c>Pname</c> determines which parameter is returned: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetConvolutionParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getDebugMessageLog" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve messages from the debug message log</fsummary>
    <desc>
    <p><seemfa marker="gl#getDebugMessageLog/2"><c>gl:getDebugMessageLog/2</c></seemfa> retrieves messages from the debug message log. A maximum of <c>Count</c> messages are retrieved from the log. If <c>Sources</c> is not NULL then the source of each message is written into up to <c>Count</c> elements of the array. If <c>Types</c> is not NULL then the type of each message is written into up to <c>Count</c> elements of the array. If <c>Id</c> is not NULL then the identifier of each message is written into up to <c>Count</c> elements of the array. If <c>Severities</c> is not NULL then the severity of each message is written into up to <c>Count</c> elements of the array. If <c>Lengths</c> is not NULL then the length of each message is written into up to <c>Count</c> elements of the array. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetDebugMessageLog.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getError" arity="0" clause_i="1" since=""/>
    <fsummary>return error information</fsummary>
    <desc>
    <p><seemfa marker="gl#getError/0"><c>gl:getError/0</c></seemfa> returns the value of the error flag. Each detectable error is assigned a numeric code and symbolic name. When an error occurs, the error flag is set to the appropriate error code value. No other errors are recorded until <seemfa marker="gl#getError/0"><c>gl:getError/0</c></seemfa> is called, the error code is returned, and the flag is reset to <c>?GL_NO_ERROR</c>. If a call to <seemfa marker="gl#getError/0"><c>gl:getError/0</c></seemfa> returns <c>?GL_NO_ERROR</c>, there has been no detectable error since the last call to <seemfa marker="gl#getError/0"><c>gl:getError/0</c></seemfa>, or since the GL was initialized. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetError.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getFragDataIndex" arity="2" clause_i="1" since=""/>
    <fsummary>query the bindings of color indices to user-defined varying out variables</fsummary>
    <desc>
    <p><seemfa marker="gl#getFragDataIndex/2"><c>gl:getFragDataIndex/2</c></seemfa> returns the index of the fragment color to which the variable <c>Name</c> was bound when the program object <c>Program</c> was last linked. If <c>Name</c> is not a varying out variable of <c>Program</c>, or if an error occurs, -1 will be returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetFragDataIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getFragDataLocation" arity="2" clause_i="1" since=""/>
    <fsummary>query the bindings of color numbers to user-defined varying out variables</fsummary>
    <desc>
    <p><seemfa marker="gl#getFragDataLocation/2"><c>gl:getFragDataLocation/2</c></seemfa> retrieves the assigned color number binding for the user-defined varying out variable <c>Name</c> for program <c>Program</c>. <c>Program</c> must have previously been linked. <c>Name</c> must be a null-terminated string. If <c>Name</c> is not the name of an active user-defined varying out fragment shader variable within <c>Program</c>, -1 will be returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetFragDataLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getFramebufferAttachmentParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve information about attachments of a framebuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#getFramebufferAttachmentParameteriv/3"><c>gl:getFramebufferAttachmentParameteriv/3</c></seemfa> and <c>glGetNamedFramebufferAttachmentParameteriv</c> return parameters of attachments of a specified framebuffer object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetFramebufferAttachmentParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getFramebufferParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>query a named parameter of a framebuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#getFramebufferParameteriv/2"><c>gl:getFramebufferParameteriv/2</c></seemfa> and <c>glGetNamedFramebufferParameteriv</c> query parameters of a specified framebuffer object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetFramebufferParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getGraphicsResetStatus" arity="0" clause_i="1" since=""/>
    <fsummary>check if the rendering context has not been lost due to software or hardware issues</fsummary>
    <desc>
    <p> Certain events can result in a reset of the GL context. Such a reset causes all context state to be lost and requires the application to recreate all objects in the affected context. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetGraphicsResetStatus.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getHistogram" arity="5" clause_i="1" since=""/>
    <fsummary>get histogram table</fsummary>
    <desc>
    <p><seemfa marker="gl#getHistogram/5"><c>gl:getHistogram/5</c></seemfa> returns the current histogram table as a one-dimensional image with the same width as the histogram. No pixel transfer operations are performed on this image, but pixel storage modes that are applicable to 1D images are honored. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetHistogram.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getHistogramParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getHistogramParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>get histogram parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getHistogramParameterfv/2"><c>gl:getHistogramParameter()</c></seemfa> is used to query parameter values for the current histogram or for a proxy. The histogram state information may be queried by calling <seemfa marker="gl#getHistogramParameterfv/2"><c>gl:getHistogramParameter()</c></seemfa> with a <c>Target</c> of <c>?GL_HISTOGRAM</c> (to obtain information for the current histogram table) or <c>?GL_PROXY_HISTOGRAM</c> (to obtain information from the most recent proxy request) and one of the following values for the <c>Pname</c> argument: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetHistogramParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getInternalformati64v" arity="4" clause_i="1" since=""/>
    <name name="getInternalformativ" arity="4" clause_i="1" since=""/>
    <fsummary/>
    <desc><p>No documentation available.</p></desc>
  </func>
  <func>
    <name name="getLightfv" arity="2" clause_i="1" since=""/>
    <name name="getLightiv" arity="2" clause_i="1" since=""/>
    <fsummary>return light source parameter values</fsummary>
    <desc>
    <p><seemfa marker="gl#getLightfv/2"><c>gl:getLight()</c></seemfa> returns in <c>Params</c> the value or values of a light source parameter. <c>Light</c> names the light and is a symbolic name of the form <c>?GL_LIGHT</c> i where i ranges from 0 to the value of <c>?GL_MAX_LIGHTS</c> - 1. <c>?GL_MAX_LIGHTS</c> is an implementation dependent constant that is greater than or equal to eight. <c>Pname</c> specifies one of ten light source parameters, again by symbolic name. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetLight.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getMapdv" arity="3" clause_i="1" since=""/>
    <name name="getMapfv" arity="3" clause_i="1" since=""/>
    <name name="getMapiv" arity="3" clause_i="1" since=""/>
    <fsummary>return evaluator parameters</fsummary>
    <desc>
    <p><c>glMap1</c> and <c>glMap2</c> define evaluators. <seemfa marker="gl#getMapdv/3"><c>gl:getMap()</c></seemfa> returns evaluator parameters. <c>Target</c> chooses a map, <c>Query</c> selects a specific parameter, and <c>V</c> points to storage where the values will be returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetMap.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getMaterialfv" arity="2" clause_i="1" since=""/>
    <name name="getMaterialiv" arity="2" clause_i="1" since=""/>
    <fsummary>return material parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getMaterialfv/2"><c>gl:getMaterial()</c></seemfa> returns in <c>Params</c> the value or values of parameter <c>Pname</c> of material <c>Face</c>. Six parameters are defined: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetMaterial.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getMinmax" arity="5" clause_i="1" since=""/>
    <fsummary>get minimum and maximum pixel values</fsummary>
    <desc>
    <p><seemfa marker="gl#getMinmax/5"><c>gl:getMinmax/5</c></seemfa> returns the accumulated minimum and maximum pixel values (computed on a per-component basis) in a one-dimensional image of width 2. The first set of return values are the minima, and the second set of return values are the maxima. The format of the return values is determined by <c>Format</c>, and their type is determined by <c>Types</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetMinmax.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getMinmaxParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getMinmaxParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>get minmax parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getMinmaxParameterfv/2"><c>gl:getMinmaxParameter()</c></seemfa> retrieves parameters for the current minmax table by setting <c>Pname</c> to one of the following values: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetMinmaxParameter.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getMultisamplefv" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the location of a sample</fsummary>
    <desc>
    <p><seemfa marker="gl#getMultisamplefv/2"><c>gl:getMultisamplefv/2</c></seemfa> queries the location of a given sample. <c>Pname</c> specifies the sample parameter to retrieve and must be <c>?GL_SAMPLE_POSITION</c>. <c>Index</c> corresponds to the sample for which the location should be returned. The sample location is returned as two floating-point values in <c>Val[0]</c> and <c>Val[1]</c>, each between 0 and 1, corresponding to the <c>X</c> and <c>Y</c> locations respectively in the GL pixel space of that sample. (0.5, 0.5) this corresponds to the pixel center. <c>Index</c> must be between zero and the value of <c>?GL_SAMPLES</c> minus one. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getPixelMapfv" arity="2" clause_i="1" since=""/>
    <name name="getPixelMapuiv" arity="2" clause_i="1" since=""/>
    <name name="getPixelMapusv" arity="2" clause_i="1" since=""/>
    <fsummary>return the specified pixel map</fsummary>
    <desc>
    <p> See the <seemfa marker="gl#pixelMapfv/3"><c>gl:pixelMap()</c></seemfa> reference page for a description of the acceptable values for the <c>Map</c> parameter. <seemfa marker="gl#getPixelMapfv/2"><c>gl:getPixelMap()</c></seemfa> returns in <c>Data</c> the contents of the pixel map specified in <c>Map</c>. Pixel maps are used during the execution of <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>, <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>, <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa>, <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa>, <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa>, <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>, <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>, <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>, <seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa>, <seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, <seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa>, and <seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa>. to map color indices, stencil indices, color components, and depth components to other values. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetPixelMap.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getPolygonStipple" arity="0" clause_i="1" since=""/>
    <fsummary>return the polygon stipple pattern</fsummary>
    <desc>
    <p><seemfa marker="gl#getPolygonStipple/0"><c>gl:getPolygonStipple/0</c></seemfa> returns to <c>Pattern</c> a   32×32 polygon stipple pattern. The pattern is packed into memory as if <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa> with both <c>height</c> and <c>width</c> of 32, <c>type</c> of <c>?GL_BITMAP</c>, and <c>format</c> of <c>?GL_COLOR_INDEX</c> were called, and the stipple pattern were stored in an internal   32×32 color index buffer. Unlike <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>, however, pixel transfer operations (shift, offset, pixel map) are not applied to the returned stipple image. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetPolygonStipple.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramiv" arity="2" clause_i="1" since=""/>
    <fsummary>Returns a parameter from a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramiv/2"><c>gl:getProgram()</c></seemfa> returns in <c>Params</c> the value of a parameter for a specific program object. The following parameters are defined:</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramBinary" arity="2" clause_i="1" since=""/>
    <fsummary>return a binary representation of a program object's compiled and linked executable source</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramBinary/2"><c>gl:getProgramBinary/2</c></seemfa> returns a binary representation of the compiled and linked executable for <c>Program</c> into the array of bytes whose address is specified in <c>Binary</c>. The maximum number of bytes that may be written into <c>Binary</c> is specified by <c>BufSize</c>. If the program binary is greater in size than <c>BufSize</c> bytes, then an error is generated, otherwise the actual number of bytes written into <c>Binary</c> is returned in the variable whose address is given by <c>Length</c>. If <c>Length</c> is <c>?NULL</c>, then no length is returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramBinary.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramInfoLog" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the information log for a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramInfoLog/2"><c>gl:getProgramInfoLog/2</c></seemfa> returns the information log for the specified program object. The information log for a program object is modified when the program object is linked or validated. The string that is returned will be null terminated.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramInfoLog.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramInterfaceiv" arity="3" clause_i="1" since=""/>
    <fsummary>query a property of an interface in a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramInterfaceiv/3"><c>gl:getProgramInterfaceiv/3</c></seemfa> queries the property of the interface identifed by <c>ProgramInterface</c> in <c>Program</c>, the property name of which is given by <c>Pname</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramInterface.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramPipelineiv" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve properties of a program pipeline object</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramPipelineiv/2"><c>gl:getProgramPipelineiv/2</c></seemfa> retrieves the value of a property of the program pipeline object <c>Pipeline</c>. <c>Pname</c> specifies the name of the parameter whose value to retrieve. The value of the parameter is written to the variable whose address is given by <c>Params</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramPipeline.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramPipelineInfoLog" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the info log string from a program pipeline object</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramPipelineInfoLog/2"><c>gl:getProgramPipelineInfoLog/2</c></seemfa> retrieves the info log for the program pipeline object <c>Pipeline</c>. The info log, including its null terminator, is written into the array of characters whose address is given by <c>InfoLog</c>. The maximum number of characters that may be written into <c>InfoLog</c> is given by <c>BufSize</c>, and the actual number of characters written into <c>InfoLog</c> is returned in the integer whose address is given by <c>Length</c>. If <c>Length</c> is <c>?NULL</c>, no length is returned. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramPipelineInfoLog.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramResourceIndex" arity="3" clause_i="1" since=""/>
    <fsummary>query the index of a named resource within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramResourceIndex/3"><c>gl:getProgramResourceIndex/3</c></seemfa> returns the unsigned integer index assigned to a resource named <c>Name</c> in the interface type <c>ProgramInterface</c> of program object <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramResourceIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramResourceLocation" arity="3" clause_i="1" since=""/>
    <fsummary>query the location of a named resource within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramResourceLocation/3"><c>gl:getProgramResourceLocation/3</c></seemfa> returns the location assigned to the variable named <c>Name</c> in interface <c>ProgramInterface</c> of program object <c>Program</c>. <c>Program</c> must be the name of a program that has been linked successfully. <c>ProgramInterface</c> must be one of <c>?GL_UNIFORM</c>, <c>?GL_PROGRAM_INPUT</c>, <c>?GL_PROGRAM_OUTPUT</c>, <c>?GL_VERTEX_SUBROUTINE_UNIFORM</c>, <c>?GL_TESS_CONTROL_SUBROUTINE_UNIFORM</c>, <c>?GL_TESS_EVALUATION_SUBROUTINE_UNIFORM</c>, <c>?GL_GEOMETRY_SUBROUTINE_UNIFORM</c>, <c>?GL_FRAGMENT_SUBROUTINE_UNIFORM</c>, <c>?GL_COMPUTE_SUBROUTINE_UNIFORM</c>, or <c>?GL_TRANSFORM_FEEDBACK_BUFFER</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramResourceLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramResourceLocationIndex" arity="3" clause_i="1" since=""/>
    <fsummary>query the fragment color index of a named variable within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramResourceLocationIndex/3"><c>gl:getProgramResourceLocationIndex/3</c></seemfa> returns the fragment color index assigned to the variable named <c>Name</c> in interface <c>ProgramInterface</c> of program object <c>Program</c>. <c>Program</c> must be the name of a program that has been linked successfully. <c>ProgramInterface</c> must be <c>?GL_PROGRAM_OUTPUT</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramResourceLocationIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramResourceName" arity="4" clause_i="1" since=""/>
    <fsummary>query the name of an indexed resource within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramResourceName/4"><c>gl:getProgramResourceName/4</c></seemfa> retrieves the name string assigned to the single active resource with an index of <c>Index</c> in the interface <c>ProgramInterface</c> of program object <c>Program</c>. <c>Index</c> must be less than the number of entries in the active resource list for <c>ProgramInterface</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramResourceName.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getProgramStageiv" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve properties of a program object corresponding to a specified shader stage</fsummary>
    <desc>
    <p><seemfa marker="gl#getProgramStageiv/3"><c>gl:getProgramStage()</c></seemfa> queries a parameter of a shader stage attached to a program object. <c>Program</c> contains the name of the program to which the shader is attached. <c>Shadertype</c> specifies the stage from which to query the parameter. <c>Pname</c> specifies which parameter should be queried. The value or values of the parameter to be queried is returned in the variable whose address is given in <c>Values</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramStage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getQueryIndexediv" arity="3" clause_i="1" since=""/>
    <fsummary>return parameters of an indexed query object target</fsummary>
    <desc>
    <p><seemfa marker="gl#getQueryIndexediv/3"><c>gl:getQueryIndexediv/3</c></seemfa> returns in <c>Params</c> a selected parameter of the indexed query object target specified by <c>Target</c> and <c>Index</c>. <c>Index</c> specifies the index of the query object target and must be between zero and a target-specific maxiumum. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetQueryIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getQueryBufferObjecti64v" arity="4" clause_i="1" since=""/>
    <name name="getQueryBufferObjectiv" arity="4" clause_i="1" since=""/>
    <name name="getQueryBufferObjectui64v" arity="4" clause_i="1" since=""/>
    <name name="getQueryBufferObjectuiv" arity="4" clause_i="1" since=""/>
    <name name="getQueryObjecti64v" arity="2" clause_i="1" since=""/>
    <name name="getQueryObjectiv" arity="2" clause_i="1" since=""/>
    <name name="getQueryObjectui64v" arity="2" clause_i="1" since=""/>
    <name name="getQueryObjectuiv" arity="2" clause_i="1" since=""/>
    <fsummary>return parameters of a query object</fsummary>
    <desc>
    <p> These commands return a selected parameter of the query object specified by <c>Id</c>. <seemfa marker="gl#getQueryObjectiv/2"><c>gl:getQueryObject()</c></seemfa> returns in <c>Params</c> a selected parameter of the query object specified by <c>Id</c>. <seemfa marker="gl#getQueryObjectiv/2"><c>gl:getQueryBufferObject()</c></seemfa> returns in <c>Buffer</c> a selected parameter of the query object specified by <c>Id</c>, by writing it to <c>Buffer</c>'s data store at the byte offset specified by <c>Offset</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetQueryObject.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getQueryiv" arity="2" clause_i="1" since=""/>
    <fsummary>return parameters of a query object target</fsummary>
    <desc>
    <p><seemfa marker="gl#getQueryiv/2"><c>gl:getQueryiv/2</c></seemfa> returns in <c>Params</c> a selected parameter of the query object target specified by <c>Target</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetQueryiv.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getRenderbufferParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>query a named parameter of a renderbuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#getRenderbufferParameteriv/2"><c>gl:getRenderbufferParameteriv/2</c></seemfa> and <c>glGetNamedRenderbufferParameteriv</c> query parameters of a specified renderbuffer object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetRenderbufferParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getSamplerParameterIiv" arity="2" clause_i="1" since=""/>
    <name name="getSamplerParameterIuiv" arity="2" clause_i="1" since=""/>
    <name name="getSamplerParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getSamplerParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>return sampler parameter values</fsummary>
    <desc>
    <p><seemfa marker="gl#getSamplerParameteriv/2"><c>gl:getSamplerParameter()</c></seemfa> returns in <c>Params</c> the value or values of the sampler parameter specified as <c>Pname</c>. <c>Sampler</c> defines the target sampler, and must be the name of an existing sampler object, returned from a previous call to <seemfa marker="gl#genSamplers/1"><c>gl:genSamplers/1</c></seemfa>. <c>Pname</c> accepts the same symbols as <seemfa marker="gl#samplerParameteri/3"><c>gl:samplerParameter()</c></seemfa>, with the same interpretations: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetSamplerParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getShaderiv" arity="2" clause_i="1" since=""/>
    <fsummary>Returns a parameter from a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#getShaderiv/2"><c>gl:getShader()</c></seemfa> returns in <c>Params</c> the value of a parameter for a specific shader object. The following parameters are defined:</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getShaderInfoLog" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the information log for a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#getShaderInfoLog/2"><c>gl:getShaderInfoLog/2</c></seemfa> returns the information log for the specified shader object. The information log for a shader object is modified when the shader is compiled. The string that is returned will be null terminated.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderInfoLog.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getShaderPrecisionFormat" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the range and precision for numeric formats supported by the shader compiler</fsummary>
    <desc>
    <p><seemfa marker="gl#getShaderPrecisionFormat/2"><c>gl:getShaderPrecisionFormat/2</c></seemfa> retrieves the numeric range and precision for the implementation's representation of quantities in different numeric formats in specified shader type. <c>ShaderType</c> specifies the type of shader for which the numeric precision and range is to be retrieved and must be one of <c>?GL_VERTEX_SHADER</c> or <c>?GL_FRAGMENT_SHADER</c>. <c>PrecisionType</c> specifies the numeric format to query and must be one of <c>?GL_LOW_FLOAT</c>, <c>?GL_MEDIUM_FLOAT</c><c>?GL_HIGH_FLOAT</c>, <c>?GL_LOW_INT</c>, <c>?GL_MEDIUM_INT</c>, or <c>?GL_HIGH_INT</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderPrecisionFormat.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getShaderSource" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the source code string from a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#getShaderSource/2"><c>gl:getShaderSource/2</c></seemfa> returns the concatenation of the source code strings from the shader object specified by <c>Shader</c>. The source code strings for a shader object are the result of a previous call to <seemfa marker="gl#shaderSource/2"><c>gl:shaderSource/2</c></seemfa>. The string returned by the function will be null terminated.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderSource.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getString" arity="1" clause_i="1" since=""/>
    <name name="getStringi" arity="2" clause_i="1" since=""/>
    <fsummary>return a string describing the current GL connection</fsummary>
    <desc>
    <p><seemfa marker="gl#getString/1"><c>gl:getString/1</c></seemfa> returns a pointer to a static string describing some aspect of the current GL connection. <c>Name</c> can be one of the following: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetString.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getSubroutineIndex" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve the index of a subroutine uniform of a given shader stage within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getSubroutineIndex/3"><c>gl:getSubroutineIndex/3</c></seemfa> returns the index of a subroutine uniform within a shader stage attached to a program object. <c>Program</c> contains the name of the program to which the shader is attached. <c>Shadertype</c> specifies the stage from which to query shader subroutine index. <c>Name</c> contains the null-terminated name of the subroutine uniform whose name to query. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetSubroutineIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getSubroutineUniformLocation" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve the location of a subroutine uniform of a given shader stage within a program</fsummary>
    <desc>
    <p><seemfa marker="gl#getSubroutineUniformLocation/3"><c>gl:getSubroutineUniformLocation/3</c></seemfa> returns the location of the subroutine uniform variable <c>Name</c> in the shader stage of type <c>Shadertype</c> attached to <c>Program</c>, with behavior otherwise identical to <seemfa marker="gl#getUniformLocation/2"><c>gl:getUniformLocation/2</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetSubroutineUniformLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getSynciv" arity="3" clause_i="1" since=""/>
    <fsummary>query the properties of a sync object</fsummary>
    <desc>
    <p><seemfa marker="gl#getSynciv/3"><c>gl:getSynciv/3</c></seemfa> retrieves properties of a sync object. <c>Sync</c> specifies the name of the sync object whose properties to retrieve. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTexEnvfv" arity="2" clause_i="1" since=""/>
    <name name="getTexEnviv" arity="2" clause_i="1" since=""/>
    <fsummary>return texture environment parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getTexEnvfv/2"><c>gl:getTexEnv()</c></seemfa> returns in <c>Params</c> selected values of a texture environment that was specified with <seemfa marker="gl#texEnvf/3"><c>gl:texEnv()</c></seemfa>. <c>Target</c> specifies a texture environment. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetTexEnv.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTexGendv" arity="2" clause_i="1" since=""/>
    <name name="getTexGenfv" arity="2" clause_i="1" since=""/>
    <name name="getTexGeniv" arity="2" clause_i="1" since=""/>
    <fsummary>return texture coordinate generation parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#getTexGendv/2"><c>gl:getTexGen()</c></seemfa> returns in <c>Params</c> selected parameters of a texture coordinate generation function that was specified using <seemfa marker="gl#texGend/3"><c>gl:texGen()</c></seemfa>. <c>Coord</c> names one of the (<c>s</c>, <c>t</c>, <c>r</c>, <c>q</c>) texture coordinates, using the symbolic constant <c>?GL_S</c>, <c>?GL_T</c>, <c>?GL_R</c>, or <c>?GL_Q</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glGetTexGen.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTexImage" arity="5" clause_i="1" since=""/>
    <fsummary>return a texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#getTexImage/5"><c>gl:getTexImage/5</c></seemfa>, <c>glGetnTexImage</c> and <c>glGetTextureImage</c> functions return a texture image into <c>Pixels</c>. For <seemfa marker="gl#getTexImage/5"><c>gl:getTexImage/5</c></seemfa> and <c>glGetnTexImage</c>, <c>Target</c> specifies whether the desired texture image is one specified by <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa> (<c>?GL_TEXTURE_1D</c>), <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa> (<c>?GL_TEXTURE_1D_ARRAY</c>, <c>?GL_TEXTURE_RECTANGLE</c>, <c>?GL_TEXTURE_2D</c> or any of <c>?GL_TEXTURE_CUBE_MAP_*</c>), or <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa> (<c>?GL_TEXTURE_2D_ARRAY</c>, <c>?GL_TEXTURE_3D</c>, <c>?GL_TEXTURE_CUBE_MAP_ARRAY</c>). For <c>glGetTextureImage</c>, <c>Texture</c> specifies the texture object name. In addition to types of textures accepted by <seemfa marker="gl#getTexImage/5"><c>gl:getTexImage/5</c></seemfa> and <c>glGetnTexImage</c>, the function also accepts cube map texture objects (with effective target <c>?GL_TEXTURE_CUBE_MAP</c>). <c>Level</c> specifies the level-of-detail number of the desired image. <c>Format</c> and <c>Type</c> specify the format and type of the desired image array. See the reference page for <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa> for a description of the acceptable values for the <c>Format</c> and <c>Type</c> parameters, respectively. For glGetnTexImage and glGetTextureImage functions, bufSize tells the size of the buffer to receive the retrieved pixel data. <c>glGetnTexImage</c> and <c>glGetTextureImage</c> do not write more than <c>BufSize</c> bytes into <c>Pixels</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTexLevelParameterfv" arity="3" clause_i="1" since=""/>
    <name name="getTexLevelParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>return texture parameter values for a specific level of detail</fsummary>
    <desc>
    <p><seemfa marker="gl#getTexLevelParameterfv/3"><c>gl:getTexLevelParameterfv/3</c></seemfa>, <seemfa marker="gl#getTexLevelParameterfv/3"><c>gl:getTexLevelParameteriv/3</c></seemfa>, <c>glGetTextureLevelParameterfv</c> and <c>glGetTextureLevelParameteriv</c> return in <c>Params</c> texture parameter values for a specific level-of-detail value, specified as <c>Level</c>. For the first two functions, <c>Target</c> defines the target texture, either <c>?GL_TEXTURE_1D</c>, <c>?GL_TEXTURE_2D</c>, <c>?GL_TEXTURE_3D</c>, <c>?GL_PROXY_TEXTURE_1D</c>, <c>?GL_PROXY_TEXTURE_2D</c>, <c>?GL_PROXY_TEXTURE_3D</c>, <c>?GL_TEXTURE_CUBE_MAP_POSITIVE_X</c>, <c>?GL_TEXTURE_CUBE_MAP_NEGATIVE_X</c>, <c>?GL_TEXTURE_CUBE_MAP_POSITIVE_Y</c>, <c>?GL_TEXTURE_CUBE_MAP_NEGATIVE_Y</c>, <c>?GL_TEXTURE_CUBE_MAP_POSITIVE_Z</c>, <c>?GL_TEXTURE_CUBE_MAP_NEGATIVE_Z</c>, or <c>?GL_PROXY_TEXTURE_CUBE_MAP</c>. The remaining two take a <c>Texture</c> argument which specifies the name of the texture object.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexLevelParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTexParameterIiv" arity="2" clause_i="1" since=""/>
    <name name="getTexParameterIuiv" arity="2" clause_i="1" since=""/>
    <name name="getTexParameterfv" arity="2" clause_i="1" since=""/>
    <name name="getTexParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>return texture parameter values</fsummary>
    <desc>
    <p><seemfa marker="gl#getTexParameterfv/2"><c>gl:getTexParameter()</c></seemfa> and <c>glGetTextureParameter</c> return in <c>Params</c> the value or values of the texture parameter specified as <c>Pname</c>. <c>Target</c> defines the target texture. <c>?GL_TEXTURE_1D</c>, <c>?GL_TEXTURE_2D</c>, <c>?GL_TEXTURE_3D</c>, <c>?GL_TEXTURE_1D_ARRAY</c>, <c>?GL_TEXTURE_2D_ARRAY</c>, <c>?GL_TEXTURE_RECTANGLE</c>, <c>?GL_TEXTURE_CUBE_MAP</c>, <c>?GL_TEXTURE_CUBE_MAP_ARRAY</c>, <c>?GL_TEXTURE_2D_MULTISAMPLE</c>, or <c>?GL_TEXTURE_2D_MULTISAMPLE_ARRAY</c> specify one-, two-, or three-dimensional, one-dimensional array, two-dimensional array, rectangle, cube-mapped or cube-mapped array, two-dimensional multisample, or two-dimensional multisample array texturing, respectively. <c>Pname</c> accepts the same symbols as <seemfa marker="gl#texParameterf/3"><c>gl:texParameter()</c></seemfa>, with the same interpretations: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getTransformFeedbackVarying" arity="3" clause_i="1" since=""/>
    <fsummary>retrieve information about varying variables selected for transform feedback</fsummary>
    <desc>
    <p> Information about the set of varying variables in a linked program that will be captured during transform feedback may be retrieved by calling <seemfa marker="gl#getTransformFeedbackVarying/3"><c>gl:getTransformFeedbackVarying/3</c></seemfa>. <seemfa marker="gl#getTransformFeedbackVarying/3"><c>gl:getTransformFeedbackVarying/3</c></seemfa> provides information about the varying variable selected by <c>Index</c>. An <c>Index</c> of 0 selects the first varying variable specified in the <c>Varyings</c> array passed to <seemfa marker="gl#transformFeedbackVaryings/3"><c>gl:transformFeedbackVaryings/3</c></seemfa>, and an <c>Index</c> of the value of <c>?GL_TRANSFORM_FEEDBACK_VARYINGS</c> minus one selects the last such variable. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTransformFeedbackVarying.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getUniformdv" arity="2" clause_i="1" since=""/>
    <name name="getUniformfv" arity="2" clause_i="1" since=""/>
    <name name="getUniformiv" arity="2" clause_i="1" since=""/>
    <name name="getUniformuiv" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the value of a uniform variable</fsummary>
    <desc>
    <p><seemfa marker="gl#getUniformfv/2"><c>gl:getUniform()</c></seemfa> and <c>glGetnUniform</c> return in <c>Params</c> the value(s) of the specified uniform variable. The type of the uniform variable specified by <c>Location</c> determines the number of values returned. If the uniform variable is defined in the shader as a boolean, int, or float, a single value will be returned. If it is defined as a vec2, ivec2, or bvec2, two values will be returned. If it is defined as a vec3, ivec3, or bvec3, three values will be returned, and so on. To query values stored in uniform variables declared as arrays, call <seemfa marker="gl#getUniformfv/2"><c>gl:getUniform()</c></seemfa> for each element of the array. To query values stored in uniform variables declared as structures, call <seemfa marker="gl#getUniformfv/2"><c>gl:getUniform()</c></seemfa> for each field in the structure. The values for uniform variables declared as a matrix will be returned in column major order.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetUniform.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getUniformBlockIndex" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the index of a named uniform block</fsummary>
    <desc>
    <p><seemfa marker="gl#getUniformBlockIndex/2"><c>gl:getUniformBlockIndex/2</c></seemfa> retrieves the index of a uniform block within <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetUniformBlockIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getUniformIndices" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the index of a named uniform block</fsummary>
    <desc>
    <p><seemfa marker="gl#getUniformIndices/2"><c>gl:getUniformIndices/2</c></seemfa> retrieves the indices of a number of uniforms within <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetUniformIndices.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getUniformLocation" arity="2" clause_i="1" since=""/>
    <fsummary>Returns the location of a uniform variable</fsummary>
    <desc>
    <p><c>glGetUniformLocation </c> returns an integer that represents the location of a specific uniform variable within a program object. <c>Name</c> must be a null terminated string that contains no white space. <c>Name</c> must be an active uniform variable name in <c>Program</c> that is not a structure, an array of structures, or a subcomponent of a vector or a matrix. This function returns -1 if <c>Name</c> does not correspond to an active uniform variable in <c>Program</c>, if <c>Name</c> starts with the reserved prefix "gl_", or if <c>Name</c> is associated with an atomic counter or a named uniform block.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetUniformLocation.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getUniformSubroutineuiv" arity="2" clause_i="1" since=""/>
    <fsummary>retrieve the value of a subroutine uniform of a given shader stage of the current program</fsummary>
    <desc>
    <p><seemfa marker="gl#getUniformSubroutineuiv/2"><c>gl:getUniformSubroutine()</c></seemfa> retrieves the value of the subroutine uniform at location <c>Location</c> for shader stage <c>Shadertype</c> of the current program. <c>Location</c> must be less than the value of <c>?GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS</c> for the shader currently in use at shader stage <c>Shadertype</c>. The value of the subroutine uniform is returned in <c>Values</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetUniformSubroutine.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="getVertexAttribIiv" arity="2" clause_i="1" since=""/>
    <name name="getVertexAttribIuiv" arity="2" clause_i="1" since=""/>
    <name name="getVertexAttribLdv" arity="2" clause_i="1" since=""/>
    <name name="getVertexAttribdv" arity="2" clause_i="1" since=""/>
    <name name="getVertexAttribfv" arity="2" clause_i="1" since=""/>
    <name name="getVertexAttribiv" arity="2" clause_i="1" since=""/>
    <fsummary>Return a generic vertex attribute parameter</fsummary>
    <desc>
    <p><seemfa marker="gl#getVertexAttribdv/2"><c>gl:getVertexAttrib()</c></seemfa> returns in <c>Params</c> the value of a generic vertex attribute parameter. The generic vertex attribute to be queried is specified by <c>Index</c>, and the parameter to be queried is specified by <c>Pname</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetVertexAttrib.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="hint" arity="2" clause_i="1" since=""/>
    <fsummary>specify implementation-specific hints</fsummary>
    <desc>
    <p> Certain aspects of GL behavior, when there is room for interpretation, can be controlled with hints. A hint is specified with two arguments. <c>Target</c> is a symbolic constant indicating the behavior to be controlled, and <c>Mode</c> is another symbolic constant indicating the desired behavior. The initial value for each <c>Target</c> is <c>?GL_DONT_CARE</c>. <c>Mode</c> can be one of the following: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glHint.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="histogram" arity="4" clause_i="1" since=""/>
    <fsummary>define histogram table</fsummary>
    <desc>
    <p> When <c>?GL_HISTOGRAM</c> is enabled, RGBA color components are converted to histogram table indices by clamping to the range [0,1], multiplying by the width of the histogram table, and rounding to the nearest integer. The table entries selected by the RGBA indices are then incremented. (If the internal format of the histogram table includes luminance, then the index derived from the R color component determines the luminance table entry to be incremented.) If a histogram table entry is incremented beyond its maximum value, then its value becomes undefined. (This is not an error.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glHistogram.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="indexd" arity="1" clause_i="1" since=""/>
    <name name="indexdv" arity="1" clause_i="1" since=""/>
    <name name="indexf" arity="1" clause_i="1" since=""/>
    <name name="indexfv" arity="1" clause_i="1" since=""/>
    <name name="indexi" arity="1" clause_i="1" since=""/>
    <name name="indexiv" arity="1" clause_i="1" since=""/>
    <name name="indexs" arity="1" clause_i="1" since=""/>
    <name name="indexsv" arity="1" clause_i="1" since=""/>
    <name name="indexub" arity="1" clause_i="1" since=""/>
    <name name="indexubv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current color index</fsummary>
    <desc>
    <p><seemfa marker="gl#indexd/1"><c>gl:index()</c></seemfa> updates the current (single-valued) color index. It takes one argument, the new value for the current color index. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glIndex.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="indexMask" arity="1" clause_i="1" since=""/>
    <fsummary>control the writing of individual bits in the color index buffers</fsummary>
    <desc>
    <p><seemfa marker="gl#indexMask/1"><c>gl:indexMask/1</c></seemfa> controls the writing of individual bits in the color index buffers. The least significant   n bits of <c>Mask</c>, where   n is the number of bits in a color index buffer, specify a mask. Where a 1 (one) appears in the mask, it's possible to write to the corresponding bit in the color index buffer (or buffers). Where a 0 (zero) appears, the corresponding bit is write-protected. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glIndexMask.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="indexPointer" arity="3" clause_i="1" since=""/>
    <fsummary>define an array of color indexes</fsummary>
    <desc>
    <p><seemfa marker="gl#indexPointer/3"><c>gl:indexPointer/3</c></seemfa> specifies the location and data format of an array of color indexes to use when rendering. <c>Type</c> specifies the data type of each color index and <c>Stride</c> specifies the byte stride from one color index to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glIndexPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="initNames" arity="0" clause_i="1" since=""/>
    <fsummary>initialize the name stack</fsummary>
    <desc>
    <p> The name stack is used during selection mode to allow sets of rendering commands to be uniquely identified. It consists of an ordered set of unsigned integers. <seemfa marker="gl#initNames/0"><c>gl:initNames/0</c></seemfa> causes the name stack to be initialized to its default empty state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glInitNames.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="interleavedArrays" arity="3" clause_i="1" since=""/>
    <fsummary>simultaneously specify and enable several interleaved arrays</fsummary>
    <desc>
    <p><seemfa marker="gl#interleavedArrays/3"><c>gl:interleavedArrays/3</c></seemfa> lets you specify and enable individual color, normal, texture and vertex arrays whose elements are part of a larger aggregate array element. For some implementations, this is more efficient than specifying the arrays separately. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glInterleavedArrays.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateBufferData" arity="1" clause_i="1" since=""/>
    <fsummary>invalidate the content of a buffer object's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateBufferData/1"><c>gl:invalidateBufferData/1</c></seemfa> invalidates all of the content of the data store of a buffer object. After invalidation, the content of the buffer's data store becomes undefined. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateBufferData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateBufferSubData" arity="3" clause_i="1" since=""/>
    <fsummary>invalidate a region of a buffer object's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateBufferSubData/3"><c>gl:invalidateBufferSubData/3</c></seemfa> invalidates all or part of the content of the data store of a buffer object. After invalidation, the content of the specified range of the buffer's data store becomes undefined. The start of the range is given by <c>Offset</c> and its size is given by <c>Length</c>, both measured in basic machine units. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateBufferSubData.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateFramebuffer" arity="2" clause_i="1" since=""/>
    <fsummary>invalidate the content of some or all of a framebuffer's attachments</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateFramebuffer/2"><c>gl:invalidateFramebuffer/2</c></seemfa> and <c>glInvalidateNamedFramebufferData</c> invalidate the entire contents of a specified set of attachments of a framebuffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateFramebuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateSubFramebuffer" arity="6" clause_i="1" since=""/>
    <fsummary>invalidate the content of a region of some or all of a framebuffer's attachments</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateSubFramebuffer/6"><c>gl:invalidateSubFramebuffer/6</c></seemfa> and <c>glInvalidateNamedFramebufferSubData</c> invalidate the contents of a specified region of a specified set of attachments of a framebuffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateSubFramebuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateTexImage" arity="2" clause_i="1" since=""/>
    <fsummary>invalidate the entirety a texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateTexSubImage/8"><c>gl:invalidateTexSubImage/8</c></seemfa> invalidates all of a texture image. <c>Texture</c> and <c>Level</c> indicated which texture image is being invalidated. After this command, data in the texture image has undefined values. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateTexImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="invalidateTexSubImage" arity="8" clause_i="1" since=""/>
    <fsummary>invalidate a region of a texture image</fsummary>
    <desc>
    <p><seemfa marker="gl#invalidateTexSubImage/8"><c>gl:invalidateTexSubImage/8</c></seemfa> invalidates all or part of a texture image. <c>Texture</c> and <c>Level</c> indicated which texture image is being invalidated. After this command, data in that subregion have undefined values. <c>Xoffset</c>, <c>Yoffset</c>, <c>Zoffset</c>, <c>Width</c>, <c>Height</c>, and <c>Depth</c> are interpreted as they are in <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>. For texture targets that don't have certain dimensions, this command treats those dimensions as having a size of 1. For example, to invalidate a portion of a two- dimensional texture, the application would use <c>Zoffset</c> equal to zero and <c>Depth</c> equal to one. Cube map textures are treated as an array of six slices in the z-dimension, where a value of <c>Zoffset</c> is interpreted as specifying face <c>?GL_TEXTURE_CUBE_MAP_POSITIVE_X</c> + <c>Zoffset</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glInvalidateTexSubImage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isBuffer" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#isBuffer/1"><c>gl:isBuffer/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Buffer</c> is currently the name of a buffer object. If <c>Buffer</c> is zero, or is a non-zero value that is not currently the name of a buffer object, or if an error occurs, <seemfa marker="gl#isBuffer/1"><c>gl:isBuffer/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isEnabled" arity="1" clause_i="1" since=""/>
    <name name="isEnabledi" arity="2" clause_i="1" since=""/>
    <fsummary>test whether a capability is enabled</fsummary>
    <desc>
    <p><seemfa marker="gl#isEnabled/1"><c>gl:isEnabled/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Cap</c> is an enabled capability and returns <c>?GL_FALSE</c> otherwise. Boolean states that are indexed may be tested with <seemfa marker="gl#isEnabled/1"><c>gl:isEnabledi/2</c></seemfa>. For <seemfa marker="gl#isEnabled/1"><c>gl:isEnabledi/2</c></seemfa>, <c>Index</c> specifies the index of the capability to test. <c>Index</c> must be between zero and the count of indexed capabilities for <c>Cap</c>. Initially all capabilities except <c>?GL_DITHER</c> are disabled; <c>?GL_DITHER</c> is initially enabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsEnabled.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isFramebuffer" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a framebuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#isFramebuffer/1"><c>gl:isFramebuffer/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Framebuffer</c> is currently the name of a framebuffer object. If <c>Framebuffer</c> is zero, or if <c>?framebuffer</c> is not the name of a framebuffer object, or if an error occurs, <seemfa marker="gl#isFramebuffer/1"><c>gl:isFramebuffer/1</c></seemfa> returns <c>?GL_FALSE</c>. If <c>Framebuffer</c> is a name returned by <seemfa marker="gl#genFramebuffers/1"><c>gl:genFramebuffers/1</c></seemfa>, by that has not yet been bound through a call to <seemfa marker="gl#bindFramebuffer/2"><c>gl:bindFramebuffer/2</c></seemfa>, then the name is not a framebuffer object and <seemfa marker="gl#isFramebuffer/1"><c>gl:isFramebuffer/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsFramebuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isList" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a display list</fsummary>
    <desc>
    <p><seemfa marker="gl#isList/1"><c>gl:isList/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>List</c> is the name of a display list and returns <c>?GL_FALSE</c> if it is not, or if an error occurs. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glIsList.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isProgram" arity="1" clause_i="1" since=""/>
    <fsummary>Determines if a name corresponds to a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#isProgram/1"><c>gl:isProgram/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Program</c> is the name of a program object previously created with <seemfa marker="gl#createProgram/0"><c>gl:createProgram/0</c></seemfa> and not yet deleted with <seemfa marker="gl#deleteProgram/1"><c>gl:deleteProgram/1</c></seemfa>. If <c>Program</c> is zero or a non-zero value that is not the name of a program object, or if an error occurs, <seemfa marker="gl#isProgram/1"><c>gl:isProgram/1</c></seemfa> returns <c>?GL_FALSE</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isProgramPipeline" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a program pipeline object</fsummary>
    <desc>
    <p><seemfa marker="gl#isProgramPipeline/1"><c>gl:isProgramPipeline/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Pipeline</c> is currently the name of a program pipeline object. If <c>Pipeline</c> is zero, or if <c>?pipeline</c> is not the name of a program pipeline object, or if an error occurs, <seemfa marker="gl#isProgramPipeline/1"><c>gl:isProgramPipeline/1</c></seemfa> returns <c>?GL_FALSE</c>. If <c>Pipeline</c> is a name returned by <seemfa marker="gl#genProgramPipelines/1"><c>gl:genProgramPipelines/1</c></seemfa>, but that has not yet been bound through a call to <seemfa marker="gl#bindProgramPipeline/1"><c>gl:bindProgramPipeline/1</c></seemfa>, then the name is not a program pipeline object and <seemfa marker="gl#isProgramPipeline/1"><c>gl:isProgramPipeline/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsProgramPipeline.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isQuery" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a query object</fsummary>
    <desc>
    <p><seemfa marker="gl#isQuery/1"><c>gl:isQuery/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Id</c> is currently the name of a query object. If <c>Id</c> is zero, or is a non-zero value that is not currently the name of a query object, or if an error occurs, <seemfa marker="gl#isQuery/1"><c>gl:isQuery/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsQuery.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isRenderbuffer" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a renderbuffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#isRenderbuffer/1"><c>gl:isRenderbuffer/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Renderbuffer</c> is currently the name of a renderbuffer object. If <c>Renderbuffer</c> is zero, or if <c>Renderbuffer</c> is not the name of a renderbuffer object, or if an error occurs, <seemfa marker="gl#isRenderbuffer/1"><c>gl:isRenderbuffer/1</c></seemfa> returns <c>?GL_FALSE</c>. If <c>Renderbuffer</c> is a name returned by <seemfa marker="gl#genRenderbuffers/1"><c>gl:genRenderbuffers/1</c></seemfa>, by that has not yet been bound through a call to <seemfa marker="gl#bindRenderbuffer/2"><c>gl:bindRenderbuffer/2</c></seemfa> or <seemfa marker="gl#framebufferRenderbuffer/4"><c>gl:framebufferRenderbuffer/4</c></seemfa>, then the name is not a renderbuffer object and <seemfa marker="gl#isRenderbuffer/1"><c>gl:isRenderbuffer/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsRenderbuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isSampler" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a sampler object</fsummary>
    <desc>
    <p><seemfa marker="gl#isSampler/1"><c>gl:isSampler/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Id</c> is currently the name of a sampler object. If <c>Id</c> is zero, or is a non-zero value that is not currently the name of a sampler object, or if an error occurs, <seemfa marker="gl#isSampler/1"><c>gl:isSampler/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsSampler.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isShader" arity="1" clause_i="1" since=""/>
    <fsummary>Determines if a name corresponds to a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#isShader/1"><c>gl:isShader/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Shader</c> is the name of a shader object previously created with <seemfa marker="gl#createShader/1"><c>gl:createShader/1</c></seemfa> and not yet deleted with <seemfa marker="gl#deleteShader/1"><c>gl:deleteShader/1</c></seemfa>. If <c>Shader</c> is zero or a non-zero value that is not the name of a shader object, or if an error occurs, <c>glIsShader </c> returns <c>?GL_FALSE</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsShader.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isSync" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a sync object</fsummary>
    <desc>
    <p><seemfa marker="gl#isSync/1"><c>gl:isSync/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Sync</c> is currently the name of a sync object. If <c>Sync</c> is not the name of a sync object, or if an error occurs, <seemfa marker="gl#isSync/1"><c>gl:isSync/1</c></seemfa> returns <c>?GL_FALSE</c>. Note that zero is not the name of a sync object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isTexture" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a texture</fsummary>
    <desc>
    <p><seemfa marker="gl#isTexture/1"><c>gl:isTexture/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Texture</c> is currently the name of a texture. If <c>Texture</c> is zero, or is a non-zero value that is not currently the name of a texture, or if an error occurs, <seemfa marker="gl#isTexture/1"><c>gl:isTexture/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsTexture.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isTransformFeedback" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a transform feedback object</fsummary>
    <desc>
    <p><seemfa marker="gl#isTransformFeedback/1"><c>gl:isTransformFeedback/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Id</c> is currently the name of a transform feedback object. If <c>Id</c> is zero, or if <c>?id</c> is not the name of a transform feedback object, or if an error occurs, <seemfa marker="gl#isTransformFeedback/1"><c>gl:isTransformFeedback/1</c></seemfa> returns <c>?GL_FALSE</c>. If <c>Id</c> is a name returned by <seemfa marker="gl#genTransformFeedbacks/1"><c>gl:genTransformFeedbacks/1</c></seemfa>, but that has not yet been bound through a call to <seemfa marker="gl#bindTransformFeedback/2"><c>gl:bindTransformFeedback/2</c></seemfa>, then the name is not a transform feedback object and <seemfa marker="gl#isTransformFeedback/1"><c>gl:isTransformFeedback/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="isVertexArray" arity="1" clause_i="1" since=""/>
    <fsummary>determine if a name corresponds to a vertex array object</fsummary>
    <desc>
    <p><seemfa marker="gl#isVertexArray/1"><c>gl:isVertexArray/1</c></seemfa> returns <c>?GL_TRUE</c> if <c>Array</c> is currently the name of a vertex array object. If <c>Array</c> is zero, or if <c>Array</c> is not the name of a vertex array object, or if an error occurs, <seemfa marker="gl#isVertexArray/1"><c>gl:isVertexArray/1</c></seemfa> returns <c>?GL_FALSE</c>. If <c>Array</c> is a name returned by <seemfa marker="gl#genVertexArrays/1"><c>gl:genVertexArrays/1</c></seemfa>, by that has not yet been bound through a call to <seemfa marker="gl#bindVertexArray/1"><c>gl:bindVertexArray/1</c></seemfa>, then the name is not a vertex array object and <seemfa marker="gl#isVertexArray/1"><c>gl:isVertexArray/1</c></seemfa> returns <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glIsVertexArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="lightf" arity="3" clause_i="1" since=""/>
    <name name="lightfv" arity="3" clause_i="1" since=""/>
    <name name="lighti" arity="3" clause_i="1" since=""/>
    <name name="lightiv" arity="3" clause_i="1" since=""/>
    <fsummary>set light source parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#lightf/3"><c>gl:light()</c></seemfa> sets the values of individual light source parameters. <c>Light</c> names the light and is a symbolic name of the form <c>?GL_LIGHT</c> i, where i ranges from 0 to the value of <c>?GL_MAX_LIGHTS</c> - 1. <c>Pname</c> specifies one of ten light source parameters, again by symbolic name. <c>Params</c> is either a single value or a pointer to an array that contains the new values. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLight.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="lightModelf" arity="2" clause_i="1" since=""/>
    <name name="lightModelfv" arity="2" clause_i="1" since=""/>
    <name name="lightModeli" arity="2" clause_i="1" since=""/>
    <name name="lightModeliv" arity="2" clause_i="1" since=""/>
    <fsummary>set the lighting model parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#lightModelf/2"><c>gl:lightModel()</c></seemfa> sets the lighting model parameter. <c>Pname</c> names a parameter and <c>Params</c> gives the new value. There are three lighting model parameters: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLightModel.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="lineStipple" arity="2" clause_i="1" since=""/>
    <fsummary>specify the line stipple pattern</fsummary>
    <desc>
    <p> Line stippling masks out certain fragments produced by rasterization; those fragments will not be drawn. The masking is achieved by using three parameters: the 16-bit line stipple pattern <c>Pattern</c>, the repeat count <c>Factor</c>, and an integer stipple counter   s. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLineStipple.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="lineWidth" arity="1" clause_i="1" since=""/>
    <fsummary>specify the width of rasterized lines</fsummary>
    <desc>
    <p><seemfa marker="gl#lineWidth/1"><c>gl:lineWidth/1</c></seemfa> specifies the rasterized width of both aliased and antialiased lines. Using a line width other than 1 has different effects, depending on whether line antialiasing is enabled. To enable and disable line antialiasing, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_LINE_SMOOTH</c>. Line antialiasing is initially disabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glLineWidth.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="linkProgram" arity="1" clause_i="1" since=""/>
    <fsummary>Links a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#linkProgram/1"><c>gl:linkProgram/1</c></seemfa> links the program object specified by <c>Program</c>. If any shader objects of type <c>?GL_VERTEX_SHADER</c> are attached to <c>Program</c>, they will be used to create an executable that will run on the programmable vertex processor. If any shader objects of type <c>?GL_GEOMETRY_SHADER</c> are attached to <c>Program</c>, they will be used to create an executable that will run on the programmable geometry processor. If any shader objects of type <c>?GL_FRAGMENT_SHADER</c> are attached to <c>Program</c>, they will be used to create an executable that will run on the programmable fragment processor.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glLinkProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="listBase" arity="1" clause_i="1" since=""/>
    <fsummary>set the display-list base for <c>glCallLists</c></fsummary>
    <desc>
    <p><seemfa marker="gl#callLists/1"><c>gl:callLists/1</c></seemfa> specifies an array of offsets. Display-list names are generated by adding <c>Base</c> to each offset. Names that reference valid display lists are executed; the others are ignored. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glListBase.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="loadIdentity" arity="0" clause_i="1" since=""/>
    <fsummary>replace the current matrix with the identity matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#loadIdentity/0"><c>gl:loadIdentity/0</c></seemfa> replaces the current matrix with the identity matrix. It is semantically equivalent to calling <seemfa marker="gl#loadMatrixd/1"><c>gl:loadMatrix()</c></seemfa> with the identity matrix </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLoadIdentity.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="loadMatrixd" arity="1" clause_i="1" since=""/>
    <name name="loadMatrixf" arity="1" clause_i="1" since=""/>
    <fsummary>replace the current matrix with the specified matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#loadMatrixd/1"><c>gl:loadMatrix()</c></seemfa> replaces the current matrix with the one whose elements are specified by <c>M</c>. The current matrix is the projection matrix, modelview matrix, or texture matrix, depending on the current matrix mode (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLoadMatrix.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="loadName" arity="1" clause_i="1" since=""/>
    <fsummary>load a name onto the name stack</fsummary>
    <desc>
    <p> The name stack is used during selection mode to allow sets of rendering commands to be uniquely identified. It consists of an ordered set of unsigned integers and is initially empty. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLoadName.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="loadTransposeMatrixd" arity="1" clause_i="1" since=""/>
    <name name="loadTransposeMatrixf" arity="1" clause_i="1" since=""/>
    <fsummary>replace the current matrix with the specified row-major ordered matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#loadTransposeMatrixf/1"><c>gl:loadTransposeMatrix()</c></seemfa> replaces the current matrix with the one whose elements are specified by <c>M</c>. The current matrix is the projection matrix, modelview matrix, or texture matrix, depending on the current matrix mode (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glLoadTransposeMatrix.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="logicOp" arity="1" clause_i="1" since=""/>
    <fsummary>specify a logical pixel operation for rendering</fsummary>
    <desc>
    <p><seemfa marker="gl#logicOp/1"><c>gl:logicOp/1</c></seemfa> specifies a logical operation that, when enabled, is applied between the incoming RGBA color and the RGBA color at the corresponding location in the frame buffer. To enable or disable the logical operation, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> using the symbolic constant <c>?GL_COLOR_LOGIC_OP</c>. The initial value is disabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glLogicOp.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="map1d" arity="6" clause_i="1" since=""/>
    <name name="map1f" arity="6" clause_i="1" since=""/>
    <fsummary>define a one-dimensional evaluator</fsummary>
    <desc>
    <p> Evaluators provide a way to use polynomial or rational polynomial mapping to produce vertices, normals, texture coordinates, and colors. The values produced by an evaluator are sent to further stages of GL processing just as if they had been presented using <seemfa marker="gl#vertex2d/2"><c>gl:vertex()</c></seemfa>, <seemfa marker="gl#normal3b/3"><c>gl:normal()</c></seemfa>, <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord()</c></seemfa>, and <seemfa marker="gl#color3b/3"><c>gl:color()</c></seemfa> commands, except that the generated values do not update the current normal, texture coordinates, or color. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMap1.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="map2d" arity="10" clause_i="1" since=""/>
    <name name="map2f" arity="10" clause_i="1" since=""/>
    <fsummary>define a two-dimensional evaluator</fsummary>
    <desc>
    <p> Evaluators provide a way to use polynomial or rational polynomial mapping to produce vertices, normals, texture coordinates, and colors. The values produced by an evaluator are sent on to further stages of GL processing just as if they had been presented using <seemfa marker="gl#vertex2d/2"><c>gl:vertex()</c></seemfa>, <seemfa marker="gl#normal3b/3"><c>gl:normal()</c></seemfa>, <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord()</c></seemfa>, and <seemfa marker="gl#color3b/3"><c>gl:color()</c></seemfa> commands, except that the generated values do not update the current normal, texture coordinates, or color. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMap2.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="mapGrid1d" arity="3" clause_i="1" since=""/>
    <name name="mapGrid1f" arity="3" clause_i="1" since=""/>
    <name name="mapGrid2d" arity="6" clause_i="1" since=""/>
    <name name="mapGrid2f" arity="6" clause_i="1" since=""/>
    <fsummary>define a one- or two-dimensional mesh</fsummary>
    <desc>
    <p><seemfa marker="gl#mapGrid1d/3"><c>gl:mapGrid()</c></seemfa> and <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa> are used together to efficiently generate and evaluate a series of evenly-spaced map domain values. <seemfa marker="gl#evalMesh1/3"><c>gl:evalMesh()</c></seemfa> steps through the integer domain of a one- or two-dimensional grid, whose range is the domain of the evaluation maps specified by <c>glMap1</c> and <c>glMap2</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMapGrid.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="materialf" arity="3" clause_i="1" since=""/>
    <name name="materialfv" arity="3" clause_i="1" since=""/>
    <name name="materiali" arity="3" clause_i="1" since=""/>
    <name name="materialiv" arity="3" clause_i="1" since=""/>
    <fsummary>specify material parameters for the lighting model</fsummary>
    <desc>
    <p><seemfa marker="gl#materialf/3"><c>gl:material()</c></seemfa> assigns values to material parameters. There are two matched sets of material parameters. One, the <c>front-facing</c> set, is used to shade points, lines, bitmaps, and all polygons (when two-sided lighting is disabled), or just front-facing polygons (when two-sided lighting is enabled). The other set, <c>back-facing</c>, is used to shade back-facing polygons only when two-sided lighting is enabled. Refer to the <seemfa marker="gl#lightModelf/2"><c>gl:lightModel()</c></seemfa> reference page for details concerning one- and two-sided lighting calculations. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMaterial.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="matrixMode" arity="1" clause_i="1" since=""/>
    <fsummary>specify which matrix is the current matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa> sets the current matrix mode. <c>Mode</c> can assume one of four values: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMatrixMode.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="memoryBarrier" arity="1" clause_i="1" since=""/>
    <name name="memoryBarrierByRegion" arity="1" clause_i="1" since=""/>
    <fsummary>defines a barrier ordering memory transactions</fsummary>
    <desc>
    <p><seemfa marker="gl#memoryBarrier/1"><c>gl:memoryBarrier/1</c></seemfa> defines a barrier ordering the memory transactions issued prior to the command relative to those issued after the barrier. For the purposes of this ordering, memory transactions performed by shaders are considered to be issued by the rendering command that triggered the execution of the shader. <c>Barriers</c> is a bitfield indicating the set of operations that are synchronized with shader stores; the bits used in <c>Barriers</c> are as follows: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glMemoryBarrier.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="minSampleShading" arity="1" clause_i="1" since=""/>
    <fsummary>specifies minimum rate at which sample shading takes place</fsummary>
    <desc>
    <p><seemfa marker="gl#minSampleShading/1"><c>gl:minSampleShading/1</c></seemfa> specifies the rate at which samples are shaded within a covered pixel. Sample-rate shading is enabled by calling <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> with the parameter <c>?GL_SAMPLE_SHADING</c>. If <c>?GL_MULTISAMPLE</c> or <c>?GL_SAMPLE_SHADING</c> is disabled, sample shading has no effect. Otherwise, an implementation must provide at least as many unique color values for each covered fragment as specified by <c>Value</c> times <c>Samples</c> where <c>Samples</c> is the value of <c>?GL_SAMPLES</c> for the current framebuffer. At least 1 sample for each covered fragment is generated. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glMinSampleShading.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="minmax" arity="3" clause_i="1" since=""/>
    <fsummary>define minmax table</fsummary>
    <desc>
    <p> When <c>?GL_MINMAX</c> is enabled, the RGBA components of incoming pixels are compared to the minimum and maximum values for each component, which are stored in the two-element minmax table. (The first element stores the minima, and the second element stores the maxima.) If a pixel component is greater than the corresponding component in the maximum element, then the maximum element is updated with the pixel component value. If a pixel component is less than the corresponding component in the minimum element, then the minimum element is updated with the pixel component value. (In both cases, if the internal format of the minmax table includes luminance, then the R color component of incoming pixels is used for comparison.) The contents of the minmax table may be retrieved at a later time by calling <seemfa marker="gl#getMinmax/5"><c>gl:getMinmax/5</c></seemfa>. The minmax operation is enabled or disabled by calling <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> or <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa>, respectively, with an argument of <c>?GL_MINMAX</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMinmax.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="multMatrixd" arity="1" clause_i="1" since=""/>
    <name name="multMatrixf" arity="1" clause_i="1" since=""/>
    <fsummary>multiply the current matrix with the specified matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#multMatrixd/1"><c>gl:multMatrix()</c></seemfa> multiplies the current matrix with the one specified using <c>M</c>, and replaces the current matrix with the product. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMultMatrix.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="multTransposeMatrixd" arity="1" clause_i="1" since=""/>
    <name name="multTransposeMatrixf" arity="1" clause_i="1" since=""/>
    <fsummary>multiply the current matrix with the specified row-major ordered matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#multTransposeMatrixf/1"><c>gl:multTransposeMatrix()</c></seemfa> multiplies the current matrix with the one specified using <c>M</c>, and replaces the current matrix with the product. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMultTransposeMatrix.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="multiDrawArrays" arity="3" clause_i="1" since=""/>
    <fsummary>render multiple sets of primitives from array data</fsummary>
    <desc>
    <p><seemfa marker="gl#multiDrawArrays/3"><c>gl:multiDrawArrays/3</c></seemfa> specifies multiple sets of geometric primitives with very few subroutine calls. Instead of calling a GL procedure to pass each individual vertex, normal, texture coordinate, edge flag, or color, you can prespecify separate arrays of vertices, normals, and colors and use them to construct a sequence of primitives with a single call to <seemfa marker="gl#multiDrawArrays/3"><c>gl:multiDrawArrays/3</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glMultiDrawArrays.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="multiDrawArraysIndirect" arity="4" clause_i="1" since=""/>
    <fsummary>render multiple sets of primitives from array data, taking parameters from memory</fsummary>
    <desc>
    <p><seemfa marker="gl#multiDrawArraysIndirect/4"><c>gl:multiDrawArraysIndirect/4</c></seemfa> specifies multiple geometric primitives with very few subroutine calls. <seemfa marker="gl#multiDrawArraysIndirect/4"><c>gl:multiDrawArraysIndirect/4</c></seemfa> behaves similarly to a multitude of calls to <seemfa marker="gl#drawArraysInstancedBaseInstance/5"><c>gl:drawArraysInstancedBaseInstance/5</c></seemfa>, execept that the parameters to each call to <seemfa marker="gl#drawArraysInstancedBaseInstance/5"><c>gl:drawArraysInstancedBaseInstance/5</c></seemfa> are stored in an array in memory at the address given by <c>Indirect</c>, separated by the stride, in basic machine units, specified by <c>Stride</c>. If <c>Stride</c> is zero, then the array is assumed to be tightly packed in memory. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glMultiDrawArraysIndirect.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="multiDrawArraysIndirectCount" arity="5" clause_i="1" since=""/>
    <fsummary/>
    <desc><p>No documentation available.</p></desc>
  </func>
  <func>
    <name name="multiTexCoord1d" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1dv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1f" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1fv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1i" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1iv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1s" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord1sv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord2d" arity="3" clause_i="1" since=""/>
    <name name="multiTexCoord2dv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord2f" arity="3" clause_i="1" since=""/>
    <name name="multiTexCoord2fv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord2i" arity="3" clause_i="1" since=""/>
    <name name="multiTexCoord2iv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord2s" arity="3" clause_i="1" since=""/>
    <name name="multiTexCoord2sv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord3d" arity="4" clause_i="1" since=""/>
    <name name="multiTexCoord3dv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord3f" arity="4" clause_i="1" since=""/>
    <name name="multiTexCoord3fv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord3i" arity="4" clause_i="1" since=""/>
    <name name="multiTexCoord3iv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord3s" arity="4" clause_i="1" since=""/>
    <name name="multiTexCoord3sv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord4d" arity="5" clause_i="1" since=""/>
    <name name="multiTexCoord4dv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord4f" arity="5" clause_i="1" since=""/>
    <name name="multiTexCoord4fv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord4i" arity="5" clause_i="1" since=""/>
    <name name="multiTexCoord4iv" arity="2" clause_i="1" since=""/>
    <name name="multiTexCoord4s" arity="5" clause_i="1" since=""/>
    <name name="multiTexCoord4sv" arity="2" clause_i="1" since=""/>
    <fsummary>set the current texture coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#multiTexCoord1d/2"><c>gl:multiTexCoord()</c></seemfa> specifies texture coordinates in one, two, three, or four dimensions. <seemfa marker="gl#multiTexCoord1d/2"><c>gl:multiTexCoord1()</c></seemfa> sets the current texture coordinates to  (s 0 0 1); a call to <seemfa marker="gl#multiTexCoord1d/2"><c>gl:multiTexCoord2()</c></seemfa> sets them to  (s t 0 1). Similarly, <seemfa marker="gl#multiTexCoord1d/2"><c>gl:multiTexCoord3()</c></seemfa> specifies the texture coordinates as (s t r 1), and <seemfa marker="gl#multiTexCoord1d/2"><c>gl:multiTexCoord4()</c></seemfa> defines all four components explicitly as (s t r q). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glMultiTexCoord.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="endList" arity="0" clause_i="1" since=""/>
    <name name="newList" arity="2" clause_i="1" since=""/>
    <fsummary>create or replace a display list</fsummary>
    <desc>
    <p> Display lists are groups of GL commands that have been stored for subsequent execution. Display lists are created with <seemfa marker="gl#newList/2"><c>gl:newList/2</c></seemfa>. All subsequent commands are placed in the display list, in the order issued, until <seemfa marker="gl#newList/2"><c>gl:endList/0</c></seemfa> is called. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glNewList.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="normal3b" arity="3" clause_i="1" since=""/>
    <name name="normal3bv" arity="1" clause_i="1" since=""/>
    <name name="normal3d" arity="3" clause_i="1" since=""/>
    <name name="normal3dv" arity="1" clause_i="1" since=""/>
    <name name="normal3f" arity="3" clause_i="1" since=""/>
    <name name="normal3fv" arity="1" clause_i="1" since=""/>
    <name name="normal3i" arity="3" clause_i="1" since=""/>
    <name name="normal3iv" arity="1" clause_i="1" since=""/>
    <name name="normal3s" arity="3" clause_i="1" since=""/>
    <name name="normal3sv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current normal vector</fsummary>
    <desc>
    <p> The current normal is set to the given coordinates whenever <seemfa marker="gl#normal3b/3"><c>gl:normal()</c></seemfa> is issued. Byte, short, or integer arguments are converted to floating-point format with a linear mapping that maps the most positive representable integer value to 1.0 and the most negative representable integer value to   -1.0. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glNormal.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="normalPointer" arity="3" clause_i="1" since=""/>
    <fsummary>define an array of normals</fsummary>
    <desc>
    <p><seemfa marker="gl#normalPointer/3"><c>gl:normalPointer/3</c></seemfa> specifies the location and data format of an array of normals to use when rendering. <c>Type</c> specifies the data type of each normal coordinate, and <c>Stride</c> specifies the byte stride from one normal to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. (Single-array storage may be more efficient on some implementations; see <seemfa marker="gl#interleavedArrays/3"><c>gl:interleavedArrays/3</c></seemfa>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glNormalPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="objectPtrLabel" arity="3" clause_i="1" since=""/>
    <fsummary>label a sync object identified by a pointer</fsummary>
    <desc>
    <p><seemfa marker="gl#objectPtrLabel/3"><c>gl:objectPtrLabel/3</c></seemfa> labels the sync object identified by <c>Ptr</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glObjectPtrLabel.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="ortho" arity="6" clause_i="1" since=""/>
    <fsummary>multiply the current matrix with an orthographic matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#ortho/6"><c>gl:ortho/6</c></seemfa> describes a transformation that produces a parallel projection. The current matrix (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>) is multiplied by this matrix and the result replaces the current matrix, as if <seemfa marker="gl#multMatrixd/1"><c>gl:multMatrix()</c></seemfa> were called with the following matrix as its argument: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glOrtho.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="passThrough" arity="1" clause_i="1" since=""/>
    <fsummary>place a marker in the feedback buffer</fsummary>
    <desc>
    <p/>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPassThrough.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="patchParameterfv" arity="2" clause_i="1" since=""/>
    <name name="patchParameteri" arity="2" clause_i="1" since=""/>
    <fsummary>specifies the parameters for patch primitives</fsummary>
    <desc>
    <p><seemfa marker="gl#patchParameteri/2"><c>gl:patchParameter()</c></seemfa> specifies the parameters that will be used for patch primitives. <c>Pname</c> specifies the parameter to modify and must be either <c>?GL_PATCH_VERTICES</c>, <c>?GL_PATCH_DEFAULT_OUTER_LEVEL</c> or <c>?GL_PATCH_DEFAULT_INNER_LEVEL</c>. For <seemfa marker="gl#patchParameteri/2"><c>gl:patchParameteri/2</c></seemfa>, <c>Value</c> specifies the new value for the parameter specified by <c>Pname</c>. For <seemfa marker="gl#patchParameteri/2"><c>gl:patchParameterfv/2</c></seemfa>, <c>Values</c> specifies the address of an array containing the new values for the parameter specified by <c>Pname</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPatchParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pauseTransformFeedback" arity="0" clause_i="1" since=""/>
    <fsummary>pause transform feedback operations</fsummary>
    <desc>
    <p><seemfa marker="gl#pauseTransformFeedback/0"><c>gl:pauseTransformFeedback/0</c></seemfa> pauses transform feedback operations on the currently active transform feedback object. When transform feedback operations are paused, transform feedback is still considered active and changing most transform feedback state related to the object results in an error. However, a new transform feedback object may be bound while transform feedback is paused. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPauseTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pixelMapfv" arity="3" clause_i="1" since=""/>
    <name name="pixelMapuiv" arity="3" clause_i="1" since=""/>
    <name name="pixelMapusv" arity="3" clause_i="1" since=""/>
    <fsummary>set up pixel transfer maps</fsummary>
    <desc>
    <p><seemfa marker="gl#pixelMapfv/3"><c>gl:pixelMap()</c></seemfa> sets up translation tables, or <c>maps</c>, used by <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>, <seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa>, <seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, <seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa>, <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>, <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa>, <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa>, <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa>, <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>, <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>, and <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>. Additionally, if the ARB_imaging subset is supported, the routines <seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa>, <seemfa marker="gl#colorSubTable/6"><c>gl:colorSubTable/6</c></seemfa>, <seemfa marker="gl#convolutionFilter1D/6"><c>gl:convolutionFilter1D/6</c></seemfa>, <seemfa marker="gl#convolutionFilter2D/7"><c>gl:convolutionFilter2D/7</c></seemfa>, <seemfa marker="gl#histogram/4"><c>gl:histogram/4</c></seemfa>, <seemfa marker="gl#minmax/3"><c>gl:minmax/3</c></seemfa>, and <seemfa marker="gl#separableFilter2D/8"><c>gl:separableFilter2D/8</c></seemfa>. Use of these maps is described completely in the <seemfa marker="gl#pixelTransferf/2"><c>gl:pixelTransfer()</c></seemfa> reference page, and partly in the reference pages for the pixel and texture image commands. Only the specification of the maps is described in this reference page. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPixelMap.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pixelStoref" arity="2" clause_i="1" since=""/>
    <name name="pixelStorei" arity="2" clause_i="1" since=""/>
    <fsummary>set pixel storage modes</fsummary>
    <desc>
    <p><seemfa marker="gl#pixelStoref/2"><c>gl:pixelStore()</c></seemfa> sets pixel storage modes that affect the operation of subsequent <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa> as well as the unpacking of texture patterns (see <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa>, <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa>, <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa>, <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>, <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>, <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>), <seemfa marker="gl#compressedTexImage1D/7"><c>gl:compressedTexImage1D/7</c></seemfa>, <seemfa marker="gl#compressedTexImage2D/8"><c>gl:compressedTexImage2D/8</c></seemfa>, <seemfa marker="gl#compressedTexImage3D/9"><c>gl:compressedTexImage3D/9</c></seemfa>, <seemfa marker="gl#compressedTexSubImage1D/7"><c>gl:compressedTexSubImage1D/7</c></seemfa>, <seemfa marker="gl#compressedTexSubImage2D/9"><c>gl:compressedTexSubImage2D/9</c></seemfa> or <seemfa marker="gl#compressedTexSubImage1D/7"><c>gl:compressedTexSubImage1D/7</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelStore.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pixelTransferf" arity="2" clause_i="1" since=""/>
    <name name="pixelTransferi" arity="2" clause_i="1" since=""/>
    <fsummary>set pixel transfer modes</fsummary>
    <desc>
    <p><seemfa marker="gl#pixelTransferf/2"><c>gl:pixelTransfer()</c></seemfa> sets pixel transfer modes that affect the operation of subsequent <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>, <seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa>, <seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, <seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa>, <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>, <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa>, <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa>, <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa>, <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>, <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>, and <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa> commands. Additionally, if the ARB_imaging subset is supported, the routines <seemfa marker="gl#colorTable/6"><c>gl:colorTable/6</c></seemfa>, <seemfa marker="gl#colorSubTable/6"><c>gl:colorSubTable/6</c></seemfa>, <seemfa marker="gl#convolutionFilter1D/6"><c>gl:convolutionFilter1D/6</c></seemfa>, <seemfa marker="gl#convolutionFilter2D/7"><c>gl:convolutionFilter2D/7</c></seemfa>, <seemfa marker="gl#histogram/4"><c>gl:histogram/4</c></seemfa>, <seemfa marker="gl#minmax/3"><c>gl:minmax/3</c></seemfa>, and <seemfa marker="gl#separableFilter2D/8"><c>gl:separableFilter2D/8</c></seemfa> are also affected. The algorithms that are specified by pixel transfer modes operate on pixels after they are read from the frame buffer (<seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa><seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa>, <seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, <seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa>, and <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>), or unpacked from client memory (<seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, <seemfa marker="gl#texImage1D/8"><c>gl:texImage1D/8</c></seemfa>, <seemfa marker="gl#texImage2D/9"><c>gl:texImage2D/9</c></seemfa>, <seemfa marker="gl#texImage3D/10"><c>gl:texImage3D/10</c></seemfa>, <seemfa marker="gl#texSubImage1D/7"><c>gl:texSubImage1D/7</c></seemfa>, <seemfa marker="gl#texSubImage2D/9"><c>gl:texSubImage2D/9</c></seemfa>, and <seemfa marker="gl#texSubImage3D/11"><c>gl:texSubImage3D/11</c></seemfa>). Pixel transfer operations happen in the same order, and in the same manner, regardless of the command that resulted in the pixel operation. Pixel storage modes (see <seemfa marker="gl#pixelStoref/2"><c>gl:pixelStore()</c></seemfa>) control the unpacking of pixels being read from client memory and the packing of pixels being written back into client memory. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPixelTransfer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pixelZoom" arity="2" clause_i="1" since=""/>
    <fsummary>specify the pixel zoom factors</fsummary>
    <desc>
    <p><seemfa marker="gl#pixelZoom/2"><c>gl:pixelZoom/2</c></seemfa> specifies values for the   x and   y zoom factors. During the execution of <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa> or <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>, if  ( xr,   yr) is the current raster position, and a given element is in the   mth row and   nth column of the pixel rectangle, then pixels whose centers are in the rectangle with corners at </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPixelZoom.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pointParameterf" arity="2" clause_i="1" since=""/>
    <name name="pointParameterfv" arity="2" clause_i="1" since=""/>
    <name name="pointParameteri" arity="2" clause_i="1" since=""/>
    <name name="pointParameteriv" arity="2" clause_i="1" since=""/>
    <fsummary>specify point parameters</fsummary>
    <desc>
    <p> The following values are accepted for <c>Pname</c>: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPointParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="pointSize" arity="1" clause_i="1" since=""/>
    <fsummary>specify the diameter of rasterized points</fsummary>
    <desc>
    <p><seemfa marker="gl#pointSize/1"><c>gl:pointSize/1</c></seemfa> specifies the rasterized diameter of points. If point size mode is disabled (see <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> with parameter <c>?GL_PROGRAM_POINT_SIZE</c>), this value will be used to rasterize points. Otherwise, the value written to the shading language built-in variable gl_PointSize will be used. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPointSize.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="polygonMode" arity="2" clause_i="1" since=""/>
    <fsummary>select a polygon rasterization mode</fsummary>
    <desc>
    <p><seemfa marker="gl#polygonMode/2"><c>gl:polygonMode/2</c></seemfa> controls the interpretation of polygons for rasterization. <c>Face</c> describes which polygons <c>Mode</c> applies to: both front and back-facing polygons (<c>?GL_FRONT_AND_BACK</c>). The polygon mode affects only the final rasterization of polygons. In particular, a polygon's vertices are lit and the polygon is clipped and possibly culled before these modes are applied. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonMode.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="polygonOffset" arity="2" clause_i="1" since=""/>
    <fsummary>set the scale and units used to calculate depth values</fsummary>
    <desc>
    <p> When <c>?GL_POLYGON_OFFSET_FILL</c>, <c>?GL_POLYGON_OFFSET_LINE</c>, or <c>?GL_POLYGON_OFFSET_POINT</c> is enabled, each fragment's <c>depth</c> value will be offset after it is interpolated from the <c>depth</c> values of the appropriate vertices. The value of the offset is  factor×DZ+r×units, where  DZ is a measurement of the change in depth relative to the screen area of the polygon, and  r is the smallest value that is guaranteed to produce a resolvable offset for a given implementation. The offset is added before the depth test is performed and before the value is written into the depth buffer. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonOffset.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="polygonOffsetClamp" arity="3" clause_i="1" since=""/>
    <fsummary/>
    <desc><p>No documentation available.</p></desc>
  </func>
  <func>
    <name name="polygonStipple" arity="1" clause_i="1" since=""/>
    <fsummary>set the polygon stippling pattern</fsummary>
    <desc>
    <p> Polygon stippling, like line stippling (see <seemfa marker="gl#lineStipple/2"><c>gl:lineStipple/2</c></seemfa>), masks out certain fragments produced by rasterization, creating a pattern. Stippling is independent of polygon antialiasing. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPolygonStipple.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="primitiveRestartIndex" arity="1" clause_i="1" since=""/>
    <fsummary>specify the primitive restart index</fsummary>
    <desc>
    <p><seemfa marker="gl#primitiveRestartIndex/1"><c>gl:primitiveRestartIndex/1</c></seemfa> specifies a vertex array element that is treated specially when primitive restarting is enabled. This is known as the primitive restart index. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPrimitiveRestartIndex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="prioritizeTextures" arity="2" clause_i="1" since=""/>
    <fsummary>set texture residence priority</fsummary>
    <desc>
    <p><seemfa marker="gl#prioritizeTextures/2"><c>gl:prioritizeTextures/2</c></seemfa> assigns the <c>N</c> texture priorities given in <c>Priorities</c> to the <c>N</c> textures named in <c>Textures</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPrioritizeTextures.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="programBinary" arity="3" clause_i="1" since=""/>
    <fsummary>load a program object with a program binary</fsummary>
    <desc>
    <p><seemfa marker="gl#programBinary/3"><c>gl:programBinary/3</c></seemfa> loads a program object with a program binary previously returned from <seemfa marker="gl#getProgramBinary/2"><c>gl:getProgramBinary/2</c></seemfa>. <c>BinaryFormat</c> and <c>Binary</c> must be those returned by a previous call to <seemfa marker="gl#getProgramBinary/2"><c>gl:getProgramBinary/2</c></seemfa>, and <c>Length</c> must be the length returned by <seemfa marker="gl#getProgramBinary/2"><c>gl:getProgramBinary/2</c></seemfa>, or by <seemfa marker="gl#getProgramiv/2"><c>gl:getProgram()</c></seemfa> when called with <c>Pname</c> set to <c>?GL_PROGRAM_BINARY_LENGTH</c>. If these conditions are not met, loading the program binary will fail and <c>Program</c>'s <c>?GL_LINK_STATUS</c> will be set to <c>?GL_FALSE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glProgramBinary.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="programParameteri" arity="3" clause_i="1" since=""/>
    <fsummary>specify a parameter for a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#programParameteri/3"><c>gl:programParameter()</c></seemfa> specifies a new value for the parameter nameed by <c>Pname</c> for the program object <c>Program</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glProgramParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="programUniform1d" arity="3" clause_i="1" since=""/>
    <name name="programUniform1dv" arity="3" clause_i="1" since=""/>
    <name name="programUniform1f" arity="3" clause_i="1" since=""/>
    <name name="programUniform1fv" arity="3" clause_i="1" since=""/>
    <name name="programUniform1i" arity="3" clause_i="1" since=""/>
    <name name="programUniform1iv" arity="3" clause_i="1" since=""/>
    <name name="programUniform1ui" arity="3" clause_i="1" since=""/>
    <name name="programUniform1uiv" arity="3" clause_i="1" since=""/>
    <name name="programUniform2d" arity="4" clause_i="1" since=""/>
    <name name="programUniform2dv" arity="3" clause_i="1" since=""/>
    <name name="programUniform2f" arity="4" clause_i="1" since=""/>
    <name name="programUniform2fv" arity="3" clause_i="1" since=""/>
    <name name="programUniform2i" arity="4" clause_i="1" since=""/>
    <name name="programUniform2iv" arity="3" clause_i="1" since=""/>
    <name name="programUniform2ui" arity="4" clause_i="1" since=""/>
    <name name="programUniform2uiv" arity="3" clause_i="1" since=""/>
    <name name="programUniform3d" arity="5" clause_i="1" since=""/>
    <name name="programUniform3dv" arity="3" clause_i="1" since=""/>
    <name name="programUniform3f" arity="5" clause_i="1" since=""/>
    <name name="programUniform3fv" arity="3" clause_i="1" since=""/>
    <name name="programUniform3i" arity="5" clause_i="1" since=""/>
    <name name="programUniform3iv" arity="3" clause_i="1" since=""/>
    <name name="programUniform3ui" arity="5" clause_i="1" since=""/>
    <name name="programUniform3uiv" arity="3" clause_i="1" since=""/>
    <name name="programUniform4d" arity="6" clause_i="1" since=""/>
    <name name="programUniform4dv" arity="3" clause_i="1" since=""/>
    <name name="programUniform4f" arity="6" clause_i="1" since=""/>
    <name name="programUniform4fv" arity="3" clause_i="1" since=""/>
    <name name="programUniform4i" arity="6" clause_i="1" since=""/>
    <name name="programUniform4iv" arity="3" clause_i="1" since=""/>
    <name name="programUniform4ui" arity="6" clause_i="1" since=""/>
    <name name="programUniform4uiv" arity="3" clause_i="1" since=""/>
    <name name="programUniformMatrix2dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix2fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix2x3dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix2x3fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix2x4dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix2x4fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3x2dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3x2fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3x4dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix3x4fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4x2dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4x2fv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4x3dv" arity="4" clause_i="1" since=""/>
    <name name="programUniformMatrix4x3fv" arity="4" clause_i="1" since=""/>
    <fsummary>Specify the value of a uniform variable for a specified program object</fsummary>
    <desc>
    <p><seemfa marker="gl#programUniform1i/3"><c>gl:programUniform()</c></seemfa> modifies the value of a uniform variable or a uniform variable array. The location of the uniform variable to be modified is specified by <c>Location</c>, which should be a value returned by <seemfa marker="gl#getUniformLocation/2"><c>gl:getUniformLocation/2</c></seemfa>. <seemfa marker="gl#programUniform1i/3"><c>gl:programUniform()</c></seemfa> operates on the program object specified by <c>Program</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glProgramUniform.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="provokingVertex" arity="1" clause_i="1" since=""/>
    <fsummary>specifiy the vertex to be used as the source of data for flat shaded varyings</fsummary>
    <desc>
    <p><c>Flatshading</c> a vertex shader varying output means to assign all vetices of the primitive the same value for that output. The vertex from which these values is derived is known as the <c>provoking vertex</c> and <seemfa marker="gl#provokingVertex/1"><c>gl:provokingVertex/1</c></seemfa> specifies which vertex is to be used as the source of data for flat shaded varyings. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glProvokingVertex.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="popAttrib" arity="0" clause_i="1" since=""/>
    <name name="pushAttrib" arity="1" clause_i="1" since=""/>
    <fsummary>push and pop the server attribute stack</fsummary>
    <desc>
    <p><seemfa marker="gl#pushAttrib/1"><c>gl:pushAttrib/1</c></seemfa> takes one argument, a mask that indicates which groups of state variables to save on the attribute stack. Symbolic constants are used to set bits in the mask. <c>Mask</c> is typically constructed by specifying the bitwise-or of several  of these constants together. The special mask <c>?GL_ALL_ATTRIB_BITS</c> can be used to save all stackable states. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPushAttrib.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="popClientAttrib" arity="0" clause_i="1" since=""/>
    <name name="pushClientAttrib" arity="1" clause_i="1" since=""/>
    <fsummary>push and pop the client attribute stack</fsummary>
    <desc>
    <p><seemfa marker="gl#pushClientAttrib/1"><c>gl:pushClientAttrib/1</c></seemfa> takes one argument, a mask that indicates which groups of client-state variables to save on the client attribute stack. Symbolic constants are used to set bits in the mask. <c>Mask</c> is typically constructed by specifying the bitwise-or of several   of these constants together. The special mask <c>?GL_CLIENT_ALL_ATTRIB_BITS</c> can be used to save all stackable client state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPushClientAttrib.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="popDebugGroup" arity="0" clause_i="1" since=""/>
    <name name="pushDebugGroup" arity="4" clause_i="1" since=""/>
    <fsummary>push a named debug group into the command stream</fsummary>
    <desc>
    <p><seemfa marker="gl#pushDebugGroup/4"><c>gl:pushDebugGroup/4</c></seemfa> pushes a debug group described by the string <c>Message</c> into the command stream. The value of <c>Id</c> specifies the ID of messages generated. The parameter <c>Length</c> contains the number of characters in <c>Message</c>. If <c>Length</c> is negative, it is implied that <c>Message</c> contains a null terminated string. The message has the specified <c>Source</c> and <c>Id</c>, the <c>Type</c><c>?GL_DEBUG_TYPE_PUSH_GROUP</c>, and <c>Severity</c><c>?GL_DEBUG_SEVERITY_NOTIFICATION</c>. The GL will put a new debug group on top of the debug group stack which inherits the control of the volume of debug output of the debug group previously residing on the top of the debug group stack. Because debug groups are strictly hierarchical, any additional control of the debug output volume will only apply within the active debug group and the debug groups pushed on top of the active debug group. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glPushDebugGroup.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="popMatrix" arity="0" clause_i="1" since=""/>
    <name name="pushMatrix" arity="0" clause_i="1" since=""/>
    <fsummary>push and pop the current matrix stack</fsummary>
    <desc>
    <p> There is a stack of matrices for each of the matrix modes. In <c>?GL_MODELVIEW</c> mode, the stack depth is at least 32. In the other modes, <c>?GL_COLOR</c>, <c>?GL_PROJECTION</c>, and <c>?GL_TEXTURE</c>, the depth is at least 2. The current matrix in any mode is the matrix on the top of the stack for that mode. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPushMatrix.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="popName" arity="0" clause_i="1" since=""/>
    <name name="pushName" arity="1" clause_i="1" since=""/>
    <fsummary>push and pop the name stack</fsummary>
    <desc>
    <p> The name stack is used during selection mode to allow sets of rendering commands to be uniquely identified. It consists of an ordered set of unsigned integers and is initially empty. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glPushName.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="queryCounter" arity="2" clause_i="1" since=""/>
    <fsummary>record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed.</fsummary>
    <desc>
    <p><seemfa marker="gl#queryCounter/2"><c>gl:queryCounter/2</c></seemfa> causes the GL to record the current time into the query object named <c>Id</c>. <c>Target</c> must be <c>?GL_TIMESTAMP</c>. The time is recorded after all previous commands on the GL client and server state and the framebuffer have been fully realized. When the time is recorded, the query result for that object is marked available. <seemfa marker="gl#queryCounter/2"><c>gl:queryCounter/2</c></seemfa> timer queries can be used within a <seemfa marker="gl#beginQuery/2"><c>gl:beginQuery/2</c></seemfa> / <seemfa marker="gl#beginQuery/2"><c>gl:endQuery/1</c></seemfa> block where the target is <c>?GL_TIME_ELAPSED</c> and it does not affect the result of that query object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glQueryCounter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="rasterPos2d" arity="2" clause_i="1" since=""/>
    <name name="rasterPos2dv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos2f" arity="2" clause_i="1" since=""/>
    <name name="rasterPos2fv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos2i" arity="2" clause_i="1" since=""/>
    <name name="rasterPos2iv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos2s" arity="2" clause_i="1" since=""/>
    <name name="rasterPos2sv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos3d" arity="3" clause_i="1" since=""/>
    <name name="rasterPos3dv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos3f" arity="3" clause_i="1" since=""/>
    <name name="rasterPos3fv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos3i" arity="3" clause_i="1" since=""/>
    <name name="rasterPos3iv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos3s" arity="3" clause_i="1" since=""/>
    <name name="rasterPos3sv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos4d" arity="4" clause_i="1" since=""/>
    <name name="rasterPos4dv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos4f" arity="4" clause_i="1" since=""/>
    <name name="rasterPos4fv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos4i" arity="4" clause_i="1" since=""/>
    <name name="rasterPos4iv" arity="1" clause_i="1" since=""/>
    <name name="rasterPos4s" arity="4" clause_i="1" since=""/>
    <name name="rasterPos4sv" arity="1" clause_i="1" since=""/>
    <fsummary>specify the raster position for pixel operations</fsummary>
    <desc>
    <p> The GL maintains a 3D position in window coordinates. This position, called the raster position, is used to position pixel and bitmap write operations. It is maintained with subpixel accuracy. See <seemfa marker="gl#bitmap/7"><c>gl:bitmap/7</c></seemfa>, <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, and <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glRasterPos.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="readBuffer" arity="1" clause_i="1" since=""/>
    <fsummary>select a color buffer source for pixels</fsummary>
    <desc>
    <p><seemfa marker="gl#readBuffer/1"><c>gl:readBuffer/1</c></seemfa> specifies a color buffer as the source for subsequent <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa>, <seemfa marker="gl#copyTexImage1D/7"><c>gl:copyTexImage1D/7</c></seemfa>, <seemfa marker="gl#copyTexImage2D/8"><c>gl:copyTexImage2D/8</c></seemfa>, <seemfa marker="gl#copyTexSubImage1D/6"><c>gl:copyTexSubImage1D/6</c></seemfa>, <seemfa marker="gl#copyTexSubImage2D/8"><c>gl:copyTexSubImage2D/8</c></seemfa>, and <seemfa marker="gl#copyTexSubImage3D/9"><c>gl:copyTexSubImage3D/9</c></seemfa> commands. <c>Mode</c> accepts one of twelve or more predefined values. In a fully configured system, <c>?GL_FRONT</c>, <c>?GL_LEFT</c>, and <c>?GL_FRONT_LEFT</c> all name the front left buffer, <c>?GL_FRONT_RIGHT</c> and <c>?GL_RIGHT</c> name the front right buffer, and <c>?GL_BACK_LEFT</c> and <c>?GL_BACK</c> name the back left buffer. Further more, the constants <c>?GL_COLOR_ATTACHMENT</c><c>i</c> may be used to indicate the <c>i</c>th color attachment where <c>i</c> ranges from zero to the value of <c>?GL_MAX_COLOR_ATTACHMENTS</c> minus one.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glReadBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="readPixels" arity="7" clause_i="1" since=""/>
    <fsummary>read a block of pixels from the frame buffer</fsummary>
    <desc>
    <p><seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa> and <c>glReadnPixels</c> return pixel data from the frame buffer, starting with the pixel whose lower left corner is at location (<c>X</c>, <c>Y</c>), into client memory starting at location <c>Data</c>. Several parameters control the processing of the pixel data before it is placed into client memory. These parameters are set with <seemfa marker="gl#pixelStoref/2"><c>gl:pixelStore()</c></seemfa>. This reference page describes the effects on <seemfa marker="gl#readPixels/7"><c>gl:readPixels/7</c></seemfa> and <c>glReadnPixels</c> of most, but not all of the parameters specified by these three commands.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glReadPixels.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="rectd" arity="4" clause_i="1" since=""/>
    <name name="rectdv" arity="2" clause_i="1" since=""/>
    <name name="rectf" arity="4" clause_i="1" since=""/>
    <name name="rectfv" arity="2" clause_i="1" since=""/>
    <name name="recti" arity="4" clause_i="1" since=""/>
    <name name="rectiv" arity="2" clause_i="1" since=""/>
    <name name="rects" arity="4" clause_i="1" since=""/>
    <name name="rectsv" arity="2" clause_i="1" since=""/>
    <fsummary>draw a rectangle</fsummary>
    <desc>
    <p><seemfa marker="gl#rectd/4"><c>gl:rect()</c></seemfa> supports efficient specification of rectangles as two corner points. Each rectangle command takes four arguments, organized either as two consecutive pairs of  (x y) coordinates or as two pointers to arrays, each containing an  (x y) pair. The resulting rectangle is defined in the   z=0 plane. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glRect.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="releaseShaderCompiler" arity="0" clause_i="1" since=""/>
    <fsummary>release resources consumed by the implementation's shader compiler</fsummary>
    <desc>
    <p><seemfa marker="gl#releaseShaderCompiler/0"><c>gl:releaseShaderCompiler/0</c></seemfa> provides a hint to the implementation that it may free internal resources associated with its shader compiler. <seemfa marker="gl#compileShader/1"><c>gl:compileShader/1</c></seemfa> may subsequently be called and the implementation may at that time reallocate resources previously freed by the call to <seemfa marker="gl#releaseShaderCompiler/0"><c>gl:releaseShaderCompiler/0</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glReleaseShaderCompiler.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="renderMode" arity="1" clause_i="1" since=""/>
    <fsummary>set rasterization mode</fsummary>
    <desc>
    <p><seemfa marker="gl#renderMode/1"><c>gl:renderMode/1</c></seemfa> sets the rasterization mode. It takes one argument, <c>Mode</c>, which can assume one of three predefined values: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glRenderMode.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="renderbufferStorage" arity="4" clause_i="1" since=""/>
    <fsummary>establish data storage, format and dimensions of a renderbuffer object's image</fsummary>
    <desc>
    <p><seemfa marker="gl#renderbufferStorage/4"><c>gl:renderbufferStorage/4</c></seemfa> is equivalent to calling <seemfa marker="gl#renderbufferStorageMultisample/5"><c>gl:renderbufferStorageMultisample/5</c></seemfa> with the <c>Samples</c> set to zero, and <c>glNamedRenderbufferStorage</c> is equivalent to calling <c>glNamedRenderbufferStorageMultisample</c> with the samples set to zero.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glRenderbufferStorage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="renderbufferStorageMultisample" arity="5" clause_i="1" since=""/>
    <fsummary>establish data storage, format, dimensions and sample count of a renderbuffer object's image</fsummary>
    <desc>
    <p><seemfa marker="gl#renderbufferStorageMultisample/5"><c>gl:renderbufferStorageMultisample/5</c></seemfa> and <c>glNamedRenderbufferStorageMultisample</c> establish the data storage, format, dimensions and number of samples of a renderbuffer object's image.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glRenderbufferStorageMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="resetHistogram" arity="1" clause_i="1" since=""/>
    <fsummary>reset histogram table entries to zero</fsummary>
    <desc>
    <p><seemfa marker="gl#resetHistogram/1"><c>gl:resetHistogram/1</c></seemfa> resets all the elements of the current histogram table to zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glResetHistogram.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="resetMinmax" arity="1" clause_i="1" since=""/>
    <fsummary>reset minmax table entries to initial values</fsummary>
    <desc>
    <p><seemfa marker="gl#resetMinmax/1"><c>gl:resetMinmax/1</c></seemfa> resets the elements of the current minmax table to their initial values: the ``maximum'' element receives the minimum possible component values, and the ``minimum'' element receives the maximum possible component values. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glResetMinmax.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="resumeTransformFeedback" arity="0" clause_i="1" since=""/>
    <fsummary>resume transform feedback operations</fsummary>
    <desc>
    <p><seemfa marker="gl#resumeTransformFeedback/0"><c>gl:resumeTransformFeedback/0</c></seemfa> resumes transform feedback operations on the currently active transform feedback object. When transform feedback operations are paused, transform feedback is still considered active and changing most transform feedback state related to the object results in an error. However, a new transform feedback object may be bound while transform feedback is paused. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glResumeTransformFeedback.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="rotated" arity="4" clause_i="1" since=""/>
    <name name="rotatef" arity="4" clause_i="1" since=""/>
    <fsummary>multiply the current matrix by a rotation matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#rotated/4"><c>gl:rotate()</c></seemfa> produces a rotation of <c>Angle</c> degrees around the vector  (x y z). The current matrix (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>) is multiplied by a rotation matrix with the product replacing the current matrix, as if <seemfa marker="gl#multMatrixd/1"><c>gl:multMatrix()</c></seemfa> were called with the following matrix as its argument: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glRotate.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="sampleCoverage" arity="2" clause_i="1" since=""/>
    <fsummary>specify multisample coverage parameters</fsummary>
    <desc>
    <p> Multisampling samples a pixel multiple times at various implementation-dependent subpixel locations to generate antialiasing effects. Multisampling transparently antialiases points, lines, polygons, and images if it is enabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glSampleCoverage.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="sampleMaski" arity="2" clause_i="1" since=""/>
    <fsummary>set the value of a sub-word of the sample mask</fsummary>
    <desc>
    <p><seemfa marker="gl#sampleMaski/2"><c>gl:sampleMaski/2</c></seemfa> sets one 32-bit sub-word of the multi-word sample mask, <c>?GL_SAMPLE_MASK_VALUE</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glSampleMaski.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="samplerParameterIiv" arity="3" clause_i="1" since=""/>
    <name name="samplerParameterIuiv" arity="3" clause_i="1" since=""/>
    <name name="samplerParameterf" arity="3" clause_i="1" since=""/>
    <name name="samplerParameterfv" arity="3" clause_i="1" since=""/>
    <name name="samplerParameteri" arity="3" clause_i="1" since=""/>
    <name name="samplerParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>set sampler parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#samplerParameteri/3"><c>gl:samplerParameter()</c></seemfa> assigns the value or values in <c>Params</c> to the sampler parameter specified as <c>Pname</c>. <c>Sampler</c> specifies the sampler object to be modified, and must be the name of a sampler object previously returned from a call to <seemfa marker="gl#genSamplers/1"><c>gl:genSamplers/1</c></seemfa>. The following symbols are accepted in <c>Pname</c>: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glSamplerParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="scaled" arity="3" clause_i="1" since=""/>
    <name name="scalef" arity="3" clause_i="1" since=""/>
    <fsummary>multiply the current matrix by a general scaling matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#scaled/3"><c>gl:scale()</c></seemfa> produces a nonuniform scaling along the <c>x</c>, <c>y</c>, and <c>z</c> axes. The three parameters indicate the desired scale factor along each of the three axes. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glScale.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="scissor" arity="4" clause_i="1" since=""/>
    <fsummary>define the scissor box</fsummary>
    <desc>
    <p><seemfa marker="gl#scissor/4"><c>gl:scissor/4</c></seemfa> defines a rectangle, called the scissor box, in window coordinates. The first two arguments, <c>X</c> and <c>Y</c>, specify the lower left corner of the box. <c>Width</c> and <c>Height</c> specify the width and height of the box. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glScissor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="scissorArrayv" arity="2" clause_i="1" since=""/>
    <fsummary>define the scissor box for multiple viewports</fsummary>
    <desc>
    <p><seemfa marker="gl#scissorArrayv/2"><c>gl:scissorArrayv/2</c></seemfa> defines rectangles, called scissor boxes, in window coordinates for each viewport. <c>First</c> specifies the index of the first scissor box to modify and <c>Count</c> specifies the number of scissor boxes to modify. <c>First</c> must be less than the value of <c>?GL_MAX_VIEWPORTS</c>, and <c>First</c> + <c>Count</c> must be less than or equal to the value of <c>?GL_MAX_VIEWPORTS</c>. <c>V</c> specifies the address of an array containing integers specifying the lower left corner of the scissor boxes, and the width and height of the scissor boxes, in that order. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glScissorArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="scissorIndexed" arity="5" clause_i="1" since=""/>
    <name name="scissorIndexedv" arity="2" clause_i="1" since=""/>
    <fsummary>define the scissor box for a specific viewport</fsummary>
    <desc>
    <p><seemfa marker="gl#scissorIndexed/5"><c>gl:scissorIndexed/5</c></seemfa> defines the scissor box for a specified viewport. <c>Index</c> specifies the index of scissor box to modify. <c>Index</c> must be less than the value of <c>?GL_MAX_VIEWPORTS</c>. For <seemfa marker="gl#scissorIndexed/5"><c>gl:scissorIndexed/5</c></seemfa>, <c>Left</c>, <c>Bottom</c>, <c>Width</c> and <c>Height</c> specify the left, bottom, width and height of the scissor box, in pixels, respectively. For <seemfa marker="gl#scissorIndexed/5"><c>gl:scissorIndexedv/2</c></seemfa>, <c>V</c> specifies the address of an array containing integers specifying the lower left corner of the scissor box, and the width and height of the scissor box, in that order. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glScissorIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="secondaryColor3b" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3bv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3d" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3dv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3f" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3fv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3i" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3iv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3s" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3sv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3ub" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3ubv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3ui" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3uiv" arity="1" clause_i="1" since=""/>
    <name name="secondaryColor3us" arity="3" clause_i="1" since=""/>
    <name name="secondaryColor3usv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current secondary color</fsummary>
    <desc>
    <p> The GL stores both a primary four-valued RGBA color and a secondary four-valued RGBA color (where alpha is always set to 0.0) that is associated with every vertex. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glSecondaryColor.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="secondaryColorPointer" arity="4" clause_i="1" since=""/>
    <fsummary>define an array of secondary colors</fsummary>
    <desc>
    <p><seemfa marker="gl#secondaryColorPointer/4"><c>gl:secondaryColorPointer/4</c></seemfa> specifies the location and data format of an array of color components to use when rendering. <c>Size</c> specifies the number of components per color, and must be 3. <c>Type</c> specifies the data type of each color component, and <c>Stride</c> specifies the byte stride from one color to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glSecondaryColorPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="selectBuffer" arity="2" clause_i="1" since=""/>
    <fsummary>establish a buffer for selection mode values</fsummary>
    <desc>
    <p><seemfa marker="gl#selectBuffer/2"><c>gl:selectBuffer/2</c></seemfa> has two arguments: <c>Buffer</c> is a pointer to an array of unsigned integers, and <c>Size</c> indicates the size of the array. <c>Buffer</c> returns values from the name stack (see <seemfa marker="gl#initNames/0"><c>gl:initNames/0</c></seemfa>, <seemfa marker="gl#loadName/1"><c>gl:loadName/1</c></seemfa>, <seemfa marker="gl#pushName/1"><c>gl:pushName/1</c></seemfa>) when the rendering mode is <c>?GL_SELECT</c> (see <seemfa marker="gl#renderMode/1"><c>gl:renderMode/1</c></seemfa>). <seemfa marker="gl#selectBuffer/2"><c>gl:selectBuffer/2</c></seemfa> must be issued before selection mode is enabled, and it must not be issued while the rendering mode is <c>?GL_SELECT</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glSelectBuffer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="separableFilter2D" arity="8" clause_i="1" since=""/>
    <fsummary>define a separable two-dimensional convolution filter</fsummary>
    <desc>
    <p><seemfa marker="gl#separableFilter2D/8"><c>gl:separableFilter2D/8</c></seemfa> builds a two-dimensional separable convolution filter kernel from two arrays of pixels. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glSeparableFilter2D.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="shadeModel" arity="1" clause_i="1" since=""/>
    <fsummary>select flat or smooth shading</fsummary>
    <desc>
    <p> GL primitives can have either flat or smooth shading. Smooth shading, the default, causes the computed colors of vertices to be interpolated as the primitive is rasterized, typically assigning different colors to each resulting pixel fragment. Flat shading selects the computed color of just one vertex and assigns it to all the pixel fragments generated by rasterizing a single primitive. In either case, the computed color of a vertex is the result of lighting if lighting is enabled, or it is the current color at the time the vertex was specified if lighting is disabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glShadeModel.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="shaderBinary" arity="3" clause_i="1" since=""/>
    <fsummary>load pre-compiled shader binaries</fsummary>
    <desc>
    <p><seemfa marker="gl#shaderBinary/3"><c>gl:shaderBinary/3</c></seemfa> loads pre-compiled shader binary code into the <c>Count</c> shader objects whose handles are given in <c>Shaders</c>. <c>Binary</c> points to <c>Length</c> bytes of binary shader code stored in client memory. <c>BinaryFormat</c> specifies the format of the pre-compiled code. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glShaderBinary.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="shaderSource" arity="2" clause_i="1" since=""/>
    <fsummary>Replaces the source code in a shader object</fsummary>
    <desc>
    <p><seemfa marker="gl#shaderSource/2"><c>gl:shaderSource/2</c></seemfa> sets the source code in <c>Shader</c> to the source code in the array of strings specified by <c>String</c>. Any source code previously stored in the shader object is completely replaced. The number of strings in the array is specified by <c>Count</c>. If <c>Length</c> is <c>?NULL</c>, each string is assumed to be null terminated. If <c>Length</c> is a value other than <c>?NULL</c>, it points to an array containing a string length for each of the corresponding elements of <c>String</c>. Each element in the <c>Length</c> array may contain the length of the corresponding string (the null character is not counted as part of the string length) or a value less than 0 to indicate that the string is null terminated. The source code strings are not scanned or parsed at this time; they are simply copied into the specified shader object.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glShaderSource.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="shaderStorageBlockBinding" arity="3" clause_i="1" since=""/>
    <fsummary>change an active shader storage block binding</fsummary>
    <desc>
    <p><seemfa marker="gl#shaderStorageBlockBinding/3"><c>gl:shaderStorageBlockBinding/3</c></seemfa>, changes the active shader storage block with an assigned index of <c>StorageBlockIndex</c> in program object <c>Program</c>. <c>StorageBlockIndex</c> must be an active shader storage block index in <c>Program</c>. <c>StorageBlockBinding</c> must be less than the value of <c>?GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS</c>. If successful, <seemfa marker="gl#shaderStorageBlockBinding/3"><c>gl:shaderStorageBlockBinding/3</c></seemfa> specifies that <c>Program</c> will use the data store of the buffer object bound to the binding point <c>StorageBlockBinding</c> to read and write the values of the buffer variables in the shader storage block identified by <c>StorageBlockIndex</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glShaderStorageBlockBinding.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilFunc" arity="3" clause_i="1" since=""/>
    <fsummary>set front and back function and reference value for stencil testing</fsummary>
    <desc>
    <p> Stenciling, like depth-buffering, enables and disables drawing on a per-pixel basis. Stencil planes are first drawn into using GL drawing primitives, then geometry and images are rendered using the stencil planes to mask out portions of the screen. Stenciling is typically used in multipass rendering algorithms to achieve special effects, such as decals, outlining, and constructive solid geometry rendering. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilFunc.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilFuncSeparate" arity="4" clause_i="1" since=""/>
    <fsummary>set front and/or back function and reference value for stencil testing</fsummary>
    <desc>
    <p> Stenciling, like depth-buffering, enables and disables drawing on a per-pixel basis. You draw into the stencil planes using GL drawing primitives, then render geometry and images, using the stencil planes to mask out portions of the screen. Stenciling is typically used in multipass rendering algorithms to achieve special effects, such as decals, outlining, and constructive solid geometry rendering. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilFuncSeparate.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilMask" arity="1" clause_i="1" since=""/>
    <fsummary>control the front and back writing of individual bits in the stencil planes</fsummary>
    <desc>
    <p><seemfa marker="gl#stencilMask/1"><c>gl:stencilMask/1</c></seemfa> controls the writing of individual bits in the stencil planes. The least significant  n bits of <c>Mask</c>, where  n is the number of bits in the stencil buffer, specify a mask. Where a 1 appears in the mask, it's possible to write to the corresponding bit in the stencil buffer. Where a 0 appears, the corresponding bit is write-protected. Initially, all bits are enabled for writing. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilMask.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilMaskSeparate" arity="2" clause_i="1" since=""/>
    <fsummary>control the front and/or back writing of individual bits in the stencil planes</fsummary>
    <desc>
    <p><seemfa marker="gl#stencilMaskSeparate/2"><c>gl:stencilMaskSeparate/2</c></seemfa> controls the writing of individual bits in the stencil planes. The least significant  n bits of <c>Mask</c>, where  n is the number of bits in the stencil buffer, specify a mask. Where a 1 appears in the mask, it's possible to write to the corresponding bit in the stencil buffer. Where a 0 appears, the corresponding bit is write-protected. Initially, all bits are enabled for writing. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilMaskSeparate.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilOp" arity="3" clause_i="1" since=""/>
    <fsummary>set front and back stencil test actions</fsummary>
    <desc>
    <p> Stenciling, like depth-buffering, enables and disables drawing on a per-pixel basis. You draw into the stencil planes using GL drawing primitives, then render geometry and images, using the stencil planes to mask out portions of the screen. Stenciling is typically used in multipass rendering algorithms to achieve special effects, such as decals, outlining, and constructive solid geometry rendering. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilOp.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="stencilOpSeparate" arity="4" clause_i="1" since=""/>
    <fsummary>set front and/or back stencil test actions</fsummary>
    <desc>
    <p> Stenciling, like depth-buffering, enables and disables drawing on a per-pixel basis. You draw into the stencil planes using GL drawing primitives, then render geometry and images, using the stencil planes to mask out portions of the screen. Stenciling is typically used in multipass rendering algorithms to achieve special effects, such as decals, outlining, and constructive solid geometry rendering. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilOpSeparate.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texBuffer" arity="3" clause_i="1" since=""/>
    <name name="textureBuffer" arity="3" clause_i="1" since=""/>
    <fsummary>attach a buffer object's data store to a buffer texture object</fsummary>
    <desc>
    <p><seemfa marker="gl#texBuffer/3"><c>gl:texBuffer/3</c></seemfa> and <seemfa marker="gl#texBuffer/3"><c>gl:textureBuffer/3</c></seemfa> attaches the data store of a specified buffer object to a specified texture object, and specify the storage format for the texture image found in the buffer object. The texture object must be a buffer texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texBufferRange" arity="5" clause_i="1" since=""/>
    <name name="textureBufferRange" arity="5" clause_i="1" since=""/>
    <fsummary>attach a range of a buffer object's data store to a buffer texture object</fsummary>
    <desc>
    <p><seemfa marker="gl#texBufferRange/5"><c>gl:texBufferRange/5</c></seemfa> and <seemfa marker="gl#texBufferRange/5"><c>gl:textureBufferRange/5</c></seemfa> attach a range of the data store of a specified buffer object to a specified texture object, and specify the storage format for the texture image found in the buffer object. The texture object must be a buffer texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexBufferRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texCoord1d" arity="1" clause_i="1" since=""/>
    <name name="texCoord1dv" arity="1" clause_i="1" since=""/>
    <name name="texCoord1f" arity="1" clause_i="1" since=""/>
    <name name="texCoord1fv" arity="1" clause_i="1" since=""/>
    <name name="texCoord1i" arity="1" clause_i="1" since=""/>
    <name name="texCoord1iv" arity="1" clause_i="1" since=""/>
    <name name="texCoord1s" arity="1" clause_i="1" since=""/>
    <name name="texCoord1sv" arity="1" clause_i="1" since=""/>
    <name name="texCoord2d" arity="2" clause_i="1" since=""/>
    <name name="texCoord2dv" arity="1" clause_i="1" since=""/>
    <name name="texCoord2f" arity="2" clause_i="1" since=""/>
    <name name="texCoord2fv" arity="1" clause_i="1" since=""/>
    <name name="texCoord2i" arity="2" clause_i="1" since=""/>
    <name name="texCoord2iv" arity="1" clause_i="1" since=""/>
    <name name="texCoord2s" arity="2" clause_i="1" since=""/>
    <name name="texCoord2sv" arity="1" clause_i="1" since=""/>
    <name name="texCoord3d" arity="3" clause_i="1" since=""/>
    <name name="texCoord3dv" arity="1" clause_i="1" since=""/>
    <name name="texCoord3f" arity="3" clause_i="1" since=""/>
    <name name="texCoord3fv" arity="1" clause_i="1" since=""/>
    <name name="texCoord3i" arity="3" clause_i="1" since=""/>
    <name name="texCoord3iv" arity="1" clause_i="1" since=""/>
    <name name="texCoord3s" arity="3" clause_i="1" since=""/>
    <name name="texCoord3sv" arity="1" clause_i="1" since=""/>
    <name name="texCoord4d" arity="4" clause_i="1" since=""/>
    <name name="texCoord4dv" arity="1" clause_i="1" since=""/>
    <name name="texCoord4f" arity="4" clause_i="1" since=""/>
    <name name="texCoord4fv" arity="1" clause_i="1" since=""/>
    <name name="texCoord4i" arity="4" clause_i="1" since=""/>
    <name name="texCoord4iv" arity="1" clause_i="1" since=""/>
    <name name="texCoord4s" arity="4" clause_i="1" since=""/>
    <name name="texCoord4sv" arity="1" clause_i="1" since=""/>
    <fsummary>set the current texture coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#texCoord1d/1"><c>gl:texCoord()</c></seemfa> specifies texture coordinates in one, two, three, or four dimensions. <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord1()</c></seemfa> sets the current texture coordinates to (s 0 0 1); a call to <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord2()</c></seemfa> sets them to (s t 0 1). Similarly, <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord3()</c></seemfa> specifies the texture coordinates as (s t r 1), and <seemfa marker="gl#texCoord1d/1"><c>gl:texCoord4()</c></seemfa> defines all four components explicitly as (s t r q). </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTexCoord.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texCoordPointer" arity="4" clause_i="1" since=""/>
    <fsummary>define an array of texture coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#texCoordPointer/4"><c>gl:texCoordPointer/4</c></seemfa> specifies the location and data format of an array of texture coordinates to use when rendering.  <c>Size</c> specifies the number of coordinates per texture coordinate set, and must be 1, 2, 3, or 4. <c>Type</c> specifies the data type of each texture coordinate, and <c>Stride</c> specifies the byte stride from one texture coordinate set to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. (Single-array storage may be more efficient on some implementations; see <seemfa marker="gl#interleavedArrays/3"><c>gl:interleavedArrays/3</c></seemfa>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTexCoordPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texEnvf" arity="3" clause_i="1" since=""/>
    <name name="texEnvfv" arity="3" clause_i="1" since=""/>
    <name name="texEnvi" arity="3" clause_i="1" since=""/>
    <name name="texEnviv" arity="3" clause_i="1" since=""/>
    <fsummary>set texture environment parameters</fsummary>
    <desc>
    <p> A texture environment specifies how texture values are interpreted when a fragment is textured. When <c>Target</c> is <c>?GL_TEXTURE_FILTER_CONTROL</c>, <c>Pname</c> must be <c>?GL_TEXTURE_LOD_BIAS</c>. When <c>Target</c> is <c>?GL_TEXTURE_ENV</c>, <c>Pname</c> can be <c>?GL_TEXTURE_ENV_MODE</c>, <c>?GL_TEXTURE_ENV_COLOR</c>, <c>?GL_COMBINE_RGB</c>, <c>?GL_COMBINE_ALPHA</c>, <c>?GL_RGB_SCALE</c>, <c>?GL_ALPHA_SCALE</c>, <c>?GL_SRC0_RGB</c>, <c>?GL_SRC1_RGB</c>, <c>?GL_SRC2_RGB</c>, <c>?GL_SRC0_ALPHA</c>, <c>?GL_SRC1_ALPHA</c>, or <c>?GL_SRC2_ALPHA</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTexEnv.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texGend" arity="3" clause_i="1" since=""/>
    <name name="texGendv" arity="3" clause_i="1" since=""/>
    <name name="texGenf" arity="3" clause_i="1" since=""/>
    <name name="texGenfv" arity="3" clause_i="1" since=""/>
    <name name="texGeni" arity="3" clause_i="1" since=""/>
    <name name="texGeniv" arity="3" clause_i="1" since=""/>
    <fsummary>control the generation of texture coordinates</fsummary>
    <desc>
    <p><seemfa marker="gl#texGend/3"><c>gl:texGen()</c></seemfa> selects a texture-coordinate generation function or supplies coefficients for one of the functions. <c>Coord</c> names one of the (<c>s</c>, <c>t</c>, <c>r</c>, <c>q</c>) texture coordinates; it must be one of the symbols <c>?GL_S</c>, <c>?GL_T</c>, <c>?GL_R</c>, or <c>?GL_Q</c>. <c>Pname</c> must be one of three symbolic constants: <c>?GL_TEXTURE_GEN_MODE</c>, <c>?GL_OBJECT_PLANE</c>, or <c>?GL_EYE_PLANE</c>. If <c>Pname</c> is <c>?GL_TEXTURE_GEN_MODE</c>, then <c>Params</c> chooses a mode, one of <c>?GL_OBJECT_LINEAR</c>, <c>?GL_EYE_LINEAR</c>, <c>?GL_SPHERE_MAP</c>, <c>?GL_NORMAL_MAP</c>, or <c>?GL_REFLECTION_MAP</c>. If <c>Pname</c> is either <c>?GL_OBJECT_PLANE</c> or <c>?GL_EYE_PLANE</c>, <c>Params</c> contains coefficients for the corresponding texture generation function. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTexGen.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texImage1D" arity="8" clause_i="1" since=""/>
    <fsummary>specify a one-dimensional texture image</fsummary>
    <desc>
    <p> Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. To enable and disable one-dimensional texturing, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_TEXTURE_1D</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texImage2D" arity="9" clause_i="1" since=""/>
    <fsummary>specify a two-dimensional texture image</fsummary>
    <desc>
    <p> Texturing allows elements of an image array to be read by shaders. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texImage2DMultisample" arity="6" clause_i="1" since=""/>
    <fsummary>establish the data storage, format, dimensions, and number of samples of a multisample texture's image</fsummary>
    <desc>
    <p><seemfa marker="gl#texImage2DMultisample/6"><c>gl:texImage2DMultisample/6</c></seemfa> establishes the data storage, format, dimensions and number of samples of a multisample texture's image. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2DMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texImage3D" arity="10" clause_i="1" since=""/>
    <fsummary>specify a three-dimensional texture image</fsummary>
    <desc>
    <p> Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. To enable and disable three-dimensional texturing, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_TEXTURE_3D</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texImage3DMultisample" arity="7" clause_i="1" since=""/>
    <fsummary>establish the data storage, format, dimensions, and number of samples of a multisample texture's image</fsummary>
    <desc>
    <p><seemfa marker="gl#texImage3DMultisample/7"><c>gl:texImage3DMultisample/7</c></seemfa> establishes the data storage, format, dimensions and number of samples of a multisample texture's image. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage3DMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texParameterIiv" arity="3" clause_i="1" since=""/>
    <name name="texParameterIuiv" arity="3" clause_i="1" since=""/>
    <name name="texParameterf" arity="3" clause_i="1" since=""/>
    <name name="texParameterfv" arity="3" clause_i="1" since=""/>
    <name name="texParameteri" arity="3" clause_i="1" since=""/>
    <name name="texParameteriv" arity="3" clause_i="1" since=""/>
    <fsummary>set texture parameters</fsummary>
    <desc>
    <p><seemfa marker="gl#texParameterf/3"><c>gl:texParameter()</c></seemfa> and <seemfa marker="gl#texParameterf/3"><c>gl:textureParameter()</c></seemfa> assign the value or values in <c>Params</c> to the texture parameter specified as <c>Pname</c>. For <seemfa marker="gl#texParameterf/3"><c>gl:texParameter()</c></seemfa>, <c>Target</c> defines the target texture, either <c>?GL_TEXTURE_1D</c>, <c>?GL_TEXTURE_1D_ARRAY</c>, <c>?GL_TEXTURE_2D</c>, <c>?GL_TEXTURE_2D_ARRAY</c>, <c>?GL_TEXTURE_2D_MULTISAMPLE</c>, <c>?GL_TEXTURE_2D_MULTISAMPLE_ARRAY</c>, <c>?GL_TEXTURE_3D</c>, <c>?GL_TEXTURE_CUBE_MAP</c>, <c>?GL_TEXTURE_CUBE_MAP_ARRAY</c>, or <c>?GL_TEXTURE_RECTANGLE</c>. The following symbols are accepted in <c>Pname</c>:</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexParameter.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texStorage1D" arity="4" clause_i="1" since=""/>
    <fsummary>simultaneously specify storage for all levels of a one-dimensional texture</fsummary>
    <desc>
    <p><seemfa marker="gl#texStorage1D/4"><c>gl:texStorage1D/4</c></seemfa> and <seemfa marker="gl#texStorage1D/4"><c>gl:textureStorage1D()</c></seemfa> specify the storage requirements for all levels of a one-dimensional texture simultaneously. Once a texture is specified with this command, the format and dimensions of all levels become immutable unless it is a proxy texture. The contents of the image may still be modified, however, its storage requirements may not change. Such a texture is referred to as an <c>immutable-format</c> texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexStorage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texStorage2D" arity="5" clause_i="1" since=""/>
    <fsummary>simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture</fsummary>
    <desc>
    <p><seemfa marker="gl#texStorage2D/5"><c>gl:texStorage2D/5</c></seemfa> and <seemfa marker="gl#texStorage2D/5"><c>gl:textureStorage2D()</c></seemfa> specify the storage requirements for all levels of a two-dimensional texture or one-dimensional texture array simultaneously. Once a texture is specified with this command, the format and dimensions of all levels become immutable unless it is a proxy texture. The contents of the image may still be modified, however, its storage requirements may not change. Such a texture is referred to as an <c>immutable-format</c> texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexStorage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texStorage2DMultisample" arity="6" clause_i="1" since=""/>
    <fsummary>specify storage for a two-dimensional multisample texture</fsummary>
    <desc>
    <p><seemfa marker="gl#texStorage2DMultisample/6"><c>gl:texStorage2DMultisample/6</c></seemfa> and <seemfa marker="gl#texStorage2DMultisample/6"><c>gl:textureStorage2DMultisample()</c></seemfa> specify the storage requirements for a two-dimensional multisample texture. Once a texture is specified with this command, its format and dimensions become immutable unless it is a proxy texture. The contents of the image may still be modified, however, its storage requirements may not change. Such a texture is referred to as an <c>immutable-format</c> texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexStorage2DMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texStorage3D" arity="6" clause_i="1" since=""/>
    <fsummary>simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture</fsummary>
    <desc>
    <p><seemfa marker="gl#texStorage3D/6"><c>gl:texStorage3D/6</c></seemfa> and <seemfa marker="gl#texStorage3D/6"><c>gl:textureStorage3D()</c></seemfa> specify the storage requirements for all levels of a three-dimensional, two-dimensional array or cube-map array texture simultaneously. Once a texture is specified with this command, the format and dimensions of all levels become immutable unless it is a proxy texture. The contents of the image may still be modified, however, its storage requirements may not change. Such a texture is referred to as an <c>immutable-format</c> texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexStorage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texStorage3DMultisample" arity="7" clause_i="1" since=""/>
    <fsummary>specify storage for a two-dimensional multisample array texture</fsummary>
    <desc>
    <p><seemfa marker="gl#texStorage3DMultisample/7"><c>gl:texStorage3DMultisample/7</c></seemfa> and <seemfa marker="gl#texStorage3DMultisample/7"><c>gl:textureStorage3DMultisample()</c></seemfa> specify the storage requirements for a two-dimensional multisample array texture. Once a texture is specified with this command, its format and dimensions become immutable unless it is a proxy texture. The contents of the image may still be modified, however, its storage requirements may not change. Such a texture is referred to as an <c>immutable-format</c> texture. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexStorage3DMultisample.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texSubImage1D" arity="7" clause_i="1" since=""/>
    <fsummary>specify a one-dimensional texture subimage</fsummary>
    <desc>
    <p> Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. To enable or disable one-dimensional texturing, call <seemfa marker="gl#enable/1"><c>gl:enable/1</c></seemfa> and <seemfa marker="gl#enable/1"><c>gl:disable/1</c></seemfa> with argument <c>?GL_TEXTURE_1D</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexSubImage1D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texSubImage2D" arity="9" clause_i="1" since=""/>
    <fsummary>specify a two-dimensional texture subimage</fsummary>
    <desc>
    <p> Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexSubImage2D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="texSubImage3D" arity="11" clause_i="1" since=""/>
    <fsummary>specify a three-dimensional texture subimage</fsummary>
    <desc>
    <p> Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexSubImage3D.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="textureBarrier" arity="0" clause_i="1" since=""/>
    <fsummary>controls the ordering of reads and writes to rendered fragments across drawing commands</fsummary>
    <desc>
    <p> The values of rendered fragments are undefined when a shader stage fetches texels and the same texels are written via fragment shader outputs, even if the reads and writes are not in the same drawing command. To safely read the result of a written texel via a texel fetch in a subsequent drawing command, call <seemfa marker="gl#textureBarrier/0"><c>gl:textureBarrier/0</c></seemfa> between the two drawing commands to guarantee that writes have completed and caches have been invalidated before subsequent drawing commands are executed. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTextureBarrier.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="textureView" arity="8" clause_i="1" since=""/>
    <fsummary>initialize a texture as a data alias of another texture's data store</fsummary>
    <desc>
    <p><seemfa marker="gl#textureView/8"><c>gl:textureView/8</c></seemfa> initializes a texture object as an alias, or view of another texture object, sharing some or all of the parent texture's data store with the initialized texture. <c>Texture</c> specifies a name previously reserved by a successful call to <seemfa marker="gl#genTextures/1"><c>gl:genTextures/1</c></seemfa> but that has not yet been bound or given a target. <c>Target</c> specifies the target for the newly initialized texture and must be compatible with the target of the parent texture, given in <c>Origtexture</c> as specified in the following table: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTextureView.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="transformFeedbackBufferBase" arity="3" clause_i="1" since=""/>
    <fsummary>bind a buffer object to a transform feedback buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#transformFeedbackBufferBase/3"><c>gl:transformFeedbackBufferBase/3</c></seemfa> binds the buffer object <c>Buffer</c> to the binding point at index <c>Index</c> of the transform feedback object <c>Xfb</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTransformFeedbackBufferBase.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="transformFeedbackBufferRange" arity="5" clause_i="1" since=""/>
    <fsummary>bind a range within a buffer object to a transform feedback buffer object</fsummary>
    <desc>
    <p><seemfa marker="gl#transformFeedbackBufferRange/5"><c>gl:transformFeedbackBufferRange/5</c></seemfa> binds a range of the buffer object <c>Buffer</c> represented by <c>Offset</c> and <c>Size</c> to the binding point at index <c>Index</c> of the transform feedback object <c>Xfb</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTransformFeedbackBufferRange.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="transformFeedbackVaryings" arity="3" clause_i="1" since=""/>
    <fsummary>specify values to record in transform feedback buffers</fsummary>
    <desc>
    <p> The names of the vertex or geometry shader outputs to be recorded in transform feedback mode are specified using <seemfa marker="gl#transformFeedbackVaryings/3"><c>gl:transformFeedbackVaryings/3</c></seemfa>. When a geometry shader is active, transform feedback records the values of selected geometry shader output variables from the emitted vertices. Otherwise, the values of the selected vertex shader outputs are recorded. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTransformFeedbackVaryings.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="translated" arity="3" clause_i="1" since=""/>
    <name name="translatef" arity="3" clause_i="1" since=""/>
    <fsummary>multiply the current matrix by a translation matrix</fsummary>
    <desc>
    <p><seemfa marker="gl#translated/3"><c>gl:translate()</c></seemfa> produces a translation by (x y z). The current matrix (see <seemfa marker="gl#matrixMode/1"><c>gl:matrixMode/1</c></seemfa>) is multiplied by this translation matrix, with the product replacing the current matrix, as if <seemfa marker="gl#multMatrixd/1"><c>gl:multMatrix()</c></seemfa> were called with the following matrix for its argument: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTranslate.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="uniform1d" arity="2" clause_i="1" since=""/>
    <name name="uniform1dv" arity="2" clause_i="1" since=""/>
    <name name="uniform1f" arity="2" clause_i="1" since=""/>
    <name name="uniform1fv" arity="2" clause_i="1" since=""/>
    <name name="uniform1i" arity="2" clause_i="1" since=""/>
    <name name="uniform1iv" arity="2" clause_i="1" since=""/>
    <name name="uniform1ui" arity="2" clause_i="1" since=""/>
    <name name="uniform1uiv" arity="2" clause_i="1" since=""/>
    <name name="uniform2d" arity="3" clause_i="1" since=""/>
    <name name="uniform2dv" arity="2" clause_i="1" since=""/>
    <name name="uniform2f" arity="3" clause_i="1" since=""/>
    <name name="uniform2fv" arity="2" clause_i="1" since=""/>
    <name name="uniform2i" arity="3" clause_i="1" since=""/>
    <name name="uniform2iv" arity="2" clause_i="1" since=""/>
    <name name="uniform2ui" arity="3" clause_i="1" since=""/>
    <name name="uniform2uiv" arity="2" clause_i="1" since=""/>
    <name name="uniform3d" arity="4" clause_i="1" since=""/>
    <name name="uniform3dv" arity="2" clause_i="1" since=""/>
    <name name="uniform3f" arity="4" clause_i="1" since=""/>
    <name name="uniform3fv" arity="2" clause_i="1" since=""/>
    <name name="uniform3i" arity="4" clause_i="1" since=""/>
    <name name="uniform3iv" arity="2" clause_i="1" since=""/>
    <name name="uniform3ui" arity="4" clause_i="1" since=""/>
    <name name="uniform3uiv" arity="2" clause_i="1" since=""/>
    <name name="uniform4d" arity="5" clause_i="1" since=""/>
    <name name="uniform4dv" arity="2" clause_i="1" since=""/>
    <name name="uniform4f" arity="5" clause_i="1" since=""/>
    <name name="uniform4fv" arity="2" clause_i="1" since=""/>
    <name name="uniform4i" arity="5" clause_i="1" since=""/>
    <name name="uniform4iv" arity="2" clause_i="1" since=""/>
    <name name="uniform4ui" arity="5" clause_i="1" since=""/>
    <name name="uniform4uiv" arity="2" clause_i="1" since=""/>
    <name name="uniformMatrix2dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix2fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix2x3dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix2x3fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix2x4dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix2x4fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3x2dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3x2fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3x4dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix3x4fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4x2dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4x2fv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4x3dv" arity="3" clause_i="1" since=""/>
    <name name="uniformMatrix4x3fv" arity="3" clause_i="1" since=""/>
    <fsummary>Specify the value of a uniform variable for the current program object</fsummary>
    <desc>
    <p><seemfa marker="gl#uniform1f/2"><c>gl:uniform()</c></seemfa> modifies the value of a uniform variable or a uniform variable array. The location of the uniform variable to be modified is specified by <c>Location</c>, which should be a value returned by <seemfa marker="gl#getUniformLocation/2"><c>gl:getUniformLocation/2</c></seemfa>. <seemfa marker="gl#uniform1f/2"><c>gl:uniform()</c></seemfa> operates on the program object that was made part of current state by calling <seemfa marker="gl#useProgram/1"><c>gl:useProgram/1</c></seemfa>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glUniform.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="uniformBlockBinding" arity="3" clause_i="1" since=""/>
    <fsummary>assign a binding point to an active uniform block</fsummary>
    <desc>
    <p> Binding points for active uniform blocks are assigned using <seemfa marker="gl#uniformBlockBinding/3"><c>gl:uniformBlockBinding/3</c></seemfa>. Each of a program's active uniform blocks has a corresponding uniform buffer binding point. <c>Program</c> is the name of a program object for which the command <seemfa marker="gl#linkProgram/1"><c>gl:linkProgram/1</c></seemfa> has been issued in the past. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glUniformBlockBinding.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="uniformSubroutinesuiv" arity="2" clause_i="1" since=""/>
    <fsummary>load active subroutine uniforms</fsummary>
    <desc>
    <p><seemfa marker="gl#uniformSubroutinesuiv/2"><c>gl:uniformSubroutines()</c></seemfa> loads all active subroutine uniforms for shader stage <c>Shadertype</c> of the current program with subroutine indices from <c>Indices</c>, storing <c>Indices[i]</c> into the uniform at location <c>I</c>. <c>Count</c> must be equal to the value of <c>?GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS</c> for the program currently in use at shader stage <c>Shadertype</c>. Furthermore, all values in <c>Indices</c> must be less than the value of <c>?GL_ACTIVE_SUBROUTINES</c> for the shader stage. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glUniformSubroutines.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="useProgram" arity="1" clause_i="1" since=""/>
    <fsummary>Installs a program object as part of current rendering state</fsummary>
    <desc>
    <p><seemfa marker="gl#useProgram/1"><c>gl:useProgram/1</c></seemfa> installs the program object specified by <c>Program</c> as part of current rendering state. One or more executables are created in a program object by successfully attaching shader objects to it with <seemfa marker="gl#attachShader/2"><c>gl:attachShader/2</c></seemfa>, successfully compiling the shader objects with <seemfa marker="gl#compileShader/1"><c>gl:compileShader/1</c></seemfa>, and successfully linking the program object with <seemfa marker="gl#linkProgram/1"><c>gl:linkProgram/1</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glUseProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="useProgramStages" arity="3" clause_i="1" since=""/>
    <fsummary>bind stages of a program object to a program pipeline</fsummary>
    <desc>
    <p><seemfa marker="gl#useProgramStages/3"><c>gl:useProgramStages/3</c></seemfa> binds executables from a program object associated with a specified set of shader stages to the program pipeline object given by <c>Pipeline</c>. <c>Pipeline</c> specifies the program pipeline object to which to bind the executables. <c>Stages</c> contains a logical combination of bits indicating the shader stages to use within <c>Program</c> with the program pipeline object <c>Pipeline</c>. <c>Stages</c> must be a logical combination of <c>?GL_VERTEX_SHADER_BIT</c>, <c>?GL_TESS_CONTROL_SHADER_BIT</c>, <c>?GL_TESS_EVALUATION_SHADER_BIT</c>, <c>?GL_GEOMETRY_SHADER_BIT</c>, <c>?GL_FRAGMENT_SHADER_BIT</c> and <c>?GL_COMPUTE_SHADER_BIT</c>. Additionally, the special value <c>?GL_ALL_SHADER_BITS</c> may be specified to indicate that all executables contained in <c>Program</c> should be installed in <c>Pipeline</c>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glUseProgramStages.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="validateProgram" arity="1" clause_i="1" since=""/>
    <fsummary>Validates a program object</fsummary>
    <desc>
    <p><seemfa marker="gl#validateProgram/1"><c>gl:validateProgram/1</c></seemfa> checks to see whether the executables contained in <c>Program</c> can execute given the current OpenGL state. The information generated by the validation process will be stored in <c>Program</c>'s information log. The validation information may consist of an empty string, or it may be a string containing information about how the current program object interacts with the rest of current OpenGL state. This provides a way for OpenGL implementers to convey more information about why the current program is inefficient, suboptimal, failing to execute, and so on.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glValidateProgram.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="validateProgramPipeline" arity="1" clause_i="1" since=""/>
    <fsummary>validate a program pipeline object against current GL state</fsummary>
    <desc>
    <p><seemfa marker="gl#validateProgramPipeline/1"><c>gl:validateProgramPipeline/1</c></seemfa> instructs the implementation to validate the shader executables contained in <c>Pipeline</c> against the current GL state. The implementation may use this as an opportunity to perform any internal shader modifications that may be required to ensure correct operation of the installed shaders given the current GL state. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glValidateProgramPipeline.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertex2d" arity="2" clause_i="1" since=""/>
    <name name="vertex2dv" arity="1" clause_i="1" since=""/>
    <name name="vertex2f" arity="2" clause_i="1" since=""/>
    <name name="vertex2fv" arity="1" clause_i="1" since=""/>
    <name name="vertex2i" arity="2" clause_i="1" since=""/>
    <name name="vertex2iv" arity="1" clause_i="1" since=""/>
    <name name="vertex2s" arity="2" clause_i="1" since=""/>
    <name name="vertex2sv" arity="1" clause_i="1" since=""/>
    <name name="vertex3d" arity="3" clause_i="1" since=""/>
    <name name="vertex3dv" arity="1" clause_i="1" since=""/>
    <name name="vertex3f" arity="3" clause_i="1" since=""/>
    <name name="vertex3fv" arity="1" clause_i="1" since=""/>
    <name name="vertex3i" arity="3" clause_i="1" since=""/>
    <name name="vertex3iv" arity="1" clause_i="1" since=""/>
    <name name="vertex3s" arity="3" clause_i="1" since=""/>
    <name name="vertex3sv" arity="1" clause_i="1" since=""/>
    <name name="vertex4d" arity="4" clause_i="1" since=""/>
    <name name="vertex4dv" arity="1" clause_i="1" since=""/>
    <name name="vertex4f" arity="4" clause_i="1" since=""/>
    <name name="vertex4fv" arity="1" clause_i="1" since=""/>
    <name name="vertex4i" arity="4" clause_i="1" since=""/>
    <name name="vertex4iv" arity="1" clause_i="1" since=""/>
    <name name="vertex4s" arity="4" clause_i="1" since=""/>
    <name name="vertex4sv" arity="1" clause_i="1" since=""/>
    <fsummary>specify a vertex</fsummary>
    <desc>
    <p><seemfa marker="gl#vertex2d/2"><c>gl:vertex()</c></seemfa> commands are used within <seemfa marker="gl#'begin'/1"><c>gl:'begin'/1</c></seemfa>/<seemfa marker="gl#'begin'/1"><c>gl:'end'/0</c></seemfa> pairs to specify point, line, and polygon vertices. The current color, normal, texture coordinates, and fog coordinate are associated with the vertex when <seemfa marker="gl#vertex2d/2"><c>gl:vertex()</c></seemfa> is called. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glVertex.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexArrayElementBuffer" arity="2" clause_i="1" since=""/>
    <fsummary>configures element array buffer binding of a vertex array object</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexArrayElementBuffer/2"><c>gl:vertexArrayElementBuffer/2</c></seemfa> binds a buffer object with id <c>Buffer</c> to the element array buffer bind point of a vertex array object with id <c>Vaobj</c>. If <c>Buffer</c> is zero, any existing element array buffer binding to <c>Vaobj</c> is removed. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexArrayElementBuffer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexAttrib1d" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib1dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib1f" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib1fv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib1s" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib1sv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib2d" arity="3" clause_i="1" since=""/>
    <name name="vertexAttrib2dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib2f" arity="3" clause_i="1" since=""/>
    <name name="vertexAttrib2fv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib2s" arity="3" clause_i="1" since=""/>
    <name name="vertexAttrib2sv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib3d" arity="4" clause_i="1" since=""/>
    <name name="vertexAttrib3dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib3f" arity="4" clause_i="1" since=""/>
    <name name="vertexAttrib3fv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib3s" arity="4" clause_i="1" since=""/>
    <name name="vertexAttrib3sv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Nbv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Niv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Nsv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Nub" arity="5" clause_i="1" since=""/>
    <name name="vertexAttrib4Nubv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Nuiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4Nusv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4bv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4d" arity="5" clause_i="1" since=""/>
    <name name="vertexAttrib4dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4f" arity="5" clause_i="1" since=""/>
    <name name="vertexAttrib4fv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4iv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4s" arity="5" clause_i="1" since=""/>
    <name name="vertexAttrib4sv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4ubv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4uiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttrib4usv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI1i" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI1iv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI1ui" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI1uiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI2i" arity="3" clause_i="1" since=""/>
    <name name="vertexAttribI2iv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI2ui" arity="3" clause_i="1" since=""/>
    <name name="vertexAttribI2uiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI3i" arity="4" clause_i="1" since=""/>
    <name name="vertexAttribI3iv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI3ui" arity="4" clause_i="1" since=""/>
    <name name="vertexAttribI3uiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4bv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4i" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribI4iv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4sv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4ubv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4ui" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribI4uiv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribI4usv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribL1d" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribL1dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribL2d" arity="3" clause_i="1" since=""/>
    <name name="vertexAttribL2dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribL3d" arity="4" clause_i="1" since=""/>
    <name name="vertexAttribL3dv" arity="2" clause_i="1" since=""/>
    <name name="vertexAttribL4d" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribL4dv" arity="2" clause_i="1" since=""/>
    <fsummary>Specifies the value of a generic vertex attribute</fsummary>
    <desc>
    <p>The <seemfa marker="gl#vertexAttrib1d/2"><c>gl:vertexAttrib()</c></seemfa> family of entry points allows an application to pass generic vertex attributes in numbered locations.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexAttrib.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexArrayAttribBinding" arity="3" clause_i="1" since=""/>
    <name name="vertexAttribBinding" arity="2" clause_i="1" since=""/>
    <fsummary>associate a vertex attribute and a vertex buffer binding for a vertex array object</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexAttribBinding/2"><c>gl:vertexAttribBinding/2</c></seemfa> and <seemfa marker="gl#vertexAttribBinding/2"><c>gl:vertexArrayAttribBinding/3</c></seemfa> establishes an association between the generic vertex attribute of a vertex array object whose index is given by <c>Attribindex</c>, and a vertex buffer binding whose index is given by <c>Bindingindex</c>. For <seemfa marker="gl#vertexAttribBinding/2"><c>gl:vertexAttribBinding/2</c></seemfa>, the vertex array object affected is that currently bound. For <seemfa marker="gl#vertexAttribBinding/2"><c>gl:vertexArrayAttribBinding/3</c></seemfa>, <c>Vaobj</c> is the name of the vertex array object. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexAttribBinding.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexAttribDivisor" arity="2" clause_i="1" since=""/>
    <fsummary>modify the rate at which generic vertex attributes advance during instanced rendering</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexAttribDivisor/2"><c>gl:vertexAttribDivisor/2</c></seemfa> modifies the rate at which generic vertex attributes advance when rendering multiple instances of primitives in a single draw call. If <c>Divisor</c> is zero, the attribute at slot <c>Index</c> advances once per vertex. If <c>Divisor</c> is non-zero, the attribute advances once per <c>Divisor</c> instances of the set(s) of vertices being rendered. An attribute is referred to as instanced if its <c>?GL_VERTEX_ATTRIB_ARRAY_DIVISOR</c> value is non-zero. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexAttribDivisor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexArrayAttribFormat" arity="6" clause_i="1" since=""/>
    <name name="vertexArrayAttribIFormat" arity="5" clause_i="1" since=""/>
    <name name="vertexArrayAttribLFormat" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribFormat" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribIFormat" arity="4" clause_i="1" since=""/>
    <name name="vertexAttribIPointer" arity="5" clause_i="1" since=""/>
    <name name="vertexAttribLFormat" arity="4" clause_i="1" since=""/>
    <name name="vertexAttribLPointer" arity="5" clause_i="1" since=""/>
    <fsummary>specify the organization of vertex arrays</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexAttribFormat/5"><c>gl:vertexAttribFormat/5</c></seemfa>, <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexAttribIFormat/4</c></seemfa> and <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexAttribLFormat/4</c></seemfa>, as well as <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexArrayAttribFormat/6</c></seemfa>, <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexArrayAttribIFormat/5</c></seemfa> and <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexArrayAttribLFormat/5</c></seemfa> specify the organization of data in vertex arrays. The first three calls operate on the bound vertex array object, whereas the last three ones modify the state of a vertex array object with ID <c>Vaobj</c>. <c>Attribindex</c> specifies the index of the generic vertex attribute array whose data layout is being described, and must be less than the value of <c>?GL_MAX_VERTEX_ATTRIBS</c>.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexAttribFormat.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexAttribPointer" arity="6" clause_i="1" since=""/>
    <fsummary>define an array of generic vertex attribute data</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexAttribPointer/6"><c>gl:vertexAttribPointer/6</c></seemfa>, <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexAttribIPointer/5</c></seemfa> and <seemfa marker="gl#vertexAttribIPointer/5"><c>gl:vertexAttribLPointer/5</c></seemfa> specify the location and data format of the array of generic vertex attributes at index <c>Index</c> to use when rendering. <c>Size</c> specifies the number of components per attribute and must be 1, 2, 3, 4, or <c>?GL_BGRA</c>. <c>Type</c> specifies the data type of each component, and <c>Stride</c> specifies the byte stride from one attribute to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexAttribPointer.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexArrayBindingDivisor" arity="3" clause_i="1" since=""/>
    <name name="vertexBindingDivisor" arity="2" clause_i="1" since=""/>
    <fsummary>modify the rate at which generic vertex attributes advance</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexBindingDivisor/2"><c>gl:vertexBindingDivisor/2</c></seemfa> and <seemfa marker="gl#vertexBindingDivisor/2"><c>gl:vertexArrayBindingDivisor/3</c></seemfa> modify the rate at which generic vertex attributes advance when rendering multiple instances of primitives in a single draw command. If <c>Divisor</c> is zero, the attributes using the buffer bound to <c>Bindingindex</c> advance once per vertex. If <c>Divisor</c> is non-zero, the attributes advance once per <c>Divisor</c> instances of the set(s) of vertices being rendered. An attribute is referred to as <c>instanced</c> if the corresponding <c>Divisor</c> value is non-zero.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glVertexBindingDivisor.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="vertexPointer" arity="4" clause_i="1" since=""/>
    <fsummary>define an array of vertex data</fsummary>
    <desc>
    <p><seemfa marker="gl#vertexPointer/4"><c>gl:vertexPointer/4</c></seemfa> specifies the location and data format of an array of vertex coordinates to use when rendering. <c>Size</c> specifies the number of coordinates per vertex, and must be 2, 3, or 4. <c>Type</c> specifies the data type of each coordinate, and <c>Stride</c> specifies the byte stride from one vertex to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. (Single-array storage may be more efficient on some implementations; see <seemfa marker="gl#interleavedArrays/3"><c>gl:interleavedArrays/3</c></seemfa>.) </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glVertexPointer.xml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="viewport" arity="4" clause_i="1" since=""/>
    <fsummary>set the viewport</fsummary>
    <desc>
    <p><seemfa marker="gl#viewport/4"><c>gl:viewport/4</c></seemfa> specifies the affine transformation of  x and  y from normalized device coordinates to window coordinates. Let (x nd y nd) be normalized device coordinates. Then the window coordinates (x w y w) are computed as follows: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glViewport.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="viewportArrayv" arity="2" clause_i="1" since=""/>
    <fsummary>set multiple viewports</fsummary>
    <desc>
    <p><seemfa marker="gl#viewportArrayv/2"><c>gl:viewportArrayv/2</c></seemfa> specifies the parameters for multiple viewports simulataneously. <c>First</c> specifies the index of the first viewport to modify and <c>Count</c> specifies the number of viewports to modify. <c>First</c> must be less than the value of <c>?GL_MAX_VIEWPORTS</c>, and <c>First</c> + <c>Count</c> must be less than or equal to the value of <c>?GL_MAX_VIEWPORTS</c>. Viewports whose indices lie outside the range [<c>First</c>, <c>First</c> + <c>Count</c>) are not modified. <c>V</c> contains the address of an array of floating point values specifying the left ( x), bottom ( y), width ( w), and height ( h) of each viewport, in that order.  x and  y give the location of the viewport's lower left corner, and  w and  h give the width and height of the viewport, respectively. The viewport specifies the affine transformation of  x and  y from normalized device coordinates to window coordinates. Let (x nd y nd) be normalized device coordinates. Then the window coordinates (x w y w) are computed as follows: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glViewportArray.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="viewportIndexedf" arity="5" clause_i="1" since=""/>
    <name name="viewportIndexedfv" arity="2" clause_i="1" since=""/>
    <fsummary>set a specified viewport</fsummary>
    <desc>
    <p><seemfa marker="gl#viewportIndexedf/5"><c>gl:viewportIndexedf/5</c></seemfa> and <seemfa marker="gl#viewportIndexedf/5"><c>gl:viewportIndexedfv/2</c></seemfa> specify the parameters for a single viewport. <c>Index</c> specifies the index of the viewport to modify. <c>Index</c> must be less than the value of <c>?GL_MAX_VIEWPORTS</c>. For <seemfa marker="gl#viewportIndexedf/5"><c>gl:viewportIndexedf/5</c></seemfa>, <c>X</c>, <c>Y</c>, <c>W</c>, and <c>H</c> specify the left, bottom, width and height of the viewport in pixels, respectively. For <seemfa marker="gl#viewportIndexedf/5"><c>gl:viewportIndexedfv/2</c></seemfa>, <c>V</c> contains the address of an array of floating point values specifying the left ( x), bottom ( y), width ( w), and height ( h) of each viewport, in that order.  x and  y give the location of the viewport's lower left corner, and  w and  h give the width and height of the viewport, respectively. The viewport specifies the affine transformation of  x and  y from normalized device coordinates to window coordinates. Let (x nd y nd) be normalized device coordinates. Then the window coordinates (x w y w) are computed as follows: </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glViewportIndexed.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="waitSync" arity="3" clause_i="1" since=""/>
    <fsummary>instruct the GL server to block until the specified sync object becomes signaled</fsummary>
    <desc>
    <p><seemfa marker="gl#waitSync/3"><c>gl:waitSync/3</c></seemfa> causes the GL server to block and wait until <c>Sync</c> becomes signaled. <c>Sync</c> is the name of an existing sync object upon which to wait. <c>Flags</c> and <c>Timeout</c> are currently not used and must be set to zero and the special value <c>?GL_TIMEOUT_IGNORED</c>, respectively</p>
    <p><c>Flags</c> and <c>Timeout</c> are placeholders for anticipated future extensions of sync object capabilities. They must have these reserved values in order that existing code calling <seemfa marker="gl#waitSync/3"><c>gl:waitSync/3</c></seemfa> operate properly in the presence of such extensions.</p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glWaitSync.xhtml">External documentation.</url></p></desc>
  </func>
  <func>
    <name name="windowPos2d" arity="2" clause_i="1" since=""/>
    <name name="windowPos2dv" arity="1" clause_i="1" since=""/>
    <name name="windowPos2f" arity="2" clause_i="1" since=""/>
    <name name="windowPos2fv" arity="1" clause_i="1" since=""/>
    <name name="windowPos2i" arity="2" clause_i="1" since=""/>
    <name name="windowPos2iv" arity="1" clause_i="1" since=""/>
    <name name="windowPos2s" arity="2" clause_i="1" since=""/>
    <name name="windowPos2sv" arity="1" clause_i="1" since=""/>
    <name name="windowPos3d" arity="3" clause_i="1" since=""/>
    <name name="windowPos3dv" arity="1" clause_i="1" since=""/>
    <name name="windowPos3f" arity="3" clause_i="1" since=""/>
    <name name="windowPos3fv" arity="1" clause_i="1" since=""/>
    <name name="windowPos3i" arity="3" clause_i="1" since=""/>
    <name name="windowPos3iv" arity="1" clause_i="1" since=""/>
    <name name="windowPos3s" arity="3" clause_i="1" since=""/>
    <name name="windowPos3sv" arity="1" clause_i="1" since=""/>
    <fsummary>specify the raster position in window coordinates for pixel operations</fsummary>
    <desc>
    <p> The GL maintains a 3D position in window coordinates. This position, called the raster position, is used to position pixel and bitmap write operations. It is maintained with subpixel accuracy. See <seemfa marker="gl#bitmap/7"><c>gl:bitmap/7</c></seemfa>, <seemfa marker="gl#drawPixels/5"><c>gl:drawPixels/5</c></seemfa>, and <seemfa marker="gl#copyPixels/5"><c>gl:copyPixels/5</c></seemfa>. </p>
    
    <p><url href="https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glWindowPos.xml">External documentation.</url></p></desc>
  </func></funcs>
</erlref>