File: copyright

package info (click to toggle)
khronos-opengl-man4 1.0~svn33624-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, sid
  • size: 6,344 kB
  • sloc: xml: 93,066; makefile: 730; python: 627; sh: 50; php: 4
file content (1845 lines) | stat: -rw-r--r-- 60,524 bytes parent folder | download | duplicates (2)
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
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: OpenGL 4 Reference Pages
Upstream-Contact: The Khronos Group Inc. <http://www.khronos.org/>
Source: http://www.opengl.org/sdk/docs/man4/

Files: html/glTexImage1D.xhtml
 glClearStencil.xml
 docbook4/xhtml/glCopyTexImage1D.xml
 glColorMask.xml
 docbook4/glCompressedTexSubImage1D.xml
 html/glGet.xhtml
 docbook4/xhtml/glMultiDrawElements.xml
 glCompressedTexImage3D.xml
 docbook4/xhtml/glMultiDrawArrays.xml
 docbook4/xhtml/glGet.xml
 glCullFace.xml
 docbook4/xhtml/glDepthMask.xml
 glCompressedTexSubImage3D.xml
 html/glCompressedTexImage2D.xhtml
 docbook4/glBlendEquation.xml
 html/glTexImage3D.xhtml
 docbook4/glStencilFunc.xml
 docbook4/xhtml/glDeleteTextures.xml
 docbook4/xhtml/glColorMask.xml
 docbook4/xhtml/glCompressedTexSubImage2D.xml
 glFinish.xml
 docbook4/xhtml/glDrawArrays.xml
 html/glCullFace.xhtml
 docbook4/glDepthFunc.xml
 docbook4/glSampleCoverage.xml
 html/glIsEnabled.xhtml
 docbook4/xhtml/glGetTexLevelParameter.xml
 html/glPointSize.xhtml
 glDrawRangeElements.xml
 html/glStencilOp.xhtml
 docbook4/xhtml/glLogicOp.xml
 docbook4/xhtml/glClear.xml
 docbook4/xhtml/glCompressedTexSubImage3D.xml
 glTexImage3D.xml
 docbook4/xhtml/glGetCompressedTexImage.xml
 docbook4/glCompressedTexImage3D.xml
 html/glCompressedTexSubImage3D.xhtml
 docbook4/xhtml/glDepthFunc.xml
 html/glClearStencil.xhtml
 glClearColor.xml
 docbook4/glViewport.xml
 docbook4/xhtml/glGenTextures.xml
 docbook4/xhtml/glFinish.xml
 docbook4/xhtml/glLineWidth.xml
 docbook4/xhtml/glCopyTexSubImage3D.xml
 html/glBlendFuncSeparate.xhtml
 html/glPixelStore.xhtml
 glCompressedTexImage1D.xml
 html/glCompressedTexSubImage1D.xhtml
 html/glCopyTexImage1D.xhtml
 docbook4/glCopyTexSubImage2D.xml
 docbook4/glGet.xml
 docbook4/xhtml/glBlendFunc.xml
 glDepthFunc.xml
 docbook4/glClearColor.xml
 docbook4/xhtml/glFrontFace.xml
 docbook4/glHint.xml
 glReadPixels.xml
 docbook4/xhtml/glActiveTexture.xml
 glIsEnabled.xml
 glEnable.xml
 glDepthRange.xml
 html/glPolygonOffset.xhtml
 docbook4/xhtml/glPolygonOffset.xml
 html/glGetTexLevelParameter.xhtml
 glGenTextures.xml
 glMultiDrawElements.xml
 docbook4/glIsTexture.xml
 docbook4/xhtml/glReadBuffer.xml
 html/glIsTexture.xhtml
 html/glClearDepth.xhtml
 glBlendFunc.xml
 glReadBuffer.xml
 glCompressedTexImage2D.xml
 html/glDeleteTextures.xhtml
 docbook4/glStencilMask.xml
 docbook4/glPointParameter.xml
 glStencilFunc.xml
 docbook4/xhtml/glClearDepth.xml
 glBindTexture.xml
 docbook4/glTexSubImage3D.xml
 docbook4/xhtml/glStencilMask.xml
 glGetString.xml
 glFlush.xml
 docbook4/xhtml/glTexImage1D.xml
 docbook4/xhtml/glCullFace.xml
 glActiveTexture.xml
 html/glLogicOp.xhtml
 glTexSubImage1D.xml
 docbook4/xhtml/glIsEnabled.xml
 docbook4/xhtml/glCopyTexSubImage2D.xml
 html/glTexImage2D.xhtml
 glPolygonOffset.xml
 html/glStencilMask.xhtml
 docbook4/xhtml/glClearColor.xml
 glCopyTexSubImage1D.xml
 docbook4/glColorMask.xml
 docbook4/glGetError.xml
 docbook4/glReadBuffer.xml
 glPolygonMode.xml
 glViewport.xml
 docbook4/glPixelStore.xml
 docbook4/xhtml/glDrawRangeElements.xml
 html/glDrawArrays.xhtml
 docbook4/xhtml/glGetString.xml
 glPointSize.xml
 glGetError.xml
 html/glDrawElements.xhtml
 glMultiDrawArrays.xml
 docbook4/xhtml/glDrawElements.xml
 glCopyTexSubImage2D.xml
 glPointParameter.xml
 html/glDrawRangeElements.xhtml
 html/glBindTexture.xhtml
 docbook4/glTexImage1D.xml
 html/glColorMask.xhtml
 docbook4/glCopyTexSubImage3D.xml
 html/glStencilFunc.xhtml
 docbook4/glTexSubImage2D.xml
 docbook4/glGenTextures.xml
 html/glDrawBuffer.xhtml
 docbook4/glDepthMask.xml
 docbook4/xhtml/glTexImage3D.xml
 docbook4/xhtml/glTexParameter.xml
 docbook4/xhtml/glStencilFunc.xml
 docbook4/glDrawArrays.xml
 docbook4/glTexImage2D.xml
 glCompressedTexSubImage2D.xml
 docbook4/xhtml/glGetTexParameter.xml
 docbook4/glFlush.xml
 docbook4/glCompressedTexImage1D.xml
 docbook4/glTexParameter.xml
 docbook4/xhtml/glScissor.xml
 html/glBlendColor.xhtml
 docbook4/glBlendFuncSeparate.xml
 glTexSubImage2D.xml
 docbook4/xhtml/glTexSubImage2D.xml
 docbook4/glScissor.xml
 docbook4/glDepthRange.xml
 docbook4/xhtml/glBlendEquation.xml
 docbook4/xhtml/glCompressedTexImage2D.xml
 html/glCopyTexImage2D.xhtml
 html/glTexParameter.xhtml
 docbook4/glLineWidth.xml
 docbook4/glDeleteTextures.xml
 docbook4/xhtml/glClearStencil.xml
 docbook4/xhtml/glHint.xml
 html/glCompressedTexSubImage2D.xhtml
 docbook4/glDrawBuffer.xml
 glCopyTexSubImage3D.xml
 docbook4/glClear.xml
 html/glGenTextures.xhtml
 html/glBlendFunc.xhtml
 docbook4/xhtml/glPointParameter.xml
 glBlendFuncSeparate.xml
 html/glMultiDrawElements.xhtml
 docbook4/glGetTexImage.xml
 html/glSampleCoverage.xhtml
 glTexParameter.xml
 html/glFlush.xhtml
 docbook4/glMultiDrawArrays.xml
 glLogicOp.xml
 html/glHint.xhtml
 glLineWidth.xml
 html/glDepthMask.xhtml
 glDrawElements.xml
 html/glPolygonMode.xhtml
 html/glCopyTexSubImage1D.xhtml
 glTexImage1D.xml
 docbook4/xhtml/glTexSubImage1D.xml
 html/glTexSubImage3D.xhtml
 glGetTexLevelParameter.xml
 html/glCompressedTexImage3D.xhtml
 docbook4/glCompressedTexSubImage3D.xml
 glCopyTexImage1D.xml
 docbook4/xhtml/glCompressedTexImage3D.xml
 glFrontFace.xml
 docbook4/glGetCompressedTexImage.xml
 glDepthMask.xml
 docbook4/xhtml/glReadPixels.xml
 glTexSubImage3D.xml
 glBlendColor.xml
 docbook4/xhtml/glBlendFuncSeparate.xml
 docbook4/glClearStencil.xml
 glSampleCoverage.xml
 glClear.xml
 docbook4/xhtml/glFlush.xml
 docbook4/glStencilOp.xml
 docbook4/glTexImage3D.xml
 html/glCopyTexSubImage2D.xhtml
 docbook4/glCopyTexImage2D.xml
 glDeleteTextures.xml
 docbook4/xhtml/glViewport.xml
 docbook4/xhtml/glTexImage2D.xml
 docbook4/glPolygonOffset.xml
 glDrawBuffer.xml
 html/glActiveTexture.xhtml
 docbook4/glBlendColor.xml
 docbook4/glBlendFunc.xml
 docbook4/xhtml/glCompressedTexSubImage1D.xml
 html/glTexSubImage1D.xhtml
 docbook4/glBindTexture.xml
 html/glDepthFunc.xhtml
 glDrawArrays.xml
 docbook4/glCullFace.xml
 docbook4/glTexSubImage1D.xml
 html/glEnable.xhtml
 docbook4/xhtml/glPolygonMode.xml
 html/glScissor.xhtml
 html/glGetError.xhtml
 glStencilMask.xml
 html/glMultiDrawArrays.xhtml
 docbook4/xhtml/glGetError.xml
 html/glFrontFace.xhtml
 docbook4/glReadPixels.xml
 html/glBlendEquation.xhtml
 docbook4/xhtml/glSampleCoverage.xml
 html/glPointParameter.xhtml
 docbook4/glActiveTexture.xml
 html/glClearColor.xhtml
 docbook4/glLogicOp.xml
 docbook4/xhtml/glBindTexture.xml
 docbook4/xhtml/glBlendColor.xml
 docbook4/glGetTexParameter.xml
 glStencilOp.xml
 docbook4/glCompressedTexSubImage2D.xml
 glPixelStore.xml
 glHint.xml
 glTexImage2D.xml
 docbook4/xhtml/glIsTexture.xml
 glGet.xml
 html/glGetTexParameter.xhtml
 docbook4/xhtml/glDepthRange.xml
 docbook4/glCopyTexSubImage1D.xml
 docbook4/glCompressedTexImage2D.xml
 docbook4/glPolygonMode.xml
 glGetTexImage.xml
 html/glTexSubImage2D.xhtml
 docbook4/xhtml/glStencilOp.xml
 docbook4/glGetString.xml
 docbook4/glFinish.xml
 docbook4/xhtml/glCopyTexImage2D.xml
 glClearDepth.xml
 html/glViewport.xhtml
 html/glFinish.xhtml
 docbook4/glDrawRangeElements.xml
 docbook4/glCopyTexImage1D.xml
 docbook4/xhtml/glPixelStore.xml
 docbook4/glClearDepth.xml
 docbook4/glIsEnabled.xml
 glGetTexParameter.xml
 docbook4/xhtml/glGetTexImage.xml
 docbook4/glGetTexLevelParameter.xml
 docbook4/glPointSize.xml
 docbook4/glEnable.xml
 glScissor.xml
 glCompressedTexSubImage1D.xml
 html/glGetString.xhtml
 html/glClear.xhtml
 html/glReadBuffer.xhtml
 html/glDepthRange.xhtml
 html/glReadPixels.xhtml
 docbook4/glDrawElements.xml
 html/glLineWidth.xhtml
 docbook4/xhtml/glEnable.xml
 glCopyTexImage2D.xml
 glIsTexture.xml
 docbook4/xhtml/glTexSubImage3D.xml
 docbook4/xhtml/glDrawBuffer.xml
 html/glCompressedTexImage1D.xhtml
 html/glCopyTexSubImage3D.xhtml
 html/glGetTexImage.xhtml
 docbook4/glFrontFace.xml
 docbook4/xhtml/glCompressedTexImage1D.xml
 docbook4/xhtml/glCopyTexSubImage1D.xml
 docbook4/glMultiDrawElements.xml
 docbook4/xhtml/glPointSize.xml
 glBlendEquation.xml
 usr/include/make/commonrules
 docbook4/usr/include/make/commondefs
 usr/include/make/linuxdefs
 docbook4/usr/include/make/linuxdefs
 usr/include/make/commondefs
 docbook4/usr/include/make/commonrules
 docbook4/Makefile
Copyright: (c) 1991-2006 Silicon Graphics, Inc. 2010-2014 Khronos Group
License: SGI-Free-Software-B-License-2
 SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
 Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights Reserved.
 Permission is hereby granted, free of charge, to any person obtaining a copy of this
 software and associated documentation files (the "Software"), to deal in the Software
 without restriction, including without limitation the rights to use, copy, modify, merge,
 publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to
 whom the Software is furnished to do so, subject to the following conditions:
 The above copyright notice including the dates of first publication and either this
 permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
 IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 IN THE SOFTWARE.
 .
 Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in
 advertising or otherwise to promote the sale, use or other dealings in this Software
 without prior written authorization from Silicon Graphics, Inc.

Files: docbook4/xhtml/glBindVertexBuffer.xml
 docbook4/xhtml/glGetUniformSubroutine.xml
 glProgramParameter.xml
 glVertexBindingDivisor.xml
 glObjectLabel.xml
 docbook4/glActiveShaderProgram.xml
 docbook4/glGetProgramResourceName.xml
 ceil.xml
 docbook4/xhtml/glGetShader.xml
 docbook4/xhtml/glMultiDrawElementsIndirect.xml
 textureQueryLevels.xml
 docbook4/xhtml/glGetSubroutineUniformLocation.xml
 glCreateShaderProgram.xml
 gl_PatchVerticesIn.xml
 atomicAnd.xml
 docbook4/glGetQueryObject.xml
 html/glBlendEquationSeparate.xhtml
 docbook4/glDeleteShader.xml
 html/imageAtomicMax.xhtml
 glBlendEquationSeparate.xml
 html/glGetProgramInterface.xhtml
 html/glClearBufferData.xhtml
 docbook4/glStencilMaskSeparate.xml
 docbook4/xhtml/glClearBufferData.xml
 html/glInvalidateBufferSubData.xhtml
 html/glGetProgramResource.xhtml
 glClearBuffer.xml
 html/glMinSampleShading.xhtml
 docbook4/xhtml/glGenFramebuffers.xml
 glGetSamplerParameter.xml
 glGetProgramInfoLog.xml
 glBindImageTexture.xml
 glIsFramebuffer.xml
 smoothstep.xml
 html/glGetQueryIndexed.xhtml
 docbook4/xhtml/glDrawArraysIndirect.xml
 glIsBuffer.xml
 html/textureOffset.xhtml
 html/glIsVertexArray.xhtml
 docbook4/glInvalidateBufferData.xml
 docbook4/glGetShaderSource.xml
 docbook4/xhtml/glLinkProgram.xml
 glGetVertexArrayiv.xml
 docbook4/xhtml/glIsFramebuffer.xml
 glBindBufferRange.xml
 docbook4/glShaderBinary.xml
 docbook4/xhtml/glDrawTransformFeedbackStreamInstanced.xml
 glDeleteShader.xml
 glClearTexSubImage.xml
 docbook4/xhtml/glGetActiveUniformName.xml
 html/intBitsToFloat.xhtml
 glPatchParameter.xml
 glClearBufferSubData.xml
 docbook4/xhtml/glUseProgram.xml
 isnan.xml
 html/textureGather.xhtml
 glGetSubroutineIndex.xml
 docbook4/xhtml/glEnableVertexAttribArray.xml
 html/gl_Layer.xhtml
 html/glCheckFramebufferStatus.xhtml
 min.xml
 html/glBindSamplers.xhtml
 docbook4/xhtml/glObjectPtrLabel.xml
 glViewportArray.xml
 docbook4/glClearBufferSubData.xml
 html/glGetUniformBlockIndex.xhtml
 html/interpolateAtSample.xhtml
 gl_LocalInvocationID.xml
 docbook4/glBindSampler.xml
 docbook4/xhtml/glGetProgramResourceLocation.xml
 html/bitfieldReverse.xhtml
 glTexStorage3DMultisample.xml
 docbook4/glGetBufferParameter.xml
 glBindBufferBase.xml
 html/glGetQueryiv.xhtml
 html/dFdx.xhtml
 html/packDouble2x32.xhtml
 docbook4/glRenderbufferStorageMultisample.xml
 html/textureGrad.xhtml
 html/glCreateProgramPipelines.xhtml
 docbook4/xhtml/glProgramParameter.xml
 docbook4/xhtml/glWaitSync.xml
 glTexStorage3D.xml
 glGetAttribLocation.xml
 docbook4/xhtml/glGetProgramInfoLog.xml
 glGetShader.xml
 docbook4/glBufferStorage.xml
 docbook4/glViewportIndexed.xml
 docbook4/xhtml/glGetActiveAtomicCounterBufferiv.xml
 docbook4/glValidateProgramPipeline.xml
 radians.xml
 html/glBindTransformFeedback.xhtml
 docbook4/glBeginTransformFeedback.xml
 docbook4/xhtml/glDispatchComputeIndirect.xml
 html/gl_PointCoord.xhtml
 html/acosh.xhtml
 html/max.xhtml
 docbook4/glClientWaitSync.xml
 docbook4/glGetUniform.xml
 html/glVertexAttribBinding.xhtml
 textureGradOffset.xml
 docbook4/xhtml/glInvalidateSubFramebuffer.xml
 glViewportIndexed.xml
 glCreateQueries.xml
 html/imageAtomicExchange.xhtml
 lessThanEqual.xml
 docbook4/xhtml/glGetActiveAttrib.xml
 html/glGetBufferSubData.xhtml
 docbook4/glGetFragDataLocation.xml
 glBindVertexArray.xml
 glGetBufferPointerv.xml
 glGetFramebufferAttachmentParameter.xml
 html/atomicCompSwap.xhtml
 docbook4/glSampleMaski.xml
 docbook4/xhtml/glBindProgramPipeline.xml
 docbook4/xhtml/glBindImageTexture.xml
 html/glInvalidateTexImage.xhtml
 asinh.xml
 glDrawTransformFeedbackStream.xml
 html/packUnorm.xhtml
 docbook4/xhtml/glGetActiveSubroutineUniformName.xml
 docbook4/xhtml/glMapBuffer.xml
 html/glStencilFuncSeparate.xhtml
 glCreateSamplers.xml
 html/dot.xhtml
 docbook4/xhtml/glGetAttachedShaders.xml
 docbook4/glDrawArraysInstanced.xml
 docbook4/glGetFramebufferAttachmentParameter.xml
 docbook4/glPatchParameter.xml
 html/glCreateBuffers.xhtml
 docbook4/glDeleteSync.xml
 html/EndStreamPrimitive.xhtml
 glDepthRangeArray.xml
 docbook4/xhtml/glGetProgramPipelineInfoLog.xml
 docbook4/xhtml/glGetProgramPipeline.xml
 docbook4/xhtml/glShaderStorageBlockBinding.xml
 glBufferSubData.xml
 barrier.xml
 docbook4/xhtml/glCreateShader.xml
 html/glGetUniformSubroutine.xhtml
 docbook4/xhtml/glDrawTransformFeedback.xml
 glGetActiveSubroutineName.xml
 html/glGetProgramResourceLocationIndex.xhtml
 docbook4/xhtml/glTexBuffer.xml
 docbook4/xhtml/glStencilFuncSeparate.xml
 glDeleteFramebuffers.xml
 lessThan.xml
 faceforward.xml
 gl_TessCoord.xml
 glGetProgramResourceLocationIndex.xml
 glGenBuffers.xml
 interpolateAtOffset.xml
 glGetFragDataLocation.xml
 glIsTransformFeedback.xml
 docbook4/xhtml/glUniformBlockBinding.xml
 docbook4/glDispatchComputeIndirect.xml
 html/glGetVertexAttrib.xhtml
 docbook4/glCreateShader.xml
 docbook4/xhtml/glDeleteQueries.xml
 docbook4/glScissorArray.xml
 docbook4/xhtml/glBindVertexBuffers.xml
 html/glCreateProgram.xhtml
 docbook4/xhtml/glClampColor.xml
 html/determinant.xhtml
 docbook4/xhtml/glInvalidateBufferData.xml
 glClearBufferData.xml
 glEnableVertexAttribArray.xml
 gl_ClipDistance.xml
 docbook4/xhtml/glIsVertexArray.xml
 ldexp.xml
 glDrawTransformFeedback.xml
 docbook4/glTexStorage2DMultisample.xml
 textureProjOffset.xml
 docbook4/glCopyBufferSubData.xml
 docbook4/glGetProgramResourceLocationIndex.xml
 docbook4/glGenVertexArrays.xml
 docbook4/glGetActiveAttrib.xml
 textureQueryLod.xml
 glCreateFramebuffers.xml
 html/glGetActiveAttrib.xhtml
 glClearTexImage.xml
 glCompileShader.xml
 html/glBindTextureUnit.xhtml
 glInvalidateSubFramebuffer.xml
 html/fract.xhtml
 html/glVertexAttribPointer.xhtml
 glDeleteProgram.xml
 docbook4/glIsProgram.xml
 glDebugMessageInsert.xml
 html/unpackDouble2x32.xhtml
 removedTypes.xml
 html/glGetProgram.xhtml
 docbook4/glGetSamplerParameter.xml
 html/glIsRenderbuffer.xhtml
 tan.xml
 docbook4/xhtml/glAttachShader.xml
 docbook4/xhtml/glGetInternalformat.xml
 html/glGenQueries.xhtml
 docbook4/xhtml/glGetMultisample.xml
 docbook4/xhtml/glMultiDrawArraysIndirect.xml
 clamp.xml
 docbook4/glFlushMappedBufferRange.xml
 docbook4/xhtml/glInvalidateFramebuffer.xml
 docbook4/glBindBufferBase.xml
 docbook4/xhtml/glBeginQueryIndexed.xml
 gl_SampleID.xml
 interpolateAtSample.xml
 docbook4/xhtml/glDrawRangeElementsBaseVertex.xml
 glFlushMappedBufferRange.xml
 html/glGetTransformFeedbackVarying.xhtml
 glInvalidateTexImage.xml
 acos.xml
 html/sinh.xhtml
 glGetVertexArrayIndexed.xml
 glTransformFeedbackVaryings.xml
 glGetVertexAttrib.xml
 html/exp.xhtml
 html/any.xhtml
 html/glClearBuffer.xhtml
 docbook4/glGetProgramResourceLocation.xml
 html/glBindFramebuffer.xhtml
 glBindBuffersRange.xml
 html/glBindFragDataLocationIndexed.xhtml
 bitfieldReverse.xml
 glInvalidateFramebuffer.xml
 html/glResumeTransformFeedback.xhtml
 glIsRenderbuffer.xml
 html/glFlushMappedBufferRange.xhtml
 html/textureSamples.xhtml
 docbook4/glFramebufferTextureLayer.xml
 html/glActiveShaderProgram.xhtml
 glActiveShaderProgram.xml
 html/memoryBarrier.xhtml
 textureGather.xml
 docbook4/glGetProgramPipeline.xml
 glGetActiveSubroutineUniformName.xml
 docbook4/glGetInternalformat.xml
 html/atomicXor.xhtml
 html/glGetDebugMessageLog.xhtml
 docbook4/xhtml/glTexBufferRange.xml
 html/degrees.xhtml
 html/unpackUnorm.xhtml
 html/glGetRenderbufferParameter.xhtml
 html/glDeleteProgram.xhtml
 glGetQueryIndexed.xml
 docbook4/xhtml/glBindTransformFeedback.xml
 docbook4/glGetVertexAttrib.xml
 glIsSync.xml
 docbook4/glGetVertexAttribPointerv.xml
 docbook4/xhtml/glDepthRangeIndexed.xml
 docbook4/xhtml/glGetFragDataIndex.xml
 docbook4/glDeleteTransformFeedbacks.xml
 docbook4/glTexBuffer.xml
 glBindVertexBuffers.xml
 glCopyBufferSubData.xml
 glScissorArray.xml
 docbook4/glProgramParameter.xml
 docbook4/glShaderSource.xml
 docbook4/xhtml/glGetProgramResource.xml
 html/glDrawArraysInstancedBaseInstance.xhtml
 html/glGetUniformLocation.xhtml
 html/gl_NumWorkGroups.xhtml
 docbook4/glBindProgramPipeline.xml
 tanh.xml
 html/glGetUniform.xhtml
 html/glDrawArraysIndirect.xhtml
 html/glObjectPtrLabel.xhtml
 outerProduct.xml
 glBindProgramPipeline.xml
 html/glInvalidateFramebuffer.xhtml
 glDeleteProgramPipelines.xml
 html/glGetProgramPipeline.xhtml
 html/glDrawElementsIndirect.xhtml
 docbook4/xhtml/glBlitFramebuffer.xml
 glTextureView.xml
 glGetInternalformat.xml
 docbook4/glTexStorage2D.xml
 html/textureSize.xhtml
 html/tan.xhtml
 docbook4/removedTypes.xml
 glDeleteQueries.xml
 html/glGetFramebufferParameter.xhtml
 glTexStorage2DMultisample.xml
 html/glVertexArrayElementBuffer.xhtml
 docbook4/xhtml/glDeleteTransformFeedbacks.xml
 docbook4/xhtml/glIsTransformFeedback.xml
 html/clamp.xhtml
 html/texture.xhtml
 docbook4/xhtml/glGenVertexArrays.xml
 html/transpose.xhtml
 html/glGetPointerv.xhtml
 glDeleteSync.xml
 html/glGetActiveUniformName.xhtml
 html/texelFetchOffset.xhtml
 docbook4/glGenSamplers.xml
 glGetFragDataIndex.xml
 imageAtomicMin.xml
 html/glProvokingVertex.xhtml
 glDrawElementsInstancedBaseVertex.xml
 glClipControl.xml
 docbook4/glGetDebugMessageLog.xml
 docbook4/xhtml/glUniform.xml
 gl_InstanceID.xml
 docbook4/xhtml/glTexStorage3DMultisample.xml
 html/glGetProgramStage.xhtml
 html/isinf.xhtml
 docbook4/glDeleteProgramPipelines.xml
 html/gl_FragCoord.xhtml
 html/glBindBuffersRange.xhtml
 html/glGetSamplerParameter.xhtml
 docbook4/xhtml/glCopyBufferSubData.xml
 docbook4/xhtml/glBindAttribLocation.xml
 docbook4/xhtml/glGetAttribLocation.xml
 glIsSampler.xml
 docbook4/glClearTexImage.xml
 docbook4/glTextureView.xml
 docbook4/glDrawArraysInstancedBaseInstance.xml
 html/glGetVertexAttribPointerv.xhtml
 html/memoryBarrierShared.xhtml
 round.xml
 docbook4/glDrawElementsInstanced.xml
 html/glDeleteQueries.xhtml
 groupMemoryBarrier.xml
 docbook4/xhtml/glBeginTransformFeedback.xml
 gl_WorkGroupSize.xml
 glShaderBinary.xml
 html/glIsShader.xhtml
 glResumeTransformFeedback.xml
 docbook4/glGetActiveUniform.xml
 html/glCreateShader.xhtml
 html/glBufferSubData.xhtml
 gl_CullDistance.xml
 html/atomicExchange.xhtml
 docbook4/xhtml/glGenQueries.xml
 glBlitFramebuffer.xml
 docbook4/glDrawElementsIndirect.xml
 html/cos.xhtml
 glDrawArraysIndirect.xml
 glGetActiveAttrib.xml
 docbook4/xhtml/glGetShaderInfoLog.xml
 docbook4/glDebugMessageCallback.xml
 glTexImage2DMultisample.xml
 docbook4/xhtml/glPatchParameter.xml
 frexp.xml
 docbook4/glGetActiveSubroutineUniform.xml
 html/mix.xhtml
 docbook4/xhtml/glGetActiveUniformsiv.xml
 exp.xml
 docbook4/glGetProgramResourceIndex.xml
 packUnorm.xml
 glDrawArraysInstanced.xml
 glSampleMaski.xml
 docbook4/glDeleteFramebuffers.xml
 html/glGetInternalformat.xhtml
 glGetShaderInfoLog.xml
 html/glUnmapBuffer.xhtml
 glTexBuffer.xml
 html/textureLod.xhtml
 docbook4/xhtml/glDrawElementsIndirect.xml
 matrixCompMult.xml
 glGetGraphicsResetStatus.xml
 docbook4/glVertexBindingDivisor.xml
 html/bitfieldInsert.xhtml
 uaddCarry.xml
 docbook4/glDrawRangeElementsBaseVertex.xml
 html/glDrawRangeElementsBaseVertex.xhtml
 docbook4/xhtml/glTexStorage1D.xml
 atomicOr.xml
 html/glBindRenderbuffer.xhtml
 glGetActiveUniformName.xml
 docbook4/glGetActiveUniformsiv.xml
 docbook4/xhtml/glGetVertexAttribPointerv.xml
 glProgramBinary.xml
 html/interpolateAtOffset.xhtml
 sin.xml
 glGetPointerv.xml
 glGetProgramResourceIndex.xml
 glBindTransformFeedback.xml
 html/glDetachShader.xhtml
 atomicCompSwap.xml
 docbook4/glIsRenderbuffer.xml
 glGetShaderPrecisionFormat.xml
 docbook4/glClearBufferData.xml
 glBindFramebuffer.xml
 glGenSamplers.xml
 docbook4/glGetUniformIndices.xml
 html/glIsFramebuffer.xhtml
 glDeleteRenderbuffers.xml
 docbook4/glBlitFramebuffer.xml
 distance.xml
 docbook4/glVertexAttribDivisor.xml
 docbook4/glFramebufferParameteri.xml
 docbook4/xhtml/glValidateProgramPipeline.xml
 html/gl_FrontFacing.xhtml
 glGetProgramPipelineInfoLog.xml
 html/glIsQuery.xhtml
 html/atomicCounterIncrement.xhtml
 glValidateProgramPipeline.xml
 any.xml
 html/gl_LocalInvocationID.xhtml
 html/glDrawArraysInstanced.xhtml
 docbook4/glGetProgramPipelineInfoLog.xml
 html/glCopyBufferSubData.xhtml
 glUniformBlockBinding.xml
 docbook4/xhtml/glGetQueryObject.xml
 docbook4/glTexStorage1D.xml
 html/floatBitsToInt.xhtml
 fwidth.xml
 glBufferStorage.xml
 html/atanh.xhtml
 reflect.xml
 docbook4/xhtml/glGetProgramBinary.xml
 docbook4/xhtml/glGetBufferParameter.xml
 html/glGetActiveSubroutineName.xhtml
 docbook4/glGetSync.xml
 html/glTransformFeedbackBufferBase.xhtml
 imageStore.xml
 glDeleteTransformFeedbacks.xml
 html/gl_LocalInvocationIndex.xhtml
 html/outerProduct.xhtml
 glIsQuery.xml
 docbook4/xhtml/glGetProgram.xml
 html/memoryBarrierImage.xhtml
 docbook4/glIsFramebuffer.xml
 docbook4/glIsProgramPipeline.xml
 html/glGenerateMipmap.xhtml
 glGetActiveUniformBlock.xml
 docbook4/glGetActiveUniformBlock.xml
 glGetBufferSubData.xml
 html/glScissorIndexed.xhtml
 docbook4/xhtml/glBlendEquationSeparate.xml
 docbook4/glViewportArray.xml
 docbook4/xhtml/glBindRenderbuffer.xml
 fract.xml
 glVertexAttribDivisor.xml
 docbook4/glIsBuffer.xml
 html/glPushDebugGroup.xhtml
 glCreateProgram.xml
 html/glMultiDrawElementsBaseVertex.xhtml
 html/textureQueryLevels.xhtml
 html/texelFetch.xhtml
 glObjectPtrLabel.xml
 glCheckFramebufferStatus.xml
 html/glTexBuffer.xhtml
 docbook4/xhtml/glGetProgramResourceIndex.xml
 docbook4/glClearBuffer.xml
 texelFetchOffset.xml
 docbook4/glGetFragDataIndex.xml
 glDrawRangeElementsBaseVertex.xml
 docbook4/glUseProgramStages.xml
 html/sin.xhtml
 gl_TessLevelInner.xml
 docbook4/xhtml/glIsShader.xml
 docbook4/xhtml/glProgramBinary.xml
 docbook4/xhtml/glResumeTransformFeedback.xml
 transpose.xml
 html/glTexStorage2D.xhtml
 html/glCreateSamplers.xhtml
 greaterThanEqual.xml
 html/glGetActiveUniformBlock.xhtml
 glVertexAttribBinding.xml
 docbook4/glDrawElementsInstancedBaseInstance.xml
 html/distance.xhtml
 glMultiDrawElementsBaseVertex.xml
 html/glEnableVertexAttribArray.xhtml
 docbook4/glStencilFuncSeparate.xml
 html/glLinkProgram.xhtml
 gl_FrontFacing.xml
 html/glCreateQueries.xhtml
 inverse.xml
 texelFetch.xml
 glGetSync.xml
 docbook4/glReleaseShaderCompiler.xml
 glBindFragDataLocationIndexed.xml
 docbook4/glProgramBinary.xml
 html/floor.xhtml
 docbook4/glPauseTransformFeedback.xml
 glAttachShader.xml
 html/umulExtended.xhtml
 docbook4/glFramebufferRenderbuffer.xml
 docbook4/glObjectLabel.xml
 docbook4/xhtml/glGetUniformIndices.xml
 html/glValidateProgram.xhtml
 docbook4/glDetachShader.xml
 glUniform.xml
 html/glBeginConditionalRender.xhtml
 html/textureGatherOffsets.xhtml
 docbook4/glGetShaderInfoLog.xml
 docbook4/xhtml/glDeleteShader.xml
 docbook4/glDepthRangeArray.xml
 html/gl_ClipDistance.xhtml
 html/notEqual.xhtml
 docbook4/xhtml/glDebugMessageControl.xml
 html/roundEven.xhtml
 html/textureProjGradOffset.xhtml
 docbook4/glUseProgram.xml
 glGenProgramPipelines.xml
 html/glUniformSubroutines.xhtml
 docbook4/glInvalidateTexImage.xml
 html/faceforward.xhtml
 html/glCreateRenderbuffers.xhtml
 html/glSamplerParameter.xhtml
 docbook4/xhtml/glClearBufferSubData.xml
 docbook4/xhtml/glTexStorage3D.xml
 docbook4/glBlendEquationSeparate.xml
 docbook4/xhtml/glGenProgramPipelines.xml
 html/glGetActiveUniform.xhtml
 docbook4/glBindSamplers.xml
 glTextureBarrier.xml
 html/glIsTransformFeedback.xhtml
 html/glGetShaderInfoLog.xhtml
 glVertexAttribFormat.xml
 html/glBindImageTextures.xhtml
 docbook4/xhtml/glClearBuffer.xml
 docbook4/glBindTransformFeedback.xml
 docbook4/glAttachShader.xml
 docbook4/glGetObjectPtrLabel.xml
 html/glSampleMaski.xhtml
 docbook4/xhtml/glGenRenderbuffers.xml
 pow.xml
 gl_SampleMaskIn.xml
 html/glGetBufferPointerv.xhtml
 docbook4/glVertexAttribPointer.xml
 html/glGetSync.xhtml
 glGetUniformLocation.xml
 gl_PointSize.xml
 html/asin.xhtml
 html/glGenRenderbuffers.xhtml
 interpolateAtCentroid.xml
 glWaitSync.xml
 gl_Layer.xml
 html/glBindBuffer.xhtml
 docbook4/glBindFragDataLocation.xml
 glGetUniformIndices.xml
 html/glBindFragDataLocation.xhtml
 atanh.xml
 docbook4/xhtml/glDrawTransformFeedbackStream.xml
 glStencilOpSeparate.xml
 docbook4/xhtml/glClientWaitSync.xml
 html/interpolateAtCentroid.xhtml
 textureLod.xml
 docbook4/xhtml/glIsQuery.xml
 docbook4/xhtml/glGetVertexAttrib.xml
 html/asinh.xhtml
 html/glShaderStorageBlockBinding.xhtml
 docbook4/xhtml/glGetObjectPtrLabel.xml
 html/tanh.xhtml
 glClientWaitSync.xml
 docbook4/xhtml/glDrawArraysInstanced.xml
 docbook4/glGetProgramResource.xml
 docbook4/xhtml/glGetFragDataLocation.xml
 html/gl_SampleMaskIn.xhtml
 html/atomicMin.xhtml
 glFramebufferTexture.xml
 gl_NumWorkGroups.xml
 html/glVertexAttribFormat.xhtml
 html/glScissorArray.xhtml
 docbook4/xhtml/glMultiDrawElementsBaseVertex.xml
 docbook4/glGenerateMipmap.xml
 docbook4/xhtml/glFramebufferTexture.xml
 html/gl_PatchVerticesIn.xhtml
 html/glCopyImageSubData.xhtml
 glProgramUniform.xml
 glDeleteVertexArrays.xml
 html/glDrawTransformFeedbackInstanced.xhtml
 docbook4/glScissorIndexed.xml
 html/glDrawBuffers.xhtml
 glQueryCounter.xml
 html/unpackHalf2x16.xhtml
 docbook4/glGetActiveUniformBlockName.xml
 html/glInvalidateSubFramebuffer.xhtml
 html/glInvalidateBufferData.xhtml
 docbook4/xhtml/glSampleMaski.xml
 gl_PrimitiveIDIn.xml
 docbook4/xhtml/glGetSync.xml
 html/textureProjLodOffset.xhtml
 docbook4/xhtml/glDeleteSync.xml
 docbook4/xhtml/glTexStorage2D.xml
 glGetProgramStage.xml
 docbook4/glCopyImageSubData.xml
 docbook4/xhtml/glGetQueryiv.xml
 html/normalize.xhtml
 html/glVertexAttribDivisor.xhtml
 html/reflect.xhtml
 textureGrad.xml
 docbook4/glLinkProgram.xml
 docbook4/xhtml/glDeleteBuffers.xml
 glIsVertexArray.xml
 html/glFramebufferTextureLayer.xhtml
 html/barrier.xhtml
 docbook4/xhtml/glBindBuffersRange.xml
 glDrawElementsBaseVertex.xml
 docbook4/xhtml/glGenBuffers.xml
 glRenderbufferStorageMultisample.xml
 html/glIsProgramPipeline.xhtml
 imageAtomicXor.xml
 glCopyImageSubData.xml
 glBindSamplers.xml
 docbook4/xhtml/glInvalidateBufferSubData.xml
 inversesqrt.xml
 docbook4/glGetProgramInterface.xml
 html/glDispatchComputeIndirect.xhtml
 docbook4/xhtml/glGetUniformLocation.xml
 memoryBarrierImage.xml
 html/glDrawElementsInstancedBaseVertex.xhtml
 docbook4/glGenQueries.xml
 docbook4/glGetShaderPrecisionFormat.xml
 html/atomicMax.xhtml
 docbook4/xhtml/glQueryCounter.xml
 dot.xml
 html/glBindVertexArray.xhtml
 docbook4/glBindVertexBuffers.xml
 docbook4/xhtml/glFramebufferTextureLayer.xml
 docbook4/glTransformFeedbackVaryings.xml
 html/atomicOr.xhtml
 glBindAttribLocation.xml
 refract.xml
 html/glDebugMessageControl.xhtml
 html/glUniform.xhtml
 glGenRenderbuffers.xml
 docbook4/xhtml/glFramebufferParameteri.xml
 html/gl_GlobalInvocationID.xhtml
 docbook4/glGetProgramBinary.xml
 html/glGetBufferParameter.xhtml
 html/glProgramBinary.xhtml
 docbook4/xhtml/glGetActiveUniformBlockName.xml
 html/glGetActiveUniformBlockName.xhtml
 html/glGetAttribLocation.xhtml
 html/glGetProgramResourceName.xhtml
 docbook4/glGetQueryIndexed.xml
 glGetProgramResourceName.xml
 docbook4/xhtml/glBindBufferBase.xml
 html/glShaderBinary.xhtml
 html/EmitStreamVertex.xhtml
 docbook4/xhtml/glGenSamplers.xml
 glRenderbufferStorage.xml
 imageSize.xml
 html/imageAtomicXor.xhtml
 log.xml
 glGenQueries.xml
 docbook4/glGetAttribLocation.xml
 html/frexp.xhtml
 glTransformFeedbackBufferRange.xml
 docbook4/xhtml/glGetFramebufferAttachmentParameter.xml
 html/imageAtomicMin.xhtml
 glFramebufferRenderbuffer.xml
 acosh.xml
 html/glTextureBarrier.xhtml
 docbook4/glGenRenderbuffers.xml
 docbook4/glMinSampleShading.xml
 html/sqrt.xhtml
 html/imageStore.xhtml
 glGetActiveUniform.xml
 glIsProgramPipeline.xml
 gl_FragCoord.xml
 docbook4/xhtml/glTexImage2DMultisample.xml
 atan.xml
 docbook4/xhtml/glGetShaderPrecisionFormat.xml
 docbook4/glQueryCounter.xml
 docbook4/glGetBufferSubData.xml
 glGetSubroutineUniformLocation.xml
 html/ldexp.xhtml
 docbook4/xhtml/glBindFramebuffer.xml
 docbook4/xhtml/glVertexAttrib.xml
 cross.xml
 docbook4/glGetRenderbufferParameter.xml
 glGetQueryiv.xml
 atomicAdd.xml
 imageAtomicOr.xml
 docbook4/glGetProgram.xml
 docbook4/glGenBuffers.xml
 html/glDispatchCompute.xhtml
 texture.xml
 docbook4/glSamplerParameter.xml
 docbook4/xhtml/glIsBuffer.xml
 html/glGetProgramResourceLocation.xhtml
 html/glQueryCounter.xhtml
 html/bitfieldExtract.xhtml
 roundEven.xml
 modf.xml
 html/glGetVertexArrayIndexed.xhtml
 atomicExchange.xml
 html/all.xhtml
 glCreateBuffers.xml
 glDetachShader.xml
 docbook4/glGetMultisample.xml
 docbook4/glClampColor.xml
 glScissorIndexed.xml
 glMinSampleShading.xml
 glBufferData.xml
 html/glIsProgram.xhtml
 html/glTexStorage1D.xhtml
 docbook4/xhtml/glGetObjectLabel.xml
 glPopDebugGroup.xml
 glGetTransformFeedbackVarying.xml
 glCreateTransformFeedbacks.xml
 docbook4/glBeginQuery.xml
 glGetTextureSubImage.xml
 docbook4/xhtml/glVertexAttribBinding.xml
 docbook4/xhtml/glMinSampleShading.xml
 glGetActiveAtomicCounterBufferiv.xml
 html/glClientWaitSync.xhtml
 html/log2.xhtml
 docbook4/xhtml/glCompileShader.xml
 atomicMin.xml
 docbook4/xhtml/glCheckFramebufferStatus.xml
 docbook4/xhtml/glDetachShader.xml
 docbook4/glDebugMessageControl.xml
 gl_WorkGroupID.xml
 docbook4/glDrawTransformFeedbackStreamInstanced.xml
 docbook4/xhtml/glDeleteProgram.xml
 html/glGetFragDataIndex.xhtml
 glGetProgramResource.xml
 mix.xml
 gl_Position.xml
 docbook4/glGetQueryiv.xml
 html/glClearTexImage.xhtml
 html/glGetProgramBinary.xhtml
 glValidateProgram.xml
 sign.xml
 html/cosh.xhtml
 docbook4/glIsQuery.xml
 html/glFenceSync.xhtml
 html/glMultiDrawArraysIndirect.xhtml
 docbook4/xhtml/glDeleteProgramPipelines.xml
 docbook4/xhtml/glScissorIndexed.xml
 html/gl_NumSamples.xhtml
 docbook4/xhtml/glIsProgramPipeline.xml
 glGetCompressedTextureSubImage.xml
 html/step.xhtml
 docbook4/glGetObjectLabel.xml
 html/bitCount.xhtml
 html/gl_VertexID.xhtml
 html/gl_PrimitiveIDIn.xhtml
 docbook4/xhtml/glGetDebugMessageLog.xml
 docbook4/glBindBuffersRange.xml
 gl_SampleMask.xml
 glBeginConditionalRender.xml
 html/lessThan.xhtml
 textureOffset.xml
 glDebugMessageCallback.xml
 html/glTexBufferRange.xhtml
 html/glCreateVertexArrays.xhtml
 greaterThan.xml
 html/EmitVertex.xhtml
 umulExtended.xml
 textureLodOffset.xml
 glGetFramebufferParameter.xml
 glGetProgramInterface.xml
 docbook4/xhtml/glDeleteVertexArrays.xml
 glGetBufferParameter.xml
 docbook4/glFenceSync.xml
 docbook4/xhtml/glGetQueryIndexed.xml
 html/glTexStorage3DMultisample.xhtml
 docbook4/xhtml/glPopDebugGroup.xml
 docbook4/glCreateProgram.xml
 unpackDouble2x32.xml
 html/fwidth.xhtml
 sinh.xml
 glGetActiveUniformsiv.xml
 html/gl_SamplePosition.xhtml
 html/textureGradOffset.xhtml
 docbook4/glGenProgramPipelines.xml
 docbook4/xhtml/glGetUniformBlockIndex.xml
 glGetUniformBlockIndex.xml
 docbook4/glTexImage2DMultisample.xml
 html/min.xhtml
 html/acos.xhtml
 docbook4/glMapBufferRange.xml
 html/glGetFragDataLocation.xhtml
 imageAtomicCompSwap.xml
 docbook4/xhtml/glGetProgramStage.xml
 docbook4/glStencilOpSeparate.xml
 docbook4/xhtml/glBindVertexArray.xml
 docbook4/xhtml/glBufferSubData.xml
 html/atan.xhtml
 html/glDeleteVertexArrays.xhtml
 docbook4/xhtml/glCopyImageSubData.xml
 html/glUniformBlockBinding.xhtml
 glProvokingVertex.xml
 glDeleteBuffers.xml
 glTexStorage2D.xml
 html/glAttachShader.xhtml
 docbook4/xhtml/glIsSync.xml
 unpackHalf2x16.xml
 glVertexAttrib.xml
 docbook4/xhtml/glGetProgramResourceLocationIndex.xml
 glReleaseShaderCompiler.xml
 docbook4/xhtml/glVertexAttribFormat.xml
 html/glTransformFeedbackVaryings.xhtml
 glGetMultisample.xml
 imageAtomicExchange.xml
 docbook4/glGetActiveSubroutineName.xml
 glFramebufferParameteri.xml
 docbook4/xhtml/glBeginQuery.xml
 fma.xml
 docbook4/xhtml/glBindSampler.xml
 equal.xml
 html/memoryBarrierBuffer.xhtml
 html/glCompileShader.xhtml
 gl_NumSamples.xml
 docbook4/xhtml/glValidateProgram.xml
 html/glGetFramebufferAttachmentParameter.xhtml
 html/glRenderbufferStorage.xhtml
 docbook4/glDrawElementsBaseVertex.xml
 glGetProgramPipeline.xml
 docbook4/xhtml/glRenderbufferStorageMultisample.xml
 html/glMemoryBarrier.xhtml
 docbook4/xhtml/glDrawElementsInstancedBaseVertexBaseInstance.xml
 docbook4/glDrawElementsInstancedBaseVertex.xml
 docbook4/glBindTextures.xml
 docbook4/glObjectPtrLabel.xml
 html/glObjectLabel.xhtml
 glFramebufferTextureLayer.xml
 html/gl_PointSize.xhtml
 docbook4/glGetActiveUniformName.xml
 docbook4/glMultiDrawElementsBaseVertex.xml
 glUseProgram.xml
 html/glMapBuffer.xhtml
 html/glGenTransformFeedbacks.xhtml
 degrees.xml
 glCreateVertexArrays.xml
 html/memoryBarrierAtomicCounter.xhtml
 docbook4/glGetShader.xml
 html/trunc.xhtml
 html/glPauseTransformFeedback.xhtml
 docbook4/glGenFramebuffers.xml
 html/gl_InvocationID.xhtml
 html/textureProjOffset.xhtml
 docbook4/glBindVertexBuffer.xml
 glGetProgramBinary.xml
 docbook4/xhtml/glClearTexImage.xml
 docbook4/glDeleteProgram.xml
 glBeginTransformFeedback.xml
 html/glBindBufferRange.xhtml
 findLSB.xml
 glGetShaderSource.xml
 notEqual.xml
 html/glTexImage3DMultisample.xhtml
 html/glGetObjectLabel.xhtml
 glMemoryBarrier.xml
 docbook4/xhtml/glDrawElementsBaseVertex.xml
 docbook4/xhtml/glFramebufferRenderbuffer.xml
 docbook4/glDrawArraysIndirect.xml
 docbook4/xhtml/glUniformSubroutines.xml
 glDrawElementsInstancedBaseVertexBaseInstance.xml
 html/glGetSubroutineIndex.xhtml
 html/glDeleteSync.xhtml
 html/glGetShader.xhtml
 html/not.xhtml
 html/glBindBufferBase.xhtml
 glGetActiveUniformBlockName.xml
 glMapBuffer.xml
 exp2.xml
 html/glDepthRangeArray.xhtml
 imageAtomicAdd.xml
 html/inverse.xhtml
 docbook4/xhtml/glBindBuffersBase.xml
 docbook4/glGetAttachedShaders.xml
 html/glProgramUniform.xhtml
 html/glGenVertexArrays.xhtml
 determinant.xml
 html/gl_InstanceID.xhtml
 gl_HelperInvocation.xml
 docbook4/xhtml/glGetProgramInterface.xml
 gl_FragDepth.xml
 html/removedTypes.xhtml
 html/modf.xhtml
 docbook4/xhtml/glGetProgramResourceName.xml
 docbook4/glPrimitiveRestartIndex.xml
 docbook4/xhtml/glDrawTransformFeedbackInstanced.xml
 html/glWaitSync.xhtml
 html/glCreateShaderProgram.xhtml
 glGenVertexArrays.xml
 gl_LocalInvocationIndex.xml
 html/glViewportArray.xhtml
 html/glTexImage2DMultisample.xhtml
 html/glGetQueryObject.xhtml
 glGetAttachedShaders.xml
 docbook4/xhtml/glGetShaderSource.xml
 max.xml
 bitfieldInsert.xml
 html/glGetActiveSubroutineUniformName.xhtml
 glTexStorage1D.xml
 glDispatchComputeIndirect.xml
 docbook4/xhtml/glVertexAttribPointer.xml
 glInvalidateBufferSubData.xml
 floatBitsToInt.xml
 html/glIsBuffer.xhtml
 docbook4/glIsSync.xml
 docbook4/xhtml/glGetActiveUniform.xml
 docbook4/glBufferData.xml
 html/glFramebufferTexture.xhtml
 docbook4/glDeleteRenderbuffers.xml
 cosh.xml
 docbook4/glDeleteSamplers.xml
 html/matrixCompMult.xhtml
 html/log.xhtml
 docbook4/xhtml/glBufferStorage.xml
 docbook4/glBindAttribLocation.xml
 html/glGetProgramResourceIndex.xhtml
 docbook4/xhtml/glDebugMessageInsert.xml
 textureGatherOffset.xml
 docbook4/xhtml/glInvalidateTexSubImage.xml
 html/glGetSubroutineUniformLocation.xhtml
 gl_ViewportIndex.xml
 glBeginQueryIndexed.xml
 html/glClearBufferSubData.xhtml
 html/round.xhtml
 glCreateTextures.xml
 glBindBuffer.xml
 html/glClampColor.xhtml
 glBindTextures.xml
 html/abs.xhtml
 html/glUseProgramStages.xhtml
 trunc.xml
 glDrawBuffers.xml
 glTransformFeedbackBufferBase.xml
 html/atomicCounter.xhtml
 html/lessThanEqual.xhtml
 glShaderSource.xml
 gl_InvocationID.xml
 html/glFramebufferParameteri.xhtml
 html/EndPrimitive.xhtml
 html/sign.xhtml
 docbook4/xhtml/glProgramUniform.xml
 docbook4/xhtml/glDispatchCompute.xml
 docbook4/xhtml/glGetBufferPointerv.xml
 html/glVertexBindingDivisor.xhtml
 html/greaterThan.xhtml
 html/glBindVertexBuffers.xhtml
 docbook4/glGetUniformLocation.xml
 html/gl_SampleMask.xhtml
 docbook4/xhtml/glShaderBinary.xml
 html/glGetShaderPrecisionFormat.xhtml
 html/glDrawElementsInstancedBaseVertexBaseInstance.xhtml
 normalize.xml
 docbook4/glFramebufferTexture.xml
 html/glDrawElementsInstancedBaseInstance.xhtml
 unpackUnorm.xml
 html/imageSize.xhtml
 html/glGetTransformFeedback.xhtml
 html/glReleaseShaderCompiler.xhtml
 gl_SamplePosition.xml
 html/glBeginTransformFeedback.xhtml
 all.xml
 docbook4/glBindBuffer.xml
 html/glBindAttribLocation.xhtml
 glFenceSync.xml
 docbook4/xhtml/glBindImageTextures.xml
 docbook4/glGetProgramInfoLog.xml
 docbook4/xhtml/glClearTexSubImage.xml
 html/glPrimitiveRestartIndex.xhtml
 glPauseTransformFeedback.xml
 docbook4/glGetSubroutineIndex.xml
 EndStreamPrimitive.xml
 html/gl_Position.xhtml
 glGetVertexAttribPointerv.xml
 html/glClipControl.xhtml
 length.xml
 docbook4/xhtml/glGetRenderbufferParameter.xml
 EmitVertex.xml
 glIsProgram.xml
 docbook4/xhtml/glViewportArray.xml
 html/imageLoad.xhtml
 docbook4/xhtml/glFlushMappedBufferRange.xml
 docbook4/glGenTransformFeedbacks.xml
 html/glDrawTransformFeedback.xhtml
 glBindTextureUnit.xml
 docbook4/xhtml/glGetActiveSubroutineName.xml
 docbook4/xhtml/glSamplerParameter.xml
 html/glDepthRangeIndexed.xhtml
 imageAtomicMax.xml
 glMultiDrawElementsIndirect.xml
 dFdx.xml
 html/gl_TessLevelOuter.xhtml
 textureGatherOffsets.xml
 html/glValidateProgramPipeline.xhtml
 docbook4/glDrawTransformFeedbackStream.xml
 docbook4/glRenderbufferStorage.xml
 docbook4/glMapBuffer.xml
 html/cross.xhtml
 not.xml
 html/length.xhtml
 html/glTexStorage3D.xhtml
 html/gl_TessLevelInner.xhtml
 docbook4/xhtml/glGetUniform.xml
 intBitsToFloat.xml
 glDepthRangeIndexed.xml
 glVertexArrayElementBuffer.xml
 docbook4/glGetFramebufferParameter.xml
 glBindSampler.xml
 html/glRenderbufferStorageMultisample.xhtml
 docbook4/xhtml/glGetTransformFeedbackVarying.xml
 docbook4/xhtml/glBindBuffer.xml
 docbook4/glInvalidateFramebuffer.xml
 atomicCounterDecrement.xml
 glVertexAttribPointer.xml
 html/uaddCarry.xhtml
 docbook4/glBindFragDataLocationIndexed.xml
 html/textureLodOffset.xhtml
 glIsShader.xml
 docbook4/xhtml/glDeleteRenderbuffers.xml
 docbook4/xhtml/glGetSamplerParameter.xml
 html/imageAtomicOr.xhtml
 docbook4/glGetActiveSubroutineUniformName.xml
 glCreateProgramPipelines.xml
 docbook4/glProgramUniform.xml
 docbook4/glWaitSync.xml
 docbook4/glIsSampler.xml
 glGetTransformFeedback.xml
 glMapBufferRange.xml
 docbook4/xhtml/glTexImage3DMultisample.xml
 docbook4/xhtml/glMemoryBarrier.xml
 glInvalidateBufferData.xml
 docbook4/xhtml/glGetActiveUniformBlock.xml
 textureSamples.xml
 docbook4/xhtml/glDeleteFramebuffers.xml
 html/textureProjLod.xhtml
 docbook4/glTexStorage3D.xml
 docbook4/xhtml/glRenderbufferStorage.xml
 docbook4/glGetTransformFeedbackVarying.xml
 docbook4/glIsTransformFeedback.xml
 noise.xml
 html/glBindProgramPipeline.xhtml
 glGetUniformSubroutine.xml
 html/glGetActiveSubroutineUniform.xhtml
 html/ceil.xhtml
 glShaderStorageBlockBinding.xml
 html/glCreateTransformFeedbacks.xhtml
 glGetUniform.xml
 docbook4/xhtml/glPauseTransformFeedback.xml
 html/glBindImageTexture.xhtml
 glBindFragDataLocation.xml
 docbook4/glEnableVertexAttribArray.xml
 docbook4/xhtml/glDebugMessageCallback.xml
 docbook4/glGetUniformSubroutine.xml
 docbook4/xhtml/glInvalidateTexImage.xml
 docbook4/xhtml/glGetSubroutineIndex.xml
 html/glDeleteTransformFeedbacks.xhtml
 html/glUseProgram.xhtml
 docbook4/glIsShader.xml
 html/glDebugMessageInsert.xhtml
 memoryBarrier.xml
 docbook4/glMultiDrawElementsIndirect.xml
 glCreateShader.xml
 html/glIsSync.xhtml
 html/glProgramParameter.xhtml
 docbook4/glUniformSubroutines.xml
 docbook4/xhtml/glDrawArraysInstancedBaseInstance.xml
 html/glBufferStorage.xhtml
 glTexImage3DMultisample.xml
 html/glGetActiveUniformsiv.xhtml
 html/refract.xhtml
 docbook4/glBeginConditionalRender.xml
 packDouble2x32.xml
 textureProjLodOffset.xml
 docbook4/glMultiDrawArraysIndirect.xml
 html/glViewportIndexed.xhtml
 html/glBeginQuery.xhtml
 html/glBindVertexBuffer.xhtml
 html/glDrawTransformFeedbackStreamInstanced.xhtml
 html/glCreateFramebuffers.xhtml
 html/atomicCounterDecrement.xhtml
 html/smoothstep.xhtml
 html/glShaderSource.xhtml
 docbook4/xhtml/glPushDebugGroup.xml
 docbook4/xhtml/glPrimitiveRestartIndex.xml
 html/mod.xhtml
 html/glDebugMessageCallback.xhtml
 html/glGetProgramPipelineInfoLog.xhtml
 docbook4/glProvokingVertex.xml
 docbook4/xhtml/glBindSamplers.xml
 docbook4/xhtml/glDeleteSamplers.xml
 docbook4/glBindVertexArray.xml
 html/glMultiDrawElementsIndirect.xhtml
 html/glGenFramebuffers.xhtml
 html/textureProjGrad.xhtml
 docbook4/glBufferSubData.xml
 html/radians.xhtml
 html/glBlitFramebuffer.xhtml
 html/imageAtomicAdd.xhtml
 glBindBuffersBase.xml
 glUnmapBuffer.xml
 docbook4/xhtml/glScissorArray.xml
 imageLoad.xml
 textureProj.xml
 docbook4/xhtml/glBindFragDataLocationIndexed.xml
 html/pow.xhtml
 docbook4/glDeleteVertexArrays.xml
 docbook4/xhtml/glDrawBuffers.xml
 html/gl_TessCoord.xhtml
 docbook4/glInvalidateBufferSubData.xml
 glGenerateMipmap.xml
 docbook4/glInvalidateSubFramebuffer.xml
 html/findMSB.xhtml
 html/gl_HelperInvocation.xhtml
 docbook4/glUniformBlockBinding.xml
 docbook4/glTexBufferRange.xml
 glPushDebugGroup.xml
 glDeleteSamplers.xml
 textureSize.xml
 html/inversesqrt.xhtml
 html/glFramebufferRenderbuffer.xhtml
 html/imageSamples.xhtml
 html/usubBorrow.xhtml
 gl_TessLevelOuter.xml
 docbook4/glPushDebugGroup.xml
 html/imageAtomicAnd.xhtml
 html/glBufferData.xhtml
 memoryBarrierAtomicCounter.xml
 imageAtomicAnd.xml
 docbook4/xhtml/glBindTextures.xml
 html/glGetShaderSource.xhtml
 docbook4/xhtml/glGenTransformFeedbacks.xml
 html/atomicAdd.xhtml
 docbook4/xhtml/glProvokingVertex.xml
 docbook4/xhtml/glDepthRangeArray.xml
 docbook4/glGetSubroutineUniformLocation.xml
 docbook4/glDrawTransformFeedbackInstanced.xml
 docbook4/glDrawTransformFeedback.xml
 docbook4/glDeleteQueries.xml
 docbook4/xhtml/glDrawElementsInstanced.xml
 glDrawElementsIndirect.xml
 html/glGenBuffers.xhtml
 gl_GlobalInvocationID.xml
 html/glGetObjectPtrLabel.xhtml
 html/glVertexAttrib.xhtml
 docbook4/glBeginQueryIndexed.xml
 asin.xml
 docbook4/glBindImageTextures.xml
 docbook4/glBindBuffersBase.xml
 html/glPatchParameter.xhtml
 floor.xml
 docbook4/glCheckFramebufferStatus.xml
 html/packHalf2x16.xhtml
 docbook4/glBindImageTexture.xml
 glPrimitiveRestartIndex.xml
 docbook4/glDispatchCompute.xml
 glGetQueryObject.xml
 html/textureProj.xhtml
 docbook4/xhtml/glTexStorage2DMultisample.xml
 gl_PointCoord.xml
 html/glCreateTextures.xhtml
 html/gl_PrimitiveID.xhtml
 html/glBindTextures.xhtml
 docbook4/xhtml/glCreateProgram.xml
 html/gl_WorkGroupID.xhtml
 html/glBindBuffersBase.xhtml
 html/glDeleteShader.xhtml
 html/glDrawElementsInstanced.xhtml
 html/glTexStorage2DMultisample.xhtml
 docbook4/glDrawElementsInstancedBaseVertexBaseInstance.xml
 step.xml
 docbook4/xhtml/glVertexBindingDivisor.xml
 html/glPopDebugGroup.xhtml
 docbook4/xhtml/glUseProgramStages.xml
 html/groupMemoryBarrier.xhtml
 docbook4/glUniform.xml
 html/gl_CullDistance.xhtml
 html/glInvalidateTexSubImage.xhtml
 glGetDebugMessageLog.xml
 mod.xml
 docbook4/xhtml/glViewportIndexed.xml
 glDrawArraysInstancedBaseInstance.xml
 html/glGetProgramInfoLog.xhtml
 docbook4/xhtml/glGetActiveSubroutineUniform.xml
 html/glGetTextureSubImage.xhtml
 html/greaterThanEqual.xhtml
 docbook4/glGetUniformBlockIndex.xml
 docbook4/xhtml/glReleaseShaderCompiler.xml
 html/fma.xhtml
 docbook4/xhtml/glDrawElementsInstancedBaseVertex.xml
 glDispatchCompute.xml
 html/glTextureView.xhtml
 html/textureQueryLod.xhtml
 atomicMax.xml
 docbook4/glVertexAttribBinding.xml
 usubBorrow.xml
 EmitStreamVertex.xml
 html/glDeleteProgramPipelines.xhtml
 docbook4/glBindFramebuffer.xml
 glBindImageTextures.xml
 html/glBindSampler.xhtml
 docbook4/glCompileShader.xml
 docbook4/glTexStorage3DMultisample.xml
 docbook4/xhtml/glStencilMaskSeparate.xml
 html/glStencilMaskSeparate.xhtml
 sqrt.xml
 docbook4/xhtml/glCreateShaderProgram.xml
 html/equal.xhtml
 html/glGenSamplers.xhtml
 html/glDeleteFramebuffers.xhtml
 html/textureGatherOffset.xhtml
 glStencilMaskSeparate.xml
 docbook4/xhtml/glTransformFeedbackVaryings.xml
 glGetObjectPtrLabel.xml
 docbook4/xhtml/glShaderSource.xml
 glUseProgramStages.xml
 docbook4/xhtml/glDrawElementsInstancedBaseInstance.xml
 docbook4/glPopDebugGroup.xml
 docbook4/xhtml/glMapBufferRange.xml
 html/exp2.xhtml
 glDrawElementsInstanced.xml
 textureProjGradOffset.xml
 docbook4/glValidateProgram.xml
 EndPrimitive.xml
 abs.xml
 html/glBeginQueryIndexed.xhtml
 cos.xml
 docbook4/xhtml/glGenerateMipmap.xml
 glMultiDrawArraysIndirect.xml
 docbook4/xhtml/glIsProgram.xml
 glGetActiveSubroutineUniform.xml
 html/gl_ViewportIndex.xhtml
 bitCount.xml
 glBindVertexBuffer.xml
 html/glTransformFeedbackBufferRange.xhtml
 html/atomicAnd.xhtml
 html/glDeleteRenderbuffers.xhtml
 docbook4/xhtml/glObjectLabel.xml
 glBindRenderbuffer.xml
 docbook4/glGetBufferPointerv.xml
 glGenTransformFeedbacks.xml
 docbook4/glGetActiveAtomicCounterBufferiv.xml
 html/gl_WorkGroupSize.xhtml
 docbook4/glVertexAttrib.xml
 glLinkProgram.xml
 glBeginQuery.xml
 html/glGetAttachedShaders.xhtml
 glDrawTransformFeedbackInstanced.xml
 glGetProgram.xml
 html/glGetActiveAtomicCounterBufferiv.xhtml
 docbook4/xhtml/glActiveShaderProgram.xml
 findMSB.xml
 html/glIsSampler.xhtml
 memoryBarrierBuffer.xml
 memoryBarrierShared.xml
 atomicCounter.xml
 docbook4/glShaderStorageBlockBinding.xml
 docbook4/xhtml/glVertexAttribDivisor.xml
 html/glGetCompressedTextureSubImage.xhtml
 docbook4/glDepthRangeIndexed.xml
 log2.xml
 glDrawElementsInstancedBaseInstance.xml
 glGetRenderbufferParameter.xml
 docbook4/xhtml/glBufferData.xml
 docbook4/glMemoryBarrier.xml
 html/glGetUniformIndices.xhtml
 glCreateRenderbuffers.xml
 glClampColor.xml
 gl_PrimitiveID.xml
 glDebugMessageControl.xml
 html/imageAtomicCompSwap.xhtml
 docbook4/glCreateShaderProgram.xml
 html/glGetGraphicsResetStatus.xhtml
 docbook4/glInvalidateTexSubImage.xml
 docbook4/glDeleteBuffers.xml
 html/noise.xhtml
 docbook4/xhtml/glIsRenderbuffer.xml
 html/gl_SampleID.xhtml
 docbook4/xhtml/glGetFramebufferParameter.xml
 html/glDeleteBuffers.xhtml
 docbook4/glGetProgramStage.xml
 html/glDeleteSamplers.xhtml
 docbook4/glDrawBuffers.xml
 glGenFramebuffers.xml
 docbook4/xhtml/glBindFragDataLocation.xml
 html/isnan.xhtml
 html/glGenProgramPipelines.xhtml
 textureProjGrad.xml
 bitfieldExtract.xml
 glSamplerParameter.xml
 docbook4/glDebugMessageInsert.xml
 docbook4/glBindBufferRange.xml
 textureProjLod.xml
 docbook4/xhtml/glTextureView.xml
 html/glDrawTransformFeedbackStream.xhtml
 isinf.xml
 glTexBufferRange.xml
 glInvalidateTexSubImage.xml
 glGetProgramResourceLocation.xml
 glUniformSubroutines.xml
 html/glStencilOpSeparate.xhtml
 docbook4/xhtml/glStencilOpSeparate.xml
 docbook4/xhtml/glGetBufferSubData.xml
 docbook4/xhtml/glBeginConditionalRender.xml
 glDrawTransformFeedbackStreamInstanced.xml
 docbook4/glBindRenderbuffer.xml
 atomicCounterIncrement.xml
 docbook4/glTexImage3DMultisample.xml
 html/glClearTexSubImage.xhtml
 html/findLSB.xhtml
 glGetObjectLabel.xml
 docbook4/glClearTexSubImage.xml
 atomicXor.xml
 html/glMapBufferRange.xhtml
 docbook4/xhtml/glIsSampler.xml
 html/glDrawElementsBaseVertex.xhtml
 docbook4/glResumeTransformFeedback.xml
 docbook4/glIsVertexArray.xml
 html/glGetMultisample.xhtml
 docbook4/glVertexAttribFormat.xml
 html/gl_FragDepth.xhtml
 packHalf2x16.xml
 imageSamples.xml
 glStencilFuncSeparate.xml
 docbook4/xhtml/glBindBufferRange.xml
 docbook4/xhtml/glFenceSync.xml
 docbook4/xhtml/removedTypes.xml
 gl_VertexID.xml
 html/glGetVertexArrayiv.xhtml
Copyright: (c) 2006-2014 The Khronos Group Inc.
License: openpub
 Open Publication License
 v1.0, 8 June 1999
 .
 I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS
 .
 The Open Publication works may be reproduced and distributed in whole or in
 part, in any medium physical or electronic, provided that the terms of this
 license are adhered to, and that this license or an incorporation of it by
 reference (with any options elected by the author(s) and/or publisher) is
 displayed in the reproduction.
 .
 Proper form for an incorporation by reference is as follows:
 .
     Copyright (c) <year> by <author's name or designee>. This material may be
     distributed only subject to the terms and conditions set forth in the Open
     Publication License, vX.Y or later (the latest version is presently
     available at http://www.opencontent.org/openpub/).
 .
 The reference must be immediately followed with any options elected by the
 author(s) and/or publisher of the document (see section VI).
 .
 Commercial redistribution of Open Publication-licensed material is permitted.
 .
 Any publication in standard (paper) book form shall require the citation of the
 original publisher and author. The publisher and author's names shall appear on
 all outer surfaces of the book. On all outer surfaces of the book the original
 publisher's name shall be as large as the title of the work and cited as
 possessive with respect to the title.
 .
 II. COPYRIGHT
 .
 The copyright to each Open Publication is owned by its author(s) or designee.
 .
 III. SCOPE OF LICENSE
 .
 The following license terms apply to all Open Publication works, unless
 otherwise explicitly stated in the document.
 .
 Mere aggregation of Open Publication works or a portion of an Open Publication
 work with other works or programs on the same media shall not cause this
 license to apply to those other works. The aggregate work shall contain a
 notice specifying the inclusion of the Open Publication material and
 appropriate copyright notice.
 .
 SEVERABILITY. If any part of this license is found to be unenforceable in any
 jurisdiction, the remaining portions of the license remain in force.
 .
 NO WARRANTY. Open Publication works are licensed and provided "as is" without
 warranty of any kind, express or implied, including, but not limited to, the
 implied warranties of merchantability and fitness for a particular purpose or a
 warranty of non-infringement.
 .
 IV. REQUIREMENTS ON MODIFIED WORKS
 .
 All modified versions of documents covered by this license, including
 translations, anthologies, compilations and partial documents, must meet the
 following requirements:
 .
    1. The modified version must be labeled as such.
    2. The person making the modifications must be identified and the
       modifications dated.
    3. Acknowledgement of the original author and publisher if applicable must
       be retained according to normal academic citation practices.
    4. The location of the original unmodified document must be identified.
    5. The original author's (or authors') name(s) may not be used to assert or
       imply endorsement of the resulting document without the original author's
       (or authors') permission.
 .
 V. GOOD-PRACTICE RECOMMENDATIONS
 .
 In addition to the requirements of this license, it is requested from and
 strongly recommended of redistributors that:
 .
    1. If you are distributing Open Publication works on hardcopy or CD-ROM, you
       provide email notification to the authors of your intent to redistribute
       at least thirty days before your manuscript or media freeze, to give the
       authors time to provide updated documents. This notification should
       describe modifications, if any, made to the document.
    2. All substantive modifications (including deletions) be either clearly
       marked up in the document or else described in an attachment to the
       document.
    3. Finally, while it is not mandatory under this license, it is considered
       good form to offer a free copy of any hardcopy and CD-ROM expression of
       an Open Publication-licensed work to its author(s).
 .
 VI. LICENSE OPTIONS
 .
 The author(s) and/or publisher of an Open Publication-licensed document may
 elect certain options by appending language to the reference to or copy of the
 license. These options are considered part of the license instance and must be
 included with the license (or its incorporation by reference) in derived works.
 .
 A. To prohibit distribution of substantively modified versions without the
 explicit permission of the author(s). "Substantive modification" is defined as
 a change to the semantic content of the document, and excludes mere changes in
 format or typographical corrections.
 .
 To accomplish this, add the phrase `Distribution of substantively modified
 versions of this document is prohibited without the explicit permission of the
 copyright holder.' to the license reference or copy.
 .
 B. To prohibit any publication of this work or derivative works in whole or in
 part in standard (paper) book form for commercial purposes is prohibited unless
 prior permission is obtained from the copyright holder.
 .
 To accomplish this, add the phrase 'Distribution of the work or derivative of
 the work in any standard (paper) book form is prohibited unless prior
 permission is obtained from the copyright holder.' to the license reference or
 copy.

Files: debian/*
Copyright: © 2012 Mathieu Malaterre <malat@debian.org>
License: openpub
 Same as above
 
Files:
 isoamsc.ent
 isonum.ent
 isoamsb.ent
 docbook4/xhtml/xhtml-special.ent
 docbook4/xhtml/xhtml-symbol.ent
 isogrk3.ent
 isotech.ent
 docbook4/xhtml/xhtml-lat1.ent
Copyright: (C) International Organization for Standardization 1986-1991
License: xml-entity
 Permission to copy in any form is granted for use with
 conforming SGML systems and applications as defined in
 ISO 8879, provided this notice is included in all copies.

Files:
 docbook4/xhtml/ctop.xsl
 docbook4/xhtml/pmathmlcss.xsl
 docbook4/xhtml/pmathml.xsl
 docbook4/xhtml/mathml.xsl
Copyright: Copyright David Carlisle 2001, 2002.
License: W3C-Software
 W3C® SOFTWARE NOTICE AND LICENSE
 Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/
 .
 This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
 .
 Permission to use, copy, modify, and distribute this software and its documentation, with or without modification,  for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
 .
    The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
    Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/"
    Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)
 .
 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
 .
 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
 .
 The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
 .
 ____________________________________
 .
 This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed to site-policy@w3.org.
 .
 .
 .
 webmaster
 (last updated $Date: 2002/02/13 14:08:32 $)
 

Files:
 html/makeindex.py
 docbook4/xhtml/makeindex.py
 Makefile
Copyright: (c) 2013-2014 The Khronos Group Inc.
License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and/or associated documentation files \(the
 "Materials"\), to deal in the Materials without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Materials, and to
 permit persons to whom the Materials are furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Materials.
 .
 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

Files: db4-upgrade.xsl
Copyright: 2005 Norman Walsh, Sun Microsystems, Inc., and the Organization for the Advancement of Structured Information Standards (OASIS).
License: OASIS-Docbook
 ======================================================================
 This file is part of DocBook V5.0CR5
 .
 Copyright 2005 Norman Walsh, Sun Microsystems, Inc., and the
 Organization for the Advancement of Structured Information
 Standards (OASIS).
 .
 Release: $Id: db4-upgrade.xsl 9828 2013-11-03 21:45:22Z tom_schr $
 .
 Permission to use, copy, modify and distribute this stylesheet
 and its accompanying documentation for any purpose and without fee
 is hereby granted in perpetuity, provided that the above copyright
 notice and this paragraph appear in all copies. The copyright
 holders make no representation about the suitability of the schema
 for any purpose. It is provided "as is" without expressed or implied
 warranty.
 .
 Please direct all questions, bug reports, or suggestions for changes
 to the docbook@lists.oasis-open.org mailing list. For more
 information, see http://www.oasis-open.org/docbook/.
 .
 ======================================================================