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
/* automatically generated by rust-bindgen */

pub const SPV_VERSION: u32 = 66304;
pub const SPV_REVISION: u32 = 1;
pub type SpvId = ::std::os::raw::c_uint;
pub const SpvSourceLanguage__SpvSourceLanguageUnknown: SpvSourceLanguage_ = 0;
pub const SpvSourceLanguage__SpvSourceLanguageESSL: SpvSourceLanguage_ = 1;
pub const SpvSourceLanguage__SpvSourceLanguageGLSL: SpvSourceLanguage_ = 2;
pub const SpvSourceLanguage__SpvSourceLanguageOpenCL_C: SpvSourceLanguage_ = 3;
pub const SpvSourceLanguage__SpvSourceLanguageOpenCL_CPP: SpvSourceLanguage_ = 4;
pub const SpvSourceLanguage__SpvSourceLanguageHLSL: SpvSourceLanguage_ = 5;
pub const SpvSourceLanguage__SpvSourceLanguageMax: SpvSourceLanguage_ = 2147483647;
pub type SpvSourceLanguage_ = u32;
pub use self::SpvSourceLanguage_ as SpvSourceLanguage;
pub const SpvExecutionModel__SpvExecutionModelVertex: SpvExecutionModel_ = 0;
pub const SpvExecutionModel__SpvExecutionModelTessellationControl: SpvExecutionModel_ = 1;
pub const SpvExecutionModel__SpvExecutionModelTessellationEvaluation: SpvExecutionModel_ = 2;
pub const SpvExecutionModel__SpvExecutionModelGeometry: SpvExecutionModel_ = 3;
pub const SpvExecutionModel__SpvExecutionModelFragment: SpvExecutionModel_ = 4;
pub const SpvExecutionModel__SpvExecutionModelGLCompute: SpvExecutionModel_ = 5;
pub const SpvExecutionModel__SpvExecutionModelKernel: SpvExecutionModel_ = 6;
pub const SpvExecutionModel__SpvExecutionModelMax: SpvExecutionModel_ = 2147483647;
pub type SpvExecutionModel_ = u32;
pub use self::SpvExecutionModel_ as SpvExecutionModel;
pub const SpvAddressingModel__SpvAddressingModelLogical: SpvAddressingModel_ = 0;
pub const SpvAddressingModel__SpvAddressingModelPhysical32: SpvAddressingModel_ = 1;
pub const SpvAddressingModel__SpvAddressingModelPhysical64: SpvAddressingModel_ = 2;
pub const SpvAddressingModel__SpvAddressingModelMax: SpvAddressingModel_ = 2147483647;
pub type SpvAddressingModel_ = u32;
pub use self::SpvAddressingModel_ as SpvAddressingModel;
pub const SpvMemoryModel__SpvMemoryModelSimple: SpvMemoryModel_ = 0;
pub const SpvMemoryModel__SpvMemoryModelGLSL450: SpvMemoryModel_ = 1;
pub const SpvMemoryModel__SpvMemoryModelOpenCL: SpvMemoryModel_ = 2;
pub const SpvMemoryModel__SpvMemoryModelMax: SpvMemoryModel_ = 2147483647;
pub type SpvMemoryModel_ = u32;
pub use self::SpvMemoryModel_ as SpvMemoryModel;
pub const SpvExecutionMode__SpvExecutionModeInvocations: SpvExecutionMode_ = 0;
pub const SpvExecutionMode__SpvExecutionModeSpacingEqual: SpvExecutionMode_ = 1;
pub const SpvExecutionMode__SpvExecutionModeSpacingFractionalEven: SpvExecutionMode_ = 2;
pub const SpvExecutionMode__SpvExecutionModeSpacingFractionalOdd: SpvExecutionMode_ = 3;
pub const SpvExecutionMode__SpvExecutionModeVertexOrderCw: SpvExecutionMode_ = 4;
pub const SpvExecutionMode__SpvExecutionModeVertexOrderCcw: SpvExecutionMode_ = 5;
pub const SpvExecutionMode__SpvExecutionModePixelCenterInteger: SpvExecutionMode_ = 6;
pub const SpvExecutionMode__SpvExecutionModeOriginUpperLeft: SpvExecutionMode_ = 7;
pub const SpvExecutionMode__SpvExecutionModeOriginLowerLeft: SpvExecutionMode_ = 8;
pub const SpvExecutionMode__SpvExecutionModeEarlyFragmentTests: SpvExecutionMode_ = 9;
pub const SpvExecutionMode__SpvExecutionModePointMode: SpvExecutionMode_ = 10;
pub const SpvExecutionMode__SpvExecutionModeXfb: SpvExecutionMode_ = 11;
pub const SpvExecutionMode__SpvExecutionModeDepthReplacing: SpvExecutionMode_ = 12;
pub const SpvExecutionMode__SpvExecutionModeDepthGreater: SpvExecutionMode_ = 14;
pub const SpvExecutionMode__SpvExecutionModeDepthLess: SpvExecutionMode_ = 15;
pub const SpvExecutionMode__SpvExecutionModeDepthUnchanged: SpvExecutionMode_ = 16;
pub const SpvExecutionMode__SpvExecutionModeLocalSize: SpvExecutionMode_ = 17;
pub const SpvExecutionMode__SpvExecutionModeLocalSizeHint: SpvExecutionMode_ = 18;
pub const SpvExecutionMode__SpvExecutionModeInputPoints: SpvExecutionMode_ = 19;
pub const SpvExecutionMode__SpvExecutionModeInputLines: SpvExecutionMode_ = 20;
pub const SpvExecutionMode__SpvExecutionModeInputLinesAdjacency: SpvExecutionMode_ = 21;
pub const SpvExecutionMode__SpvExecutionModeTriangles: SpvExecutionMode_ = 22;
pub const SpvExecutionMode__SpvExecutionModeInputTrianglesAdjacency: SpvExecutionMode_ = 23;
pub const SpvExecutionMode__SpvExecutionModeQuads: SpvExecutionMode_ = 24;
pub const SpvExecutionMode__SpvExecutionModeIsolines: SpvExecutionMode_ = 25;
pub const SpvExecutionMode__SpvExecutionModeOutputVertices: SpvExecutionMode_ = 26;
pub const SpvExecutionMode__SpvExecutionModeOutputPoints: SpvExecutionMode_ = 27;
pub const SpvExecutionMode__SpvExecutionModeOutputLineStrip: SpvExecutionMode_ = 28;
pub const SpvExecutionMode__SpvExecutionModeOutputTriangleStrip: SpvExecutionMode_ = 29;
pub const SpvExecutionMode__SpvExecutionModeVecTypeHint: SpvExecutionMode_ = 30;
pub const SpvExecutionMode__SpvExecutionModeContractionOff: SpvExecutionMode_ = 31;
pub const SpvExecutionMode__SpvExecutionModeInitializer: SpvExecutionMode_ = 33;
pub const SpvExecutionMode__SpvExecutionModeFinalizer: SpvExecutionMode_ = 34;
pub const SpvExecutionMode__SpvExecutionModeSubgroupSize: SpvExecutionMode_ = 35;
pub const SpvExecutionMode__SpvExecutionModeSubgroupsPerWorkgroup: SpvExecutionMode_ = 36;
pub const SpvExecutionMode__SpvExecutionModeSubgroupsPerWorkgroupId: SpvExecutionMode_ = 37;
pub const SpvExecutionMode__SpvExecutionModeLocalSizeId: SpvExecutionMode_ = 38;
pub const SpvExecutionMode__SpvExecutionModeLocalSizeHintId: SpvExecutionMode_ = 39;
pub const SpvExecutionMode__SpvExecutionModePostDepthCoverage: SpvExecutionMode_ = 4446;
pub const SpvExecutionMode__SpvExecutionModeStencilRefReplacingEXT: SpvExecutionMode_ = 5027;
pub const SpvExecutionMode__SpvExecutionModeMax: SpvExecutionMode_ = 2147483647;
pub type SpvExecutionMode_ = u32;
pub use self::SpvExecutionMode_ as SpvExecutionMode;
pub const SpvStorageClass__SpvStorageClassUniformConstant: SpvStorageClass_ = 0;
pub const SpvStorageClass__SpvStorageClassInput: SpvStorageClass_ = 1;
pub const SpvStorageClass__SpvStorageClassUniform: SpvStorageClass_ = 2;
pub const SpvStorageClass__SpvStorageClassOutput: SpvStorageClass_ = 3;
pub const SpvStorageClass__SpvStorageClassWorkgroup: SpvStorageClass_ = 4;
pub const SpvStorageClass__SpvStorageClassCrossWorkgroup: SpvStorageClass_ = 5;
pub const SpvStorageClass__SpvStorageClassPrivate: SpvStorageClass_ = 6;
pub const SpvStorageClass__SpvStorageClassFunction: SpvStorageClass_ = 7;
pub const SpvStorageClass__SpvStorageClassGeneric: SpvStorageClass_ = 8;
pub const SpvStorageClass__SpvStorageClassPushConstant: SpvStorageClass_ = 9;
pub const SpvStorageClass__SpvStorageClassAtomicCounter: SpvStorageClass_ = 10;
pub const SpvStorageClass__SpvStorageClassImage: SpvStorageClass_ = 11;
pub const SpvStorageClass__SpvStorageClassStorageBuffer: SpvStorageClass_ = 12;
pub const SpvStorageClass__SpvStorageClassMax: SpvStorageClass_ = 2147483647;
pub type SpvStorageClass_ = u32;
pub use self::SpvStorageClass_ as SpvStorageClass;
pub const SpvDim__SpvDim1D: SpvDim_ = 0;
pub const SpvDim__SpvDim2D: SpvDim_ = 1;
pub const SpvDim__SpvDim3D: SpvDim_ = 2;
pub const SpvDim__SpvDimCube: SpvDim_ = 3;
pub const SpvDim__SpvDimRect: SpvDim_ = 4;
pub const SpvDim__SpvDimBuffer: SpvDim_ = 5;
pub const SpvDim__SpvDimSubpassData: SpvDim_ = 6;
pub const SpvDim__SpvDimMax: SpvDim_ = 2147483647;
pub type SpvDim_ = u32;
pub use self::SpvDim_ as SpvDim;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeNone: SpvSamplerAddressingMode_ = 0;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeClampToEdge: SpvSamplerAddressingMode_ =
    1;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeClamp: SpvSamplerAddressingMode_ = 2;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeRepeat: SpvSamplerAddressingMode_ = 3;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeRepeatMirrored:
    SpvSamplerAddressingMode_ = 4;
pub const SpvSamplerAddressingMode__SpvSamplerAddressingModeMax: SpvSamplerAddressingMode_ =
    2147483647;
pub type SpvSamplerAddressingMode_ = u32;
pub use self::SpvSamplerAddressingMode_ as SpvSamplerAddressingMode;
pub const SpvSamplerFilterMode__SpvSamplerFilterModeNearest: SpvSamplerFilterMode_ = 0;
pub const SpvSamplerFilterMode__SpvSamplerFilterModeLinear: SpvSamplerFilterMode_ = 1;
pub const SpvSamplerFilterMode__SpvSamplerFilterModeMax: SpvSamplerFilterMode_ = 2147483647;
pub type SpvSamplerFilterMode_ = u32;
pub use self::SpvSamplerFilterMode_ as SpvSamplerFilterMode;
pub const SpvImageFormat__SpvImageFormatUnknown: SpvImageFormat_ = 0;
pub const SpvImageFormat__SpvImageFormatRgba32f: SpvImageFormat_ = 1;
pub const SpvImageFormat__SpvImageFormatRgba16f: SpvImageFormat_ = 2;
pub const SpvImageFormat__SpvImageFormatR32f: SpvImageFormat_ = 3;
pub const SpvImageFormat__SpvImageFormatRgba8: SpvImageFormat_ = 4;
pub const SpvImageFormat__SpvImageFormatRgba8Snorm: SpvImageFormat_ = 5;
pub const SpvImageFormat__SpvImageFormatRg32f: SpvImageFormat_ = 6;
pub const SpvImageFormat__SpvImageFormatRg16f: SpvImageFormat_ = 7;
pub const SpvImageFormat__SpvImageFormatR11fG11fB10f: SpvImageFormat_ = 8;
pub const SpvImageFormat__SpvImageFormatR16f: SpvImageFormat_ = 9;
pub const SpvImageFormat__SpvImageFormatRgba16: SpvImageFormat_ = 10;
pub const SpvImageFormat__SpvImageFormatRgb10A2: SpvImageFormat_ = 11;
pub const SpvImageFormat__SpvImageFormatRg16: SpvImageFormat_ = 12;
pub const SpvImageFormat__SpvImageFormatRg8: SpvImageFormat_ = 13;
pub const SpvImageFormat__SpvImageFormatR16: SpvImageFormat_ = 14;
pub const SpvImageFormat__SpvImageFormatR8: SpvImageFormat_ = 15;
pub const SpvImageFormat__SpvImageFormatRgba16Snorm: SpvImageFormat_ = 16;
pub const SpvImageFormat__SpvImageFormatRg16Snorm: SpvImageFormat_ = 17;
pub const SpvImageFormat__SpvImageFormatRg8Snorm: SpvImageFormat_ = 18;
pub const SpvImageFormat__SpvImageFormatR16Snorm: SpvImageFormat_ = 19;
pub const SpvImageFormat__SpvImageFormatR8Snorm: SpvImageFormat_ = 20;
pub const SpvImageFormat__SpvImageFormatRgba32i: SpvImageFormat_ = 21;
pub const SpvImageFormat__SpvImageFormatRgba16i: SpvImageFormat_ = 22;
pub const SpvImageFormat__SpvImageFormatRgba8i: SpvImageFormat_ = 23;
pub const SpvImageFormat__SpvImageFormatR32i: SpvImageFormat_ = 24;
pub const SpvImageFormat__SpvImageFormatRg32i: SpvImageFormat_ = 25;
pub const SpvImageFormat__SpvImageFormatRg16i: SpvImageFormat_ = 26;
pub const SpvImageFormat__SpvImageFormatRg8i: SpvImageFormat_ = 27;
pub const SpvImageFormat__SpvImageFormatR16i: SpvImageFormat_ = 28;
pub const SpvImageFormat__SpvImageFormatR8i: SpvImageFormat_ = 29;
pub const SpvImageFormat__SpvImageFormatRgba32ui: SpvImageFormat_ = 30;
pub const SpvImageFormat__SpvImageFormatRgba16ui: SpvImageFormat_ = 31;
pub const SpvImageFormat__SpvImageFormatRgba8ui: SpvImageFormat_ = 32;
pub const SpvImageFormat__SpvImageFormatR32ui: SpvImageFormat_ = 33;
pub const SpvImageFormat__SpvImageFormatRgb10a2ui: SpvImageFormat_ = 34;
pub const SpvImageFormat__SpvImageFormatRg32ui: SpvImageFormat_ = 35;
pub const SpvImageFormat__SpvImageFormatRg16ui: SpvImageFormat_ = 36;
pub const SpvImageFormat__SpvImageFormatRg8ui: SpvImageFormat_ = 37;
pub const SpvImageFormat__SpvImageFormatR16ui: SpvImageFormat_ = 38;
pub const SpvImageFormat__SpvImageFormatR8ui: SpvImageFormat_ = 39;
pub const SpvImageFormat__SpvImageFormatMax: SpvImageFormat_ = 2147483647;
pub type SpvImageFormat_ = u32;
pub use self::SpvImageFormat_ as SpvImageFormat;
pub const SpvImageChannelOrder__SpvImageChannelOrderR: SpvImageChannelOrder_ = 0;
pub const SpvImageChannelOrder__SpvImageChannelOrderA: SpvImageChannelOrder_ = 1;
pub const SpvImageChannelOrder__SpvImageChannelOrderRG: SpvImageChannelOrder_ = 2;
pub const SpvImageChannelOrder__SpvImageChannelOrderRA: SpvImageChannelOrder_ = 3;
pub const SpvImageChannelOrder__SpvImageChannelOrderRGB: SpvImageChannelOrder_ = 4;
pub const SpvImageChannelOrder__SpvImageChannelOrderRGBA: SpvImageChannelOrder_ = 5;
pub const SpvImageChannelOrder__SpvImageChannelOrderBGRA: SpvImageChannelOrder_ = 6;
pub const SpvImageChannelOrder__SpvImageChannelOrderARGB: SpvImageChannelOrder_ = 7;
pub const SpvImageChannelOrder__SpvImageChannelOrderIntensity: SpvImageChannelOrder_ = 8;
pub const SpvImageChannelOrder__SpvImageChannelOrderLuminance: SpvImageChannelOrder_ = 9;
pub const SpvImageChannelOrder__SpvImageChannelOrderRx: SpvImageChannelOrder_ = 10;
pub const SpvImageChannelOrder__SpvImageChannelOrderRGx: SpvImageChannelOrder_ = 11;
pub const SpvImageChannelOrder__SpvImageChannelOrderRGBx: SpvImageChannelOrder_ = 12;
pub const SpvImageChannelOrder__SpvImageChannelOrderDepth: SpvImageChannelOrder_ = 13;
pub const SpvImageChannelOrder__SpvImageChannelOrderDepthStencil: SpvImageChannelOrder_ = 14;
pub const SpvImageChannelOrder__SpvImageChannelOrdersRGB: SpvImageChannelOrder_ = 15;
pub const SpvImageChannelOrder__SpvImageChannelOrdersRGBx: SpvImageChannelOrder_ = 16;
pub const SpvImageChannelOrder__SpvImageChannelOrdersRGBA: SpvImageChannelOrder_ = 17;
pub const SpvImageChannelOrder__SpvImageChannelOrdersBGRA: SpvImageChannelOrder_ = 18;
pub const SpvImageChannelOrder__SpvImageChannelOrderABGR: SpvImageChannelOrder_ = 19;
pub const SpvImageChannelOrder__SpvImageChannelOrderMax: SpvImageChannelOrder_ = 2147483647;
pub type SpvImageChannelOrder_ = u32;
pub use self::SpvImageChannelOrder_ as SpvImageChannelOrder;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeSnormInt8: SpvImageChannelDataType_ = 0;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeSnormInt16: SpvImageChannelDataType_ = 1;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormInt8: SpvImageChannelDataType_ = 2;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormInt16: SpvImageChannelDataType_ = 3;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormShort565: SpvImageChannelDataType_ =
    4;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormShort555: SpvImageChannelDataType_ =
    5;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormInt101010: SpvImageChannelDataType_ =
    6;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeSignedInt8: SpvImageChannelDataType_ = 7;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeSignedInt16: SpvImageChannelDataType_ = 8;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeSignedInt32: SpvImageChannelDataType_ = 9;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnsignedInt8: SpvImageChannelDataType_ =
    10;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnsignedInt16: SpvImageChannelDataType_ =
    11;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnsignedInt32: SpvImageChannelDataType_ =
    12;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeHalfFloat: SpvImageChannelDataType_ = 13;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeFloat: SpvImageChannelDataType_ = 14;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormInt24: SpvImageChannelDataType_ = 15;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeUnormInt101010_2:
    SpvImageChannelDataType_ = 16;
pub const SpvImageChannelDataType__SpvImageChannelDataTypeMax: SpvImageChannelDataType_ =
    2147483647;
pub type SpvImageChannelDataType_ = u32;
pub use self::SpvImageChannelDataType_ as SpvImageChannelDataType;
pub const SpvImageOperandsShift__SpvImageOperandsBiasShift: SpvImageOperandsShift_ = 0;
pub const SpvImageOperandsShift__SpvImageOperandsLodShift: SpvImageOperandsShift_ = 1;
pub const SpvImageOperandsShift__SpvImageOperandsGradShift: SpvImageOperandsShift_ = 2;
pub const SpvImageOperandsShift__SpvImageOperandsConstOffsetShift: SpvImageOperandsShift_ = 3;
pub const SpvImageOperandsShift__SpvImageOperandsOffsetShift: SpvImageOperandsShift_ = 4;
pub const SpvImageOperandsShift__SpvImageOperandsConstOffsetsShift: SpvImageOperandsShift_ = 5;
pub const SpvImageOperandsShift__SpvImageOperandsSampleShift: SpvImageOperandsShift_ = 6;
pub const SpvImageOperandsShift__SpvImageOperandsMinLodShift: SpvImageOperandsShift_ = 7;
pub const SpvImageOperandsShift__SpvImageOperandsMax: SpvImageOperandsShift_ = 2147483647;
pub type SpvImageOperandsShift_ = u32;
pub use self::SpvImageOperandsShift_ as SpvImageOperandsShift;
pub const SpvImageOperandsMask__SpvImageOperandsMaskNone: SpvImageOperandsMask_ = 0;
pub const SpvImageOperandsMask__SpvImageOperandsBiasMask: SpvImageOperandsMask_ = 1;
pub const SpvImageOperandsMask__SpvImageOperandsLodMask: SpvImageOperandsMask_ = 2;
pub const SpvImageOperandsMask__SpvImageOperandsGradMask: SpvImageOperandsMask_ = 4;
pub const SpvImageOperandsMask__SpvImageOperandsConstOffsetMask: SpvImageOperandsMask_ = 8;
pub const SpvImageOperandsMask__SpvImageOperandsOffsetMask: SpvImageOperandsMask_ = 16;
pub const SpvImageOperandsMask__SpvImageOperandsConstOffsetsMask: SpvImageOperandsMask_ = 32;
pub const SpvImageOperandsMask__SpvImageOperandsSampleMask: SpvImageOperandsMask_ = 64;
pub const SpvImageOperandsMask__SpvImageOperandsMinLodMask: SpvImageOperandsMask_ = 128;
pub type SpvImageOperandsMask_ = u32;
pub use self::SpvImageOperandsMask_ as SpvImageOperandsMask;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeNotNaNShift: SpvFPFastMathModeShift_ = 0;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeNotInfShift: SpvFPFastMathModeShift_ = 1;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeNSZShift: SpvFPFastMathModeShift_ = 2;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeAllowRecipShift: SpvFPFastMathModeShift_ = 3;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeFastShift: SpvFPFastMathModeShift_ = 4;
pub const SpvFPFastMathModeShift__SpvFPFastMathModeMax: SpvFPFastMathModeShift_ = 2147483647;
pub type SpvFPFastMathModeShift_ = u32;
pub use self::SpvFPFastMathModeShift_ as SpvFPFastMathModeShift;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeMaskNone: SpvFPFastMathModeMask_ = 0;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeNotNaNMask: SpvFPFastMathModeMask_ = 1;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeNotInfMask: SpvFPFastMathModeMask_ = 2;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeNSZMask: SpvFPFastMathModeMask_ = 4;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeAllowRecipMask: SpvFPFastMathModeMask_ = 8;
pub const SpvFPFastMathModeMask__SpvFPFastMathModeFastMask: SpvFPFastMathModeMask_ = 16;
pub type SpvFPFastMathModeMask_ = u32;
pub use self::SpvFPFastMathModeMask_ as SpvFPFastMathModeMask;
pub const SpvFPRoundingMode__SpvFPRoundingModeRTE: SpvFPRoundingMode_ = 0;
pub const SpvFPRoundingMode__SpvFPRoundingModeRTZ: SpvFPRoundingMode_ = 1;
pub const SpvFPRoundingMode__SpvFPRoundingModeRTP: SpvFPRoundingMode_ = 2;
pub const SpvFPRoundingMode__SpvFPRoundingModeRTN: SpvFPRoundingMode_ = 3;
pub const SpvFPRoundingMode__SpvFPRoundingModeMax: SpvFPRoundingMode_ = 2147483647;
pub type SpvFPRoundingMode_ = u32;
pub use self::SpvFPRoundingMode_ as SpvFPRoundingMode;
pub const SpvLinkageType__SpvLinkageTypeExport: SpvLinkageType_ = 0;
pub const SpvLinkageType__SpvLinkageTypeImport: SpvLinkageType_ = 1;
pub const SpvLinkageType__SpvLinkageTypeMax: SpvLinkageType_ = 2147483647;
pub type SpvLinkageType_ = u32;
pub use self::SpvLinkageType_ as SpvLinkageType;
pub const SpvAccessQualifier__SpvAccessQualifierReadOnly: SpvAccessQualifier_ = 0;
pub const SpvAccessQualifier__SpvAccessQualifierWriteOnly: SpvAccessQualifier_ = 1;
pub const SpvAccessQualifier__SpvAccessQualifierReadWrite: SpvAccessQualifier_ = 2;
pub const SpvAccessQualifier__SpvAccessQualifierMax: SpvAccessQualifier_ = 2147483647;
pub type SpvAccessQualifier_ = u32;
pub use self::SpvAccessQualifier_ as SpvAccessQualifier;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeZext:
    SpvFunctionParameterAttribute_ = 0;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeSext:
    SpvFunctionParameterAttribute_ = 1;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeByVal:
    SpvFunctionParameterAttribute_ = 2;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeSret:
    SpvFunctionParameterAttribute_ = 3;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeNoAlias:
    SpvFunctionParameterAttribute_ = 4;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeNoCapture:
    SpvFunctionParameterAttribute_ = 5;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeNoWrite:
    SpvFunctionParameterAttribute_ = 6;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeNoReadWrite:
    SpvFunctionParameterAttribute_ = 7;
pub const SpvFunctionParameterAttribute__SpvFunctionParameterAttributeMax:
    SpvFunctionParameterAttribute_ = 2147483647;
pub type SpvFunctionParameterAttribute_ = u32;
pub use self::SpvFunctionParameterAttribute_ as SpvFunctionParameterAttribute;
pub const SpvDecoration__SpvDecorationRelaxedPrecision: SpvDecoration_ = 0;
pub const SpvDecoration__SpvDecorationSpecId: SpvDecoration_ = 1;
pub const SpvDecoration__SpvDecorationBlock: SpvDecoration_ = 2;
pub const SpvDecoration__SpvDecorationBufferBlock: SpvDecoration_ = 3;
pub const SpvDecoration__SpvDecorationRowMajor: SpvDecoration_ = 4;
pub const SpvDecoration__SpvDecorationColMajor: SpvDecoration_ = 5;
pub const SpvDecoration__SpvDecorationArrayStride: SpvDecoration_ = 6;
pub const SpvDecoration__SpvDecorationMatrixStride: SpvDecoration_ = 7;
pub const SpvDecoration__SpvDecorationGLSLShared: SpvDecoration_ = 8;
pub const SpvDecoration__SpvDecorationGLSLPacked: SpvDecoration_ = 9;
pub const SpvDecoration__SpvDecorationCPacked: SpvDecoration_ = 10;
pub const SpvDecoration__SpvDecorationBuiltIn: SpvDecoration_ = 11;
pub const SpvDecoration__SpvDecorationNoPerspective: SpvDecoration_ = 13;
pub const SpvDecoration__SpvDecorationFlat: SpvDecoration_ = 14;
pub const SpvDecoration__SpvDecorationPatch: SpvDecoration_ = 15;
pub const SpvDecoration__SpvDecorationCentroid: SpvDecoration_ = 16;
pub const SpvDecoration__SpvDecorationSample: SpvDecoration_ = 17;
pub const SpvDecoration__SpvDecorationInvariant: SpvDecoration_ = 18;
pub const SpvDecoration__SpvDecorationRestrict: SpvDecoration_ = 19;
pub const SpvDecoration__SpvDecorationAliased: SpvDecoration_ = 20;
pub const SpvDecoration__SpvDecorationVolatile: SpvDecoration_ = 21;
pub const SpvDecoration__SpvDecorationConstant: SpvDecoration_ = 22;
pub const SpvDecoration__SpvDecorationCoherent: SpvDecoration_ = 23;
pub const SpvDecoration__SpvDecorationNonWritable: SpvDecoration_ = 24;
pub const SpvDecoration__SpvDecorationNonReadable: SpvDecoration_ = 25;
pub const SpvDecoration__SpvDecorationUniform: SpvDecoration_ = 26;
pub const SpvDecoration__SpvDecorationSaturatedConversion: SpvDecoration_ = 28;
pub const SpvDecoration__SpvDecorationStream: SpvDecoration_ = 29;
pub const SpvDecoration__SpvDecorationLocation: SpvDecoration_ = 30;
pub const SpvDecoration__SpvDecorationComponent: SpvDecoration_ = 31;
pub const SpvDecoration__SpvDecorationIndex: SpvDecoration_ = 32;
pub const SpvDecoration__SpvDecorationBinding: SpvDecoration_ = 33;
pub const SpvDecoration__SpvDecorationDescriptorSet: SpvDecoration_ = 34;
pub const SpvDecoration__SpvDecorationOffset: SpvDecoration_ = 35;
pub const SpvDecoration__SpvDecorationXfbBuffer: SpvDecoration_ = 36;
pub const SpvDecoration__SpvDecorationXfbStride: SpvDecoration_ = 37;
pub const SpvDecoration__SpvDecorationFuncParamAttr: SpvDecoration_ = 38;
pub const SpvDecoration__SpvDecorationFPRoundingMode: SpvDecoration_ = 39;
pub const SpvDecoration__SpvDecorationFPFastMathMode: SpvDecoration_ = 40;
pub const SpvDecoration__SpvDecorationLinkageAttributes: SpvDecoration_ = 41;
pub const SpvDecoration__SpvDecorationNoContraction: SpvDecoration_ = 42;
pub const SpvDecoration__SpvDecorationInputAttachmentIndex: SpvDecoration_ = 43;
pub const SpvDecoration__SpvDecorationAlignment: SpvDecoration_ = 44;
pub const SpvDecoration__SpvDecorationMaxByteOffset: SpvDecoration_ = 45;
pub const SpvDecoration__SpvDecorationAlignmentId: SpvDecoration_ = 46;
pub const SpvDecoration__SpvDecorationMaxByteOffsetId: SpvDecoration_ = 47;
pub const SpvDecoration__SpvDecorationExplicitInterpAMD: SpvDecoration_ = 4999;
pub const SpvDecoration__SpvDecorationOverrideCoverageNV: SpvDecoration_ = 5248;
pub const SpvDecoration__SpvDecorationPassthroughNV: SpvDecoration_ = 5250;
pub const SpvDecoration__SpvDecorationViewportRelativeNV: SpvDecoration_ = 5252;
pub const SpvDecoration__SpvDecorationSecondaryViewportRelativeNV: SpvDecoration_ = 5256;
pub const SpvDecoration__SpvDecorationHlslCounterBufferGOOGLE: SpvDecoration_ = 5634;
pub const SpvDecoration__SpvDecorationHlslSemanticGOOGLE: SpvDecoration_ = 5635;
pub const SpvDecoration__SpvDecorationMax: SpvDecoration_ = 2147483647;
pub type SpvDecoration_ = u32;
pub use self::SpvDecoration_ as SpvDecoration;
pub const SpvBuiltIn__SpvBuiltInPosition: SpvBuiltIn_ = 0;
pub const SpvBuiltIn__SpvBuiltInPointSize: SpvBuiltIn_ = 1;
pub const SpvBuiltIn__SpvBuiltInClipDistance: SpvBuiltIn_ = 3;
pub const SpvBuiltIn__SpvBuiltInCullDistance: SpvBuiltIn_ = 4;
pub const SpvBuiltIn__SpvBuiltInVertexId: SpvBuiltIn_ = 5;
pub const SpvBuiltIn__SpvBuiltInInstanceId: SpvBuiltIn_ = 6;
pub const SpvBuiltIn__SpvBuiltInPrimitiveId: SpvBuiltIn_ = 7;
pub const SpvBuiltIn__SpvBuiltInInvocationId: SpvBuiltIn_ = 8;
pub const SpvBuiltIn__SpvBuiltInLayer: SpvBuiltIn_ = 9;
pub const SpvBuiltIn__SpvBuiltInViewportIndex: SpvBuiltIn_ = 10;
pub const SpvBuiltIn__SpvBuiltInTessLevelOuter: SpvBuiltIn_ = 11;
pub const SpvBuiltIn__SpvBuiltInTessLevelInner: SpvBuiltIn_ = 12;
pub const SpvBuiltIn__SpvBuiltInTessCoord: SpvBuiltIn_ = 13;
pub const SpvBuiltIn__SpvBuiltInPatchVertices: SpvBuiltIn_ = 14;
pub const SpvBuiltIn__SpvBuiltInFragCoord: SpvBuiltIn_ = 15;
pub const SpvBuiltIn__SpvBuiltInPointCoord: SpvBuiltIn_ = 16;
pub const SpvBuiltIn__SpvBuiltInFrontFacing: SpvBuiltIn_ = 17;
pub const SpvBuiltIn__SpvBuiltInSampleId: SpvBuiltIn_ = 18;
pub const SpvBuiltIn__SpvBuiltInSamplePosition: SpvBuiltIn_ = 19;
pub const SpvBuiltIn__SpvBuiltInSampleMask: SpvBuiltIn_ = 20;
pub const SpvBuiltIn__SpvBuiltInFragDepth: SpvBuiltIn_ = 22;
pub const SpvBuiltIn__SpvBuiltInHelperInvocation: SpvBuiltIn_ = 23;
pub const SpvBuiltIn__SpvBuiltInNumWorkgroups: SpvBuiltIn_ = 24;
pub const SpvBuiltIn__SpvBuiltInWorkgroupSize: SpvBuiltIn_ = 25;
pub const SpvBuiltIn__SpvBuiltInWorkgroupId: SpvBuiltIn_ = 26;
pub const SpvBuiltIn__SpvBuiltInLocalInvocationId: SpvBuiltIn_ = 27;
pub const SpvBuiltIn__SpvBuiltInGlobalInvocationId: SpvBuiltIn_ = 28;
pub const SpvBuiltIn__SpvBuiltInLocalInvocationIndex: SpvBuiltIn_ = 29;
pub const SpvBuiltIn__SpvBuiltInWorkDim: SpvBuiltIn_ = 30;
pub const SpvBuiltIn__SpvBuiltInGlobalSize: SpvBuiltIn_ = 31;
pub const SpvBuiltIn__SpvBuiltInEnqueuedWorkgroupSize: SpvBuiltIn_ = 32;
pub const SpvBuiltIn__SpvBuiltInGlobalOffset: SpvBuiltIn_ = 33;
pub const SpvBuiltIn__SpvBuiltInGlobalLinearId: SpvBuiltIn_ = 34;
pub const SpvBuiltIn__SpvBuiltInSubgroupSize: SpvBuiltIn_ = 36;
pub const SpvBuiltIn__SpvBuiltInSubgroupMaxSize: SpvBuiltIn_ = 37;
pub const SpvBuiltIn__SpvBuiltInNumSubgroups: SpvBuiltIn_ = 38;
pub const SpvBuiltIn__SpvBuiltInNumEnqueuedSubgroups: SpvBuiltIn_ = 39;
pub const SpvBuiltIn__SpvBuiltInSubgroupId: SpvBuiltIn_ = 40;
pub const SpvBuiltIn__SpvBuiltInSubgroupLocalInvocationId: SpvBuiltIn_ = 41;
pub const SpvBuiltIn__SpvBuiltInVertexIndex: SpvBuiltIn_ = 42;
pub const SpvBuiltIn__SpvBuiltInInstanceIndex: SpvBuiltIn_ = 43;
pub const SpvBuiltIn__SpvBuiltInSubgroupEqMask: SpvBuiltIn_ = 4416;
pub const SpvBuiltIn__SpvBuiltInSubgroupEqMaskKHR: SpvBuiltIn_ = 4416;
pub const SpvBuiltIn__SpvBuiltInSubgroupGeMask: SpvBuiltIn_ = 4417;
pub const SpvBuiltIn__SpvBuiltInSubgroupGeMaskKHR: SpvBuiltIn_ = 4417;
pub const SpvBuiltIn__SpvBuiltInSubgroupGtMask: SpvBuiltIn_ = 4418;
pub const SpvBuiltIn__SpvBuiltInSubgroupGtMaskKHR: SpvBuiltIn_ = 4418;
pub const SpvBuiltIn__SpvBuiltInSubgroupLeMask: SpvBuiltIn_ = 4419;
pub const SpvBuiltIn__SpvBuiltInSubgroupLeMaskKHR: SpvBuiltIn_ = 4419;
pub const SpvBuiltIn__SpvBuiltInSubgroupLtMask: SpvBuiltIn_ = 4420;
pub const SpvBuiltIn__SpvBuiltInSubgroupLtMaskKHR: SpvBuiltIn_ = 4420;
pub const SpvBuiltIn__SpvBuiltInBaseVertex: SpvBuiltIn_ = 4424;
pub const SpvBuiltIn__SpvBuiltInBaseInstance: SpvBuiltIn_ = 4425;
pub const SpvBuiltIn__SpvBuiltInDrawIndex: SpvBuiltIn_ = 4426;
pub const SpvBuiltIn__SpvBuiltInDeviceIndex: SpvBuiltIn_ = 4438;
pub const SpvBuiltIn__SpvBuiltInViewIndex: SpvBuiltIn_ = 4440;
pub const SpvBuiltIn__SpvBuiltInBaryCoordNoPerspAMD: SpvBuiltIn_ = 4992;
pub const SpvBuiltIn__SpvBuiltInBaryCoordNoPerspCentroidAMD: SpvBuiltIn_ = 4993;
pub const SpvBuiltIn__SpvBuiltInBaryCoordNoPerspSampleAMD: SpvBuiltIn_ = 4994;
pub const SpvBuiltIn__SpvBuiltInBaryCoordSmoothAMD: SpvBuiltIn_ = 4995;
pub const SpvBuiltIn__SpvBuiltInBaryCoordSmoothCentroidAMD: SpvBuiltIn_ = 4996;
pub const SpvBuiltIn__SpvBuiltInBaryCoordSmoothSampleAMD: SpvBuiltIn_ = 4997;
pub const SpvBuiltIn__SpvBuiltInBaryCoordPullModelAMD: SpvBuiltIn_ = 4998;
pub const SpvBuiltIn__SpvBuiltInFragStencilRefEXT: SpvBuiltIn_ = 5014;
pub const SpvBuiltIn__SpvBuiltInViewportMaskNV: SpvBuiltIn_ = 5253;
pub const SpvBuiltIn__SpvBuiltInSecondaryPositionNV: SpvBuiltIn_ = 5257;
pub const SpvBuiltIn__SpvBuiltInSecondaryViewportMaskNV: SpvBuiltIn_ = 5258;
pub const SpvBuiltIn__SpvBuiltInPositionPerViewNV: SpvBuiltIn_ = 5261;
pub const SpvBuiltIn__SpvBuiltInViewportMaskPerViewNV: SpvBuiltIn_ = 5262;
pub const SpvBuiltIn__SpvBuiltInFullyCoveredEXT: SpvBuiltIn_ = 5264;
pub const SpvBuiltIn__SpvBuiltInMax: SpvBuiltIn_ = 2147483647;
pub type SpvBuiltIn_ = u32;
pub use self::SpvBuiltIn_ as SpvBuiltIn;
pub const SpvSelectionControlShift__SpvSelectionControlFlattenShift: SpvSelectionControlShift_ = 0;
pub const SpvSelectionControlShift__SpvSelectionControlDontFlattenShift: SpvSelectionControlShift_ =
    1;
pub const SpvSelectionControlShift__SpvSelectionControlMax: SpvSelectionControlShift_ = 2147483647;
pub type SpvSelectionControlShift_ = u32;
pub use self::SpvSelectionControlShift_ as SpvSelectionControlShift;
pub const SpvSelectionControlMask__SpvSelectionControlMaskNone: SpvSelectionControlMask_ = 0;
pub const SpvSelectionControlMask__SpvSelectionControlFlattenMask: SpvSelectionControlMask_ = 1;
pub const SpvSelectionControlMask__SpvSelectionControlDontFlattenMask: SpvSelectionControlMask_ = 2;
pub type SpvSelectionControlMask_ = u32;
pub use self::SpvSelectionControlMask_ as SpvSelectionControlMask;
pub const SpvLoopControlShift__SpvLoopControlUnrollShift: SpvLoopControlShift_ = 0;
pub const SpvLoopControlShift__SpvLoopControlDontUnrollShift: SpvLoopControlShift_ = 1;
pub const SpvLoopControlShift__SpvLoopControlDependencyInfiniteShift: SpvLoopControlShift_ = 2;
pub const SpvLoopControlShift__SpvLoopControlDependencyLengthShift: SpvLoopControlShift_ = 3;
pub const SpvLoopControlShift__SpvLoopControlMax: SpvLoopControlShift_ = 2147483647;
pub type SpvLoopControlShift_ = u32;
pub use self::SpvLoopControlShift_ as SpvLoopControlShift;
pub const SpvLoopControlMask__SpvLoopControlMaskNone: SpvLoopControlMask_ = 0;
pub const SpvLoopControlMask__SpvLoopControlUnrollMask: SpvLoopControlMask_ = 1;
pub const SpvLoopControlMask__SpvLoopControlDontUnrollMask: SpvLoopControlMask_ = 2;
pub const SpvLoopControlMask__SpvLoopControlDependencyInfiniteMask: SpvLoopControlMask_ = 4;
pub const SpvLoopControlMask__SpvLoopControlDependencyLengthMask: SpvLoopControlMask_ = 8;
pub type SpvLoopControlMask_ = u32;
pub use self::SpvLoopControlMask_ as SpvLoopControlMask;
pub const SpvFunctionControlShift__SpvFunctionControlInlineShift: SpvFunctionControlShift_ = 0;
pub const SpvFunctionControlShift__SpvFunctionControlDontInlineShift: SpvFunctionControlShift_ = 1;
pub const SpvFunctionControlShift__SpvFunctionControlPureShift: SpvFunctionControlShift_ = 2;
pub const SpvFunctionControlShift__SpvFunctionControlConstShift: SpvFunctionControlShift_ = 3;
pub const SpvFunctionControlShift__SpvFunctionControlMax: SpvFunctionControlShift_ = 2147483647;
pub type SpvFunctionControlShift_ = u32;
pub use self::SpvFunctionControlShift_ as SpvFunctionControlShift;
pub const SpvFunctionControlMask__SpvFunctionControlMaskNone: SpvFunctionControlMask_ = 0;
pub const SpvFunctionControlMask__SpvFunctionControlInlineMask: SpvFunctionControlMask_ = 1;
pub const SpvFunctionControlMask__SpvFunctionControlDontInlineMask: SpvFunctionControlMask_ = 2;
pub const SpvFunctionControlMask__SpvFunctionControlPureMask: SpvFunctionControlMask_ = 4;
pub const SpvFunctionControlMask__SpvFunctionControlConstMask: SpvFunctionControlMask_ = 8;
pub type SpvFunctionControlMask_ = u32;
pub use self::SpvFunctionControlMask_ as SpvFunctionControlMask;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsAcquireShift: SpvMemorySemanticsShift_ = 1;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsReleaseShift: SpvMemorySemanticsShift_ = 2;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsAcquireReleaseShift: SpvMemorySemanticsShift_ =
    3;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsSequentiallyConsistentShift:
    SpvMemorySemanticsShift_ = 4;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsUniformMemoryShift: SpvMemorySemanticsShift_ =
    6;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsSubgroupMemoryShift: SpvMemorySemanticsShift_ =
    7;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsWorkgroupMemoryShift:
    SpvMemorySemanticsShift_ = 8;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsCrossWorkgroupMemoryShift:
    SpvMemorySemanticsShift_ = 9;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsAtomicCounterMemoryShift:
    SpvMemorySemanticsShift_ = 10;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsImageMemoryShift: SpvMemorySemanticsShift_ =
    11;
pub const SpvMemorySemanticsShift__SpvMemorySemanticsMax: SpvMemorySemanticsShift_ = 2147483647;
pub type SpvMemorySemanticsShift_ = u32;
pub use self::SpvMemorySemanticsShift_ as SpvMemorySemanticsShift;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsMaskNone: SpvMemorySemanticsMask_ = 0;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsAcquireMask: SpvMemorySemanticsMask_ = 2;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsReleaseMask: SpvMemorySemanticsMask_ = 4;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsAcquireReleaseMask: SpvMemorySemanticsMask_ = 8;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsSequentiallyConsistentMask:
    SpvMemorySemanticsMask_ = 16;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsUniformMemoryMask: SpvMemorySemanticsMask_ = 64;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsSubgroupMemoryMask: SpvMemorySemanticsMask_ =
    128;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsWorkgroupMemoryMask: SpvMemorySemanticsMask_ =
    256;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsCrossWorkgroupMemoryMask:
    SpvMemorySemanticsMask_ = 512;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsAtomicCounterMemoryMask:
    SpvMemorySemanticsMask_ = 1024;
pub const SpvMemorySemanticsMask__SpvMemorySemanticsImageMemoryMask: SpvMemorySemanticsMask_ = 2048;
pub type SpvMemorySemanticsMask_ = u32;
pub use self::SpvMemorySemanticsMask_ as SpvMemorySemanticsMask;
pub const SpvMemoryAccessShift__SpvMemoryAccessVolatileShift: SpvMemoryAccessShift_ = 0;
pub const SpvMemoryAccessShift__SpvMemoryAccessAlignedShift: SpvMemoryAccessShift_ = 1;
pub const SpvMemoryAccessShift__SpvMemoryAccessNontemporalShift: SpvMemoryAccessShift_ = 2;
pub const SpvMemoryAccessShift__SpvMemoryAccessMax: SpvMemoryAccessShift_ = 2147483647;
pub type SpvMemoryAccessShift_ = u32;
pub use self::SpvMemoryAccessShift_ as SpvMemoryAccessShift;
pub const SpvMemoryAccessMask__SpvMemoryAccessMaskNone: SpvMemoryAccessMask_ = 0;
pub const SpvMemoryAccessMask__SpvMemoryAccessVolatileMask: SpvMemoryAccessMask_ = 1;
pub const SpvMemoryAccessMask__SpvMemoryAccessAlignedMask: SpvMemoryAccessMask_ = 2;
pub const SpvMemoryAccessMask__SpvMemoryAccessNontemporalMask: SpvMemoryAccessMask_ = 4;
pub type SpvMemoryAccessMask_ = u32;
pub use self::SpvMemoryAccessMask_ as SpvMemoryAccessMask;
pub const SpvScope__SpvScopeCrossDevice: SpvScope_ = 0;
pub const SpvScope__SpvScopeDevice: SpvScope_ = 1;
pub const SpvScope__SpvScopeWorkgroup: SpvScope_ = 2;
pub const SpvScope__SpvScopeSubgroup: SpvScope_ = 3;
pub const SpvScope__SpvScopeInvocation: SpvScope_ = 4;
pub const SpvScope__SpvScopeMax: SpvScope_ = 2147483647;
pub type SpvScope_ = u32;
pub use self::SpvScope_ as SpvScope;
pub const SpvGroupOperation__SpvGroupOperationReduce: SpvGroupOperation_ = 0;
pub const SpvGroupOperation__SpvGroupOperationInclusiveScan: SpvGroupOperation_ = 1;
pub const SpvGroupOperation__SpvGroupOperationExclusiveScan: SpvGroupOperation_ = 2;
pub const SpvGroupOperation__SpvGroupOperationClusteredReduce: SpvGroupOperation_ = 3;
pub const SpvGroupOperation__SpvGroupOperationPartitionedReduceNV: SpvGroupOperation_ = 6;
pub const SpvGroupOperation__SpvGroupOperationPartitionedInclusiveScanNV: SpvGroupOperation_ = 7;
pub const SpvGroupOperation__SpvGroupOperationPartitionedExclusiveScanNV: SpvGroupOperation_ = 8;
pub const SpvGroupOperation__SpvGroupOperationMax: SpvGroupOperation_ = 2147483647;
pub type SpvGroupOperation_ = u32;
pub use self::SpvGroupOperation_ as SpvGroupOperation;
pub const SpvKernelEnqueueFlags__SpvKernelEnqueueFlagsNoWait: SpvKernelEnqueueFlags_ = 0;
pub const SpvKernelEnqueueFlags__SpvKernelEnqueueFlagsWaitKernel: SpvKernelEnqueueFlags_ = 1;
pub const SpvKernelEnqueueFlags__SpvKernelEnqueueFlagsWaitWorkGroup: SpvKernelEnqueueFlags_ = 2;
pub const SpvKernelEnqueueFlags__SpvKernelEnqueueFlagsMax: SpvKernelEnqueueFlags_ = 2147483647;
pub type SpvKernelEnqueueFlags_ = u32;
pub use self::SpvKernelEnqueueFlags_ as SpvKernelEnqueueFlags;
pub const SpvKernelProfilingInfoShift__SpvKernelProfilingInfoCmdExecTimeShift:
    SpvKernelProfilingInfoShift_ = 0;
pub const SpvKernelProfilingInfoShift__SpvKernelProfilingInfoMax: SpvKernelProfilingInfoShift_ =
    2147483647;
pub type SpvKernelProfilingInfoShift_ = u32;
pub use self::SpvKernelProfilingInfoShift_ as SpvKernelProfilingInfoShift;
pub const SpvKernelProfilingInfoMask__SpvKernelProfilingInfoMaskNone: SpvKernelProfilingInfoMask_ =
    0;
pub const SpvKernelProfilingInfoMask__SpvKernelProfilingInfoCmdExecTimeMask:
    SpvKernelProfilingInfoMask_ = 1;
pub type SpvKernelProfilingInfoMask_ = u32;
pub use self::SpvKernelProfilingInfoMask_ as SpvKernelProfilingInfoMask;
pub const SpvCapability__SpvCapabilityMatrix: SpvCapability_ = 0;
pub const SpvCapability__SpvCapabilityShader: SpvCapability_ = 1;
pub const SpvCapability__SpvCapabilityGeometry: SpvCapability_ = 2;
pub const SpvCapability__SpvCapabilityTessellation: SpvCapability_ = 3;
pub const SpvCapability__SpvCapabilityAddresses: SpvCapability_ = 4;
pub const SpvCapability__SpvCapabilityLinkage: SpvCapability_ = 5;
pub const SpvCapability__SpvCapabilityKernel: SpvCapability_ = 6;
pub const SpvCapability__SpvCapabilityVector16: SpvCapability_ = 7;
pub const SpvCapability__SpvCapabilityFloat16Buffer: SpvCapability_ = 8;
pub const SpvCapability__SpvCapabilityFloat16: SpvCapability_ = 9;
pub const SpvCapability__SpvCapabilityFloat64: SpvCapability_ = 10;
pub const SpvCapability__SpvCapabilityInt64: SpvCapability_ = 11;
pub const SpvCapability__SpvCapabilityInt64Atomics: SpvCapability_ = 12;
pub const SpvCapability__SpvCapabilityImageBasic: SpvCapability_ = 13;
pub const SpvCapability__SpvCapabilityImageReadWrite: SpvCapability_ = 14;
pub const SpvCapability__SpvCapabilityImageMipmap: SpvCapability_ = 15;
pub const SpvCapability__SpvCapabilityPipes: SpvCapability_ = 17;
pub const SpvCapability__SpvCapabilityGroups: SpvCapability_ = 18;
pub const SpvCapability__SpvCapabilityDeviceEnqueue: SpvCapability_ = 19;
pub const SpvCapability__SpvCapabilityLiteralSampler: SpvCapability_ = 20;
pub const SpvCapability__SpvCapabilityAtomicStorage: SpvCapability_ = 21;
pub const SpvCapability__SpvCapabilityInt16: SpvCapability_ = 22;
pub const SpvCapability__SpvCapabilityTessellationPointSize: SpvCapability_ = 23;
pub const SpvCapability__SpvCapabilityGeometryPointSize: SpvCapability_ = 24;
pub const SpvCapability__SpvCapabilityImageGatherExtended: SpvCapability_ = 25;
pub const SpvCapability__SpvCapabilityStorageImageMultisample: SpvCapability_ = 27;
pub const SpvCapability__SpvCapabilityUniformBufferArrayDynamicIndexing: SpvCapability_ = 28;
pub const SpvCapability__SpvCapabilitySampledImageArrayDynamicIndexing: SpvCapability_ = 29;
pub const SpvCapability__SpvCapabilityStorageBufferArrayDynamicIndexing: SpvCapability_ = 30;
pub const SpvCapability__SpvCapabilityStorageImageArrayDynamicIndexing: SpvCapability_ = 31;
pub const SpvCapability__SpvCapabilityClipDistance: SpvCapability_ = 32;
pub const SpvCapability__SpvCapabilityCullDistance: SpvCapability_ = 33;
pub const SpvCapability__SpvCapabilityImageCubeArray: SpvCapability_ = 34;
pub const SpvCapability__SpvCapabilitySampleRateShading: SpvCapability_ = 35;
pub const SpvCapability__SpvCapabilityImageRect: SpvCapability_ = 36;
pub const SpvCapability__SpvCapabilitySampledRect: SpvCapability_ = 37;
pub const SpvCapability__SpvCapabilityGenericPointer: SpvCapability_ = 38;
pub const SpvCapability__SpvCapabilityInt8: SpvCapability_ = 39;
pub const SpvCapability__SpvCapabilityInputAttachment: SpvCapability_ = 40;
pub const SpvCapability__SpvCapabilitySparseResidency: SpvCapability_ = 41;
pub const SpvCapability__SpvCapabilityMinLod: SpvCapability_ = 42;
pub const SpvCapability__SpvCapabilitySampled1D: SpvCapability_ = 43;
pub const SpvCapability__SpvCapabilityImage1D: SpvCapability_ = 44;
pub const SpvCapability__SpvCapabilitySampledCubeArray: SpvCapability_ = 45;
pub const SpvCapability__SpvCapabilitySampledBuffer: SpvCapability_ = 46;
pub const SpvCapability__SpvCapabilityImageBuffer: SpvCapability_ = 47;
pub const SpvCapability__SpvCapabilityImageMSArray: SpvCapability_ = 48;
pub const SpvCapability__SpvCapabilityStorageImageExtendedFormats: SpvCapability_ = 49;
pub const SpvCapability__SpvCapabilityImageQuery: SpvCapability_ = 50;
pub const SpvCapability__SpvCapabilityDerivativeControl: SpvCapability_ = 51;
pub const SpvCapability__SpvCapabilityInterpolationFunction: SpvCapability_ = 52;
pub const SpvCapability__SpvCapabilityTransformFeedback: SpvCapability_ = 53;
pub const SpvCapability__SpvCapabilityGeometryStreams: SpvCapability_ = 54;
pub const SpvCapability__SpvCapabilityStorageImageReadWithoutFormat: SpvCapability_ = 55;
pub const SpvCapability__SpvCapabilityStorageImageWriteWithoutFormat: SpvCapability_ = 56;
pub const SpvCapability__SpvCapabilityMultiViewport: SpvCapability_ = 57;
pub const SpvCapability__SpvCapabilitySubgroupDispatch: SpvCapability_ = 58;
pub const SpvCapability__SpvCapabilityNamedBarrier: SpvCapability_ = 59;
pub const SpvCapability__SpvCapabilityPipeStorage: SpvCapability_ = 60;
pub const SpvCapability__SpvCapabilityGroupNonUniform: SpvCapability_ = 61;
pub const SpvCapability__SpvCapabilityGroupNonUniformVote: SpvCapability_ = 62;
pub const SpvCapability__SpvCapabilityGroupNonUniformArithmetic: SpvCapability_ = 63;
pub const SpvCapability__SpvCapabilityGroupNonUniformBallot: SpvCapability_ = 64;
pub const SpvCapability__SpvCapabilityGroupNonUniformShuffle: SpvCapability_ = 65;
pub const SpvCapability__SpvCapabilityGroupNonUniformShuffleRelative: SpvCapability_ = 66;
pub const SpvCapability__SpvCapabilityGroupNonUniformClustered: SpvCapability_ = 67;
pub const SpvCapability__SpvCapabilityGroupNonUniformQuad: SpvCapability_ = 68;
pub const SpvCapability__SpvCapabilitySubgroupBallotKHR: SpvCapability_ = 4423;
pub const SpvCapability__SpvCapabilityDrawParameters: SpvCapability_ = 4427;
pub const SpvCapability__SpvCapabilitySubgroupVoteKHR: SpvCapability_ = 4431;
pub const SpvCapability__SpvCapabilityStorageBuffer16BitAccess: SpvCapability_ = 4433;
pub const SpvCapability__SpvCapabilityStorageUniformBufferBlock16: SpvCapability_ = 4433;
pub const SpvCapability__SpvCapabilityStorageUniform16: SpvCapability_ = 4434;
pub const SpvCapability__SpvCapabilityUniformAndStorageBuffer16BitAccess: SpvCapability_ = 4434;
pub const SpvCapability__SpvCapabilityStoragePushConstant16: SpvCapability_ = 4435;
pub const SpvCapability__SpvCapabilityStorageInputOutput16: SpvCapability_ = 4436;
pub const SpvCapability__SpvCapabilityDeviceGroup: SpvCapability_ = 4437;
pub const SpvCapability__SpvCapabilityMultiView: SpvCapability_ = 4439;
pub const SpvCapability__SpvCapabilityVariablePointersStorageBuffer: SpvCapability_ = 4441;
pub const SpvCapability__SpvCapabilityVariablePointers: SpvCapability_ = 4442;
pub const SpvCapability__SpvCapabilityAtomicStorageOps: SpvCapability_ = 4445;
pub const SpvCapability__SpvCapabilitySampleMaskPostDepthCoverage: SpvCapability_ = 4447;
pub const SpvCapability__SpvCapabilityFloat16ImageAMD: SpvCapability_ = 5008;
pub const SpvCapability__SpvCapabilityImageGatherBiasLodAMD: SpvCapability_ = 5009;
pub const SpvCapability__SpvCapabilityFragmentMaskAMD: SpvCapability_ = 5010;
pub const SpvCapability__SpvCapabilityStencilExportEXT: SpvCapability_ = 5013;
pub const SpvCapability__SpvCapabilityImageReadWriteLodAMD: SpvCapability_ = 5015;
pub const SpvCapability__SpvCapabilitySampleMaskOverrideCoverageNV: SpvCapability_ = 5249;
pub const SpvCapability__SpvCapabilityGeometryShaderPassthroughNV: SpvCapability_ = 5251;
pub const SpvCapability__SpvCapabilityShaderViewportIndexLayerEXT: SpvCapability_ = 5254;
pub const SpvCapability__SpvCapabilityShaderViewportIndexLayerNV: SpvCapability_ = 5254;
pub const SpvCapability__SpvCapabilityShaderViewportMaskNV: SpvCapability_ = 5255;
pub const SpvCapability__SpvCapabilityShaderStereoViewNV: SpvCapability_ = 5259;
pub const SpvCapability__SpvCapabilityPerViewAttributesNV: SpvCapability_ = 5260;
pub const SpvCapability__SpvCapabilityFragmentFullyCoveredEXT: SpvCapability_ = 5265;
pub const SpvCapability__SpvCapabilityGroupNonUniformPartitionedNV: SpvCapability_ = 5297;
pub const SpvCapability__SpvCapabilitySubgroupShuffleINTEL: SpvCapability_ = 5568;
pub const SpvCapability__SpvCapabilitySubgroupBufferBlockIOINTEL: SpvCapability_ = 5569;
pub const SpvCapability__SpvCapabilitySubgroupImageBlockIOINTEL: SpvCapability_ = 5570;
pub const SpvCapability__SpvCapabilityMax: SpvCapability_ = 2147483647;
pub type SpvCapability_ = u32;
pub use self::SpvCapability_ as SpvCapability;
pub const SpvOp__SpvOpNop: SpvOp_ = 0;
pub const SpvOp__SpvOpUndef: SpvOp_ = 1;
pub const SpvOp__SpvOpSourceContinued: SpvOp_ = 2;
pub const SpvOp__SpvOpSource: SpvOp_ = 3;
pub const SpvOp__SpvOpSourceExtension: SpvOp_ = 4;
pub const SpvOp__SpvOpName: SpvOp_ = 5;
pub const SpvOp__SpvOpMemberName: SpvOp_ = 6;
pub const SpvOp__SpvOpString: SpvOp_ = 7;
pub const SpvOp__SpvOpLine: SpvOp_ = 8;
pub const SpvOp__SpvOpExtension: SpvOp_ = 10;
pub const SpvOp__SpvOpExtInstImport: SpvOp_ = 11;
pub const SpvOp__SpvOpExtInst: SpvOp_ = 12;
pub const SpvOp__SpvOpMemoryModel: SpvOp_ = 14;
pub const SpvOp__SpvOpEntryPoint: SpvOp_ = 15;
pub const SpvOp__SpvOpExecutionMode: SpvOp_ = 16;
pub const SpvOp__SpvOpCapability: SpvOp_ = 17;
pub const SpvOp__SpvOpTypeVoid: SpvOp_ = 19;
pub const SpvOp__SpvOpTypeBool: SpvOp_ = 20;
pub const SpvOp__SpvOpTypeInt: SpvOp_ = 21;
pub const SpvOp__SpvOpTypeFloat: SpvOp_ = 22;
pub const SpvOp__SpvOpTypeVector: SpvOp_ = 23;
pub const SpvOp__SpvOpTypeMatrix: SpvOp_ = 24;
pub const SpvOp__SpvOpTypeImage: SpvOp_ = 25;
pub const SpvOp__SpvOpTypeSampler: SpvOp_ = 26;
pub const SpvOp__SpvOpTypeSampledImage: SpvOp_ = 27;
pub const SpvOp__SpvOpTypeArray: SpvOp_ = 28;
pub const SpvOp__SpvOpTypeRuntimeArray: SpvOp_ = 29;
pub const SpvOp__SpvOpTypeStruct: SpvOp_ = 30;
pub const SpvOp__SpvOpTypeOpaque: SpvOp_ = 31;
pub const SpvOp__SpvOpTypePointer: SpvOp_ = 32;
pub const SpvOp__SpvOpTypeFunction: SpvOp_ = 33;
pub const SpvOp__SpvOpTypeEvent: SpvOp_ = 34;
pub const SpvOp__SpvOpTypeDeviceEvent: SpvOp_ = 35;
pub const SpvOp__SpvOpTypeReserveId: SpvOp_ = 36;
pub const SpvOp__SpvOpTypeQueue: SpvOp_ = 37;
pub const SpvOp__SpvOpTypePipe: SpvOp_ = 38;
pub const SpvOp__SpvOpTypeForwardPointer: SpvOp_ = 39;
pub const SpvOp__SpvOpConstantTrue: SpvOp_ = 41;
pub const SpvOp__SpvOpConstantFalse: SpvOp_ = 42;
pub const SpvOp__SpvOpConstant: SpvOp_ = 43;
pub const SpvOp__SpvOpConstantComposite: SpvOp_ = 44;
pub const SpvOp__SpvOpConstantSampler: SpvOp_ = 45;
pub const SpvOp__SpvOpConstantNull: SpvOp_ = 46;
pub const SpvOp__SpvOpSpecConstantTrue: SpvOp_ = 48;
pub const SpvOp__SpvOpSpecConstantFalse: SpvOp_ = 49;
pub const SpvOp__SpvOpSpecConstant: SpvOp_ = 50;
pub const SpvOp__SpvOpSpecConstantComposite: SpvOp_ = 51;
pub const SpvOp__SpvOpSpecConstantOp: SpvOp_ = 52;
pub const SpvOp__SpvOpFunction: SpvOp_ = 54;
pub const SpvOp__SpvOpFunctionParameter: SpvOp_ = 55;
pub const SpvOp__SpvOpFunctionEnd: SpvOp_ = 56;
pub const SpvOp__SpvOpFunctionCall: SpvOp_ = 57;
pub const SpvOp__SpvOpVariable: SpvOp_ = 59;
pub const SpvOp__SpvOpImageTexelPointer: SpvOp_ = 60;
pub const SpvOp__SpvOpLoad: SpvOp_ = 61;
pub const SpvOp__SpvOpStore: SpvOp_ = 62;
pub const SpvOp__SpvOpCopyMemory: SpvOp_ = 63;
pub const SpvOp__SpvOpCopyMemorySized: SpvOp_ = 64;
pub const SpvOp__SpvOpAccessChain: SpvOp_ = 65;
pub const SpvOp__SpvOpInBoundsAccessChain: SpvOp_ = 66;
pub const SpvOp__SpvOpPtrAccessChain: SpvOp_ = 67;
pub const SpvOp__SpvOpArrayLength: SpvOp_ = 68;
pub const SpvOp__SpvOpGenericPtrMemSemantics: SpvOp_ = 69;
pub const SpvOp__SpvOpInBoundsPtrAccessChain: SpvOp_ = 70;
pub const SpvOp__SpvOpDecorate: SpvOp_ = 71;
pub const SpvOp__SpvOpMemberDecorate: SpvOp_ = 72;
pub const SpvOp__SpvOpDecorationGroup: SpvOp_ = 73;
pub const SpvOp__SpvOpGroupDecorate: SpvOp_ = 74;
pub const SpvOp__SpvOpGroupMemberDecorate: SpvOp_ = 75;
pub const SpvOp__SpvOpVectorExtractDynamic: SpvOp_ = 77;
pub const SpvOp__SpvOpVectorInsertDynamic: SpvOp_ = 78;
pub const SpvOp__SpvOpVectorShuffle: SpvOp_ = 79;
pub const SpvOp__SpvOpCompositeConstruct: SpvOp_ = 80;
pub const SpvOp__SpvOpCompositeExtract: SpvOp_ = 81;
pub const SpvOp__SpvOpCompositeInsert: SpvOp_ = 82;
pub const SpvOp__SpvOpCopyObject: SpvOp_ = 83;
pub const SpvOp__SpvOpTranspose: SpvOp_ = 84;
pub const SpvOp__SpvOpSampledImage: SpvOp_ = 86;
pub const SpvOp__SpvOpImageSampleImplicitLod: SpvOp_ = 87;
pub const SpvOp__SpvOpImageSampleExplicitLod: SpvOp_ = 88;
pub const SpvOp__SpvOpImageSampleDrefImplicitLod: SpvOp_ = 89;
pub const SpvOp__SpvOpImageSampleDrefExplicitLod: SpvOp_ = 90;
pub const SpvOp__SpvOpImageSampleProjImplicitLod: SpvOp_ = 91;
pub const SpvOp__SpvOpImageSampleProjExplicitLod: SpvOp_ = 92;
pub const SpvOp__SpvOpImageSampleProjDrefImplicitLod: SpvOp_ = 93;
pub const SpvOp__SpvOpImageSampleProjDrefExplicitLod: SpvOp_ = 94;
pub const SpvOp__SpvOpImageFetch: SpvOp_ = 95;
pub const SpvOp__SpvOpImageGather: SpvOp_ = 96;
pub const SpvOp__SpvOpImageDrefGather: SpvOp_ = 97;
pub const SpvOp__SpvOpImageRead: SpvOp_ = 98;
pub const SpvOp__SpvOpImageWrite: SpvOp_ = 99;
pub const SpvOp__SpvOpImage: SpvOp_ = 100;
pub const SpvOp__SpvOpImageQueryFormat: SpvOp_ = 101;
pub const SpvOp__SpvOpImageQueryOrder: SpvOp_ = 102;
pub const SpvOp__SpvOpImageQuerySizeLod: SpvOp_ = 103;
pub const SpvOp__SpvOpImageQuerySize: SpvOp_ = 104;
pub const SpvOp__SpvOpImageQueryLod: SpvOp_ = 105;
pub const SpvOp__SpvOpImageQueryLevels: SpvOp_ = 106;
pub const SpvOp__SpvOpImageQuerySamples: SpvOp_ = 107;
pub const SpvOp__SpvOpConvertFToU: SpvOp_ = 109;
pub const SpvOp__SpvOpConvertFToS: SpvOp_ = 110;
pub const SpvOp__SpvOpConvertSToF: SpvOp_ = 111;
pub const SpvOp__SpvOpConvertUToF: SpvOp_ = 112;
pub const SpvOp__SpvOpUConvert: SpvOp_ = 113;
pub const SpvOp__SpvOpSConvert: SpvOp_ = 114;
pub const SpvOp__SpvOpFConvert: SpvOp_ = 115;
pub const SpvOp__SpvOpQuantizeToF16: SpvOp_ = 116;
pub const SpvOp__SpvOpConvertPtrToU: SpvOp_ = 117;
pub const SpvOp__SpvOpSatConvertSToU: SpvOp_ = 118;
pub const SpvOp__SpvOpSatConvertUToS: SpvOp_ = 119;
pub const SpvOp__SpvOpConvertUToPtr: SpvOp_ = 120;
pub const SpvOp__SpvOpPtrCastToGeneric: SpvOp_ = 121;
pub const SpvOp__SpvOpGenericCastToPtr: SpvOp_ = 122;
pub const SpvOp__SpvOpGenericCastToPtrExplicit: SpvOp_ = 123;
pub const SpvOp__SpvOpBitcast: SpvOp_ = 124;
pub const SpvOp__SpvOpSNegate: SpvOp_ = 126;
pub const SpvOp__SpvOpFNegate: SpvOp_ = 127;
pub const SpvOp__SpvOpIAdd: SpvOp_ = 128;
pub const SpvOp__SpvOpFAdd: SpvOp_ = 129;
pub const SpvOp__SpvOpISub: SpvOp_ = 130;
pub const SpvOp__SpvOpFSub: SpvOp_ = 131;
pub const SpvOp__SpvOpIMul: SpvOp_ = 132;
pub const SpvOp__SpvOpFMul: SpvOp_ = 133;
pub const SpvOp__SpvOpUDiv: SpvOp_ = 134;
pub const SpvOp__SpvOpSDiv: SpvOp_ = 135;
pub const SpvOp__SpvOpFDiv: SpvOp_ = 136;
pub const SpvOp__SpvOpUMod: SpvOp_ = 137;
pub const SpvOp__SpvOpSRem: SpvOp_ = 138;
pub const SpvOp__SpvOpSMod: SpvOp_ = 139;
pub const SpvOp__SpvOpFRem: SpvOp_ = 140;
pub const SpvOp__SpvOpFMod: SpvOp_ = 141;
pub const SpvOp__SpvOpVectorTimesScalar: SpvOp_ = 142;
pub const SpvOp__SpvOpMatrixTimesScalar: SpvOp_ = 143;
pub const SpvOp__SpvOpVectorTimesMatrix: SpvOp_ = 144;
pub const SpvOp__SpvOpMatrixTimesVector: SpvOp_ = 145;
pub const SpvOp__SpvOpMatrixTimesMatrix: SpvOp_ = 146;
pub const SpvOp__SpvOpOuterProduct: SpvOp_ = 147;
pub const SpvOp__SpvOpDot: SpvOp_ = 148;
pub const SpvOp__SpvOpIAddCarry: SpvOp_ = 149;
pub const SpvOp__SpvOpISubBorrow: SpvOp_ = 150;
pub const SpvOp__SpvOpUMulExtended: SpvOp_ = 151;
pub const SpvOp__SpvOpSMulExtended: SpvOp_ = 152;
pub const SpvOp__SpvOpAny: SpvOp_ = 154;
pub const SpvOp__SpvOpAll: SpvOp_ = 155;
pub const SpvOp__SpvOpIsNan: SpvOp_ = 156;
pub const SpvOp__SpvOpIsInf: SpvOp_ = 157;
pub const SpvOp__SpvOpIsFinite: SpvOp_ = 158;
pub const SpvOp__SpvOpIsNormal: SpvOp_ = 159;
pub const SpvOp__SpvOpSignBitSet: SpvOp_ = 160;
pub const SpvOp__SpvOpLessOrGreater: SpvOp_ = 161;
pub const SpvOp__SpvOpOrdered: SpvOp_ = 162;
pub const SpvOp__SpvOpUnordered: SpvOp_ = 163;
pub const SpvOp__SpvOpLogicalEqual: SpvOp_ = 164;
pub const SpvOp__SpvOpLogicalNotEqual: SpvOp_ = 165;
pub const SpvOp__SpvOpLogicalOr: SpvOp_ = 166;
pub const SpvOp__SpvOpLogicalAnd: SpvOp_ = 167;
pub const SpvOp__SpvOpLogicalNot: SpvOp_ = 168;
pub const SpvOp__SpvOpSelect: SpvOp_ = 169;
pub const SpvOp__SpvOpIEqual: SpvOp_ = 170;
pub const SpvOp__SpvOpINotEqual: SpvOp_ = 171;
pub const SpvOp__SpvOpUGreaterThan: SpvOp_ = 172;
pub const SpvOp__SpvOpSGreaterThan: SpvOp_ = 173;
pub const SpvOp__SpvOpUGreaterThanEqual: SpvOp_ = 174;
pub const SpvOp__SpvOpSGreaterThanEqual: SpvOp_ = 175;
pub const SpvOp__SpvOpULessThan: SpvOp_ = 176;
pub const SpvOp__SpvOpSLessThan: SpvOp_ = 177;
pub const SpvOp__SpvOpULessThanEqual: SpvOp_ = 178;
pub const SpvOp__SpvOpSLessThanEqual: SpvOp_ = 179;
pub const SpvOp__SpvOpFOrdEqual: SpvOp_ = 180;
pub const SpvOp__SpvOpFUnordEqual: SpvOp_ = 181;
pub const SpvOp__SpvOpFOrdNotEqual: SpvOp_ = 182;
pub const SpvOp__SpvOpFUnordNotEqual: SpvOp_ = 183;
pub const SpvOp__SpvOpFOrdLessThan: SpvOp_ = 184;
pub const SpvOp__SpvOpFUnordLessThan: SpvOp_ = 185;
pub const SpvOp__SpvOpFOrdGreaterThan: SpvOp_ = 186;
pub const SpvOp__SpvOpFUnordGreaterThan: SpvOp_ = 187;
pub const SpvOp__SpvOpFOrdLessThanEqual: SpvOp_ = 188;
pub const SpvOp__SpvOpFUnordLessThanEqual: SpvOp_ = 189;
pub const SpvOp__SpvOpFOrdGreaterThanEqual: SpvOp_ = 190;
pub const SpvOp__SpvOpFUnordGreaterThanEqual: SpvOp_ = 191;
pub const SpvOp__SpvOpShiftRightLogical: SpvOp_ = 194;
pub const SpvOp__SpvOpShiftRightArithmetic: SpvOp_ = 195;
pub const SpvOp__SpvOpShiftLeftLogical: SpvOp_ = 196;
pub const SpvOp__SpvOpBitwiseOr: SpvOp_ = 197;
pub const SpvOp__SpvOpBitwiseXor: SpvOp_ = 198;
pub const SpvOp__SpvOpBitwiseAnd: SpvOp_ = 199;
pub const SpvOp__SpvOpNot: SpvOp_ = 200;
pub const SpvOp__SpvOpBitFieldInsert: SpvOp_ = 201;
pub const SpvOp__SpvOpBitFieldSExtract: SpvOp_ = 202;
pub const SpvOp__SpvOpBitFieldUExtract: SpvOp_ = 203;
pub const SpvOp__SpvOpBitReverse: SpvOp_ = 204;
pub const SpvOp__SpvOpBitCount: SpvOp_ = 205;
pub const SpvOp__SpvOpDPdx: SpvOp_ = 207;
pub const SpvOp__SpvOpDPdy: SpvOp_ = 208;
pub const SpvOp__SpvOpFwidth: SpvOp_ = 209;
pub const SpvOp__SpvOpDPdxFine: SpvOp_ = 210;
pub const SpvOp__SpvOpDPdyFine: SpvOp_ = 211;
pub const SpvOp__SpvOpFwidthFine: SpvOp_ = 212;
pub const SpvOp__SpvOpDPdxCoarse: SpvOp_ = 213;
pub const SpvOp__SpvOpDPdyCoarse: SpvOp_ = 214;
pub const SpvOp__SpvOpFwidthCoarse: SpvOp_ = 215;
pub const SpvOp__SpvOpEmitVertex: SpvOp_ = 218;
pub const SpvOp__SpvOpEndPrimitive: SpvOp_ = 219;
pub const SpvOp__SpvOpEmitStreamVertex: SpvOp_ = 220;
pub const SpvOp__SpvOpEndStreamPrimitive: SpvOp_ = 221;
pub const SpvOp__SpvOpControlBarrier: SpvOp_ = 224;
pub const SpvOp__SpvOpMemoryBarrier: SpvOp_ = 225;
pub const SpvOp__SpvOpAtomicLoad: SpvOp_ = 227;
pub const SpvOp__SpvOpAtomicStore: SpvOp_ = 228;
pub const SpvOp__SpvOpAtomicExchange: SpvOp_ = 229;
pub const SpvOp__SpvOpAtomicCompareExchange: SpvOp_ = 230;
pub const SpvOp__SpvOpAtomicCompareExchangeWeak: SpvOp_ = 231;
pub const SpvOp__SpvOpAtomicIIncrement: SpvOp_ = 232;
pub const SpvOp__SpvOpAtomicIDecrement: SpvOp_ = 233;
pub const SpvOp__SpvOpAtomicIAdd: SpvOp_ = 234;
pub const SpvOp__SpvOpAtomicISub: SpvOp_ = 235;
pub const SpvOp__SpvOpAtomicSMin: SpvOp_ = 236;
pub const SpvOp__SpvOpAtomicUMin: SpvOp_ = 237;
pub const SpvOp__SpvOpAtomicSMax: SpvOp_ = 238;
pub const SpvOp__SpvOpAtomicUMax: SpvOp_ = 239;
pub const SpvOp__SpvOpAtomicAnd: SpvOp_ = 240;
pub const SpvOp__SpvOpAtomicOr: SpvOp_ = 241;
pub const SpvOp__SpvOpAtomicXor: SpvOp_ = 242;
pub const SpvOp__SpvOpPhi: SpvOp_ = 245;
pub const SpvOp__SpvOpLoopMerge: SpvOp_ = 246;
pub const SpvOp__SpvOpSelectionMerge: SpvOp_ = 247;
pub const SpvOp__SpvOpLabel: SpvOp_ = 248;
pub const SpvOp__SpvOpBranch: SpvOp_ = 249;
pub const SpvOp__SpvOpBranchConditional: SpvOp_ = 250;
pub const SpvOp__SpvOpSwitch: SpvOp_ = 251;
pub const SpvOp__SpvOpKill: SpvOp_ = 252;
pub const SpvOp__SpvOpReturn: SpvOp_ = 253;
pub const SpvOp__SpvOpReturnValue: SpvOp_ = 254;
pub const SpvOp__SpvOpUnreachable: SpvOp_ = 255;
pub const SpvOp__SpvOpLifetimeStart: SpvOp_ = 256;
pub const SpvOp__SpvOpLifetimeStop: SpvOp_ = 257;
pub const SpvOp__SpvOpGroupAsyncCopy: SpvOp_ = 259;
pub const SpvOp__SpvOpGroupWaitEvents: SpvOp_ = 260;
pub const SpvOp__SpvOpGroupAll: SpvOp_ = 261;
pub const SpvOp__SpvOpGroupAny: SpvOp_ = 262;
pub const SpvOp__SpvOpGroupBroadcast: SpvOp_ = 263;
pub const SpvOp__SpvOpGroupIAdd: SpvOp_ = 264;
pub const SpvOp__SpvOpGroupFAdd: SpvOp_ = 265;
pub const SpvOp__SpvOpGroupFMin: SpvOp_ = 266;
pub const SpvOp__SpvOpGroupUMin: SpvOp_ = 267;
pub const SpvOp__SpvOpGroupSMin: SpvOp_ = 268;
pub const SpvOp__SpvOpGroupFMax: SpvOp_ = 269;
pub const SpvOp__SpvOpGroupUMax: SpvOp_ = 270;
pub const SpvOp__SpvOpGroupSMax: SpvOp_ = 271;
pub const SpvOp__SpvOpReadPipe: SpvOp_ = 274;
pub const SpvOp__SpvOpWritePipe: SpvOp_ = 275;
pub const SpvOp__SpvOpReservedReadPipe: SpvOp_ = 276;
pub const SpvOp__SpvOpReservedWritePipe: SpvOp_ = 277;
pub const SpvOp__SpvOpReserveReadPipePackets: SpvOp_ = 278;
pub const SpvOp__SpvOpReserveWritePipePackets: SpvOp_ = 279;
pub const SpvOp__SpvOpCommitReadPipe: SpvOp_ = 280;
pub const SpvOp__SpvOpCommitWritePipe: SpvOp_ = 281;
pub const SpvOp__SpvOpIsValidReserveId: SpvOp_ = 282;
pub const SpvOp__SpvOpGetNumPipePackets: SpvOp_ = 283;
pub const SpvOp__SpvOpGetMaxPipePackets: SpvOp_ = 284;
pub const SpvOp__SpvOpGroupReserveReadPipePackets: SpvOp_ = 285;
pub const SpvOp__SpvOpGroupReserveWritePipePackets: SpvOp_ = 286;
pub const SpvOp__SpvOpGroupCommitReadPipe: SpvOp_ = 287;
pub const SpvOp__SpvOpGroupCommitWritePipe: SpvOp_ = 288;
pub const SpvOp__SpvOpEnqueueMarker: SpvOp_ = 291;
pub const SpvOp__SpvOpEnqueueKernel: SpvOp_ = 292;
pub const SpvOp__SpvOpGetKernelNDrangeSubGroupCount: SpvOp_ = 293;
pub const SpvOp__SpvOpGetKernelNDrangeMaxSubGroupSize: SpvOp_ = 294;
pub const SpvOp__SpvOpGetKernelWorkGroupSize: SpvOp_ = 295;
pub const SpvOp__SpvOpGetKernelPreferredWorkGroupSizeMultiple: SpvOp_ = 296;
pub const SpvOp__SpvOpRetainEvent: SpvOp_ = 297;
pub const SpvOp__SpvOpReleaseEvent: SpvOp_ = 298;
pub const SpvOp__SpvOpCreateUserEvent: SpvOp_ = 299;
pub const SpvOp__SpvOpIsValidEvent: SpvOp_ = 300;
pub const SpvOp__SpvOpSetUserEventStatus: SpvOp_ = 301;
pub const SpvOp__SpvOpCaptureEventProfilingInfo: SpvOp_ = 302;
pub const SpvOp__SpvOpGetDefaultQueue: SpvOp_ = 303;
pub const SpvOp__SpvOpBuildNDRange: SpvOp_ = 304;
pub const SpvOp__SpvOpImageSparseSampleImplicitLod: SpvOp_ = 305;
pub const SpvOp__SpvOpImageSparseSampleExplicitLod: SpvOp_ = 306;
pub const SpvOp__SpvOpImageSparseSampleDrefImplicitLod: SpvOp_ = 307;
pub const SpvOp__SpvOpImageSparseSampleDrefExplicitLod: SpvOp_ = 308;
pub const SpvOp__SpvOpImageSparseSampleProjImplicitLod: SpvOp_ = 309;
pub const SpvOp__SpvOpImageSparseSampleProjExplicitLod: SpvOp_ = 310;
pub const SpvOp__SpvOpImageSparseSampleProjDrefImplicitLod: SpvOp_ = 311;
pub const SpvOp__SpvOpImageSparseSampleProjDrefExplicitLod: SpvOp_ = 312;
pub const SpvOp__SpvOpImageSparseFetch: SpvOp_ = 313;
pub const SpvOp__SpvOpImageSparseGather: SpvOp_ = 314;
pub const SpvOp__SpvOpImageSparseDrefGather: SpvOp_ = 315;
pub const SpvOp__SpvOpImageSparseTexelsResident: SpvOp_ = 316;
pub const SpvOp__SpvOpNoLine: SpvOp_ = 317;
pub const SpvOp__SpvOpAtomicFlagTestAndSet: SpvOp_ = 318;
pub const SpvOp__SpvOpAtomicFlagClear: SpvOp_ = 319;
pub const SpvOp__SpvOpImageSparseRead: SpvOp_ = 320;
pub const SpvOp__SpvOpSizeOf: SpvOp_ = 321;
pub const SpvOp__SpvOpTypePipeStorage: SpvOp_ = 322;
pub const SpvOp__SpvOpConstantPipeStorage: SpvOp_ = 323;
pub const SpvOp__SpvOpCreatePipeFromPipeStorage: SpvOp_ = 324;
pub const SpvOp__SpvOpGetKernelLocalSizeForSubgroupCount: SpvOp_ = 325;
pub const SpvOp__SpvOpGetKernelMaxNumSubgroups: SpvOp_ = 326;
pub const SpvOp__SpvOpTypeNamedBarrier: SpvOp_ = 327;
pub const SpvOp__SpvOpNamedBarrierInitialize: SpvOp_ = 328;
pub const SpvOp__SpvOpMemoryNamedBarrier: SpvOp_ = 329;
pub const SpvOp__SpvOpModuleProcessed: SpvOp_ = 330;
pub const SpvOp__SpvOpExecutionModeId: SpvOp_ = 331;
pub const SpvOp__SpvOpDecorateId: SpvOp_ = 332;
pub const SpvOp__SpvOpGroupNonUniformElect: SpvOp_ = 333;
pub const SpvOp__SpvOpGroupNonUniformAll: SpvOp_ = 334;
pub const SpvOp__SpvOpGroupNonUniformAny: SpvOp_ = 335;
pub const SpvOp__SpvOpGroupNonUniformAllEqual: SpvOp_ = 336;
pub const SpvOp__SpvOpGroupNonUniformBroadcast: SpvOp_ = 337;
pub const SpvOp__SpvOpGroupNonUniformBroadcastFirst: SpvOp_ = 338;
pub const SpvOp__SpvOpGroupNonUniformBallot: SpvOp_ = 339;
pub const SpvOp__SpvOpGroupNonUniformInverseBallot: SpvOp_ = 340;
pub const SpvOp__SpvOpGroupNonUniformBallotBitExtract: SpvOp_ = 341;
pub const SpvOp__SpvOpGroupNonUniformBallotBitCount: SpvOp_ = 342;
pub const SpvOp__SpvOpGroupNonUniformBallotFindLSB: SpvOp_ = 343;
pub const SpvOp__SpvOpGroupNonUniformBallotFindMSB: SpvOp_ = 344;
pub const SpvOp__SpvOpGroupNonUniformShuffle: SpvOp_ = 345;
pub const SpvOp__SpvOpGroupNonUniformShuffleXor: SpvOp_ = 346;
pub const SpvOp__SpvOpGroupNonUniformShuffleUp: SpvOp_ = 347;
pub const SpvOp__SpvOpGroupNonUniformShuffleDown: SpvOp_ = 348;
pub const SpvOp__SpvOpGroupNonUniformIAdd: SpvOp_ = 349;
pub const SpvOp__SpvOpGroupNonUniformFAdd: SpvOp_ = 350;
pub const SpvOp__SpvOpGroupNonUniformIMul: SpvOp_ = 351;
pub const SpvOp__SpvOpGroupNonUniformFMul: SpvOp_ = 352;
pub const SpvOp__SpvOpGroupNonUniformSMin: SpvOp_ = 353;
pub const SpvOp__SpvOpGroupNonUniformUMin: SpvOp_ = 354;
pub const SpvOp__SpvOpGroupNonUniformFMin: SpvOp_ = 355;
pub const SpvOp__SpvOpGroupNonUniformSMax: SpvOp_ = 356;
pub const SpvOp__SpvOpGroupNonUniformUMax: SpvOp_ = 357;
pub const SpvOp__SpvOpGroupNonUniformFMax: SpvOp_ = 358;
pub const SpvOp__SpvOpGroupNonUniformBitwiseAnd: SpvOp_ = 359;
pub const SpvOp__SpvOpGroupNonUniformBitwiseOr: SpvOp_ = 360;
pub const SpvOp__SpvOpGroupNonUniformBitwiseXor: SpvOp_ = 361;
pub const SpvOp__SpvOpGroupNonUniformLogicalAnd: SpvOp_ = 362;
pub const SpvOp__SpvOpGroupNonUniformLogicalOr: SpvOp_ = 363;
pub const SpvOp__SpvOpGroupNonUniformLogicalXor: SpvOp_ = 364;
pub const SpvOp__SpvOpGroupNonUniformQuadBroadcast: SpvOp_ = 365;
pub const SpvOp__SpvOpGroupNonUniformQuadSwap: SpvOp_ = 366;
pub const SpvOp__SpvOpSubgroupBallotKHR: SpvOp_ = 4421;
pub const SpvOp__SpvOpSubgroupFirstInvocationKHR: SpvOp_ = 4422;
pub const SpvOp__SpvOpSubgroupAllKHR: SpvOp_ = 4428;
pub const SpvOp__SpvOpSubgroupAnyKHR: SpvOp_ = 4429;
pub const SpvOp__SpvOpSubgroupAllEqualKHR: SpvOp_ = 4430;
pub const SpvOp__SpvOpSubgroupReadInvocationKHR: SpvOp_ = 4432;
pub const SpvOp__SpvOpGroupIAddNonUniformAMD: SpvOp_ = 5000;
pub const SpvOp__SpvOpGroupFAddNonUniformAMD: SpvOp_ = 5001;
pub const SpvOp__SpvOpGroupFMinNonUniformAMD: SpvOp_ = 5002;
pub const SpvOp__SpvOpGroupUMinNonUniformAMD: SpvOp_ = 5003;
pub const SpvOp__SpvOpGroupSMinNonUniformAMD: SpvOp_ = 5004;
pub const SpvOp__SpvOpGroupFMaxNonUniformAMD: SpvOp_ = 5005;
pub const SpvOp__SpvOpGroupUMaxNonUniformAMD: SpvOp_ = 5006;
pub const SpvOp__SpvOpGroupSMaxNonUniformAMD: SpvOp_ = 5007;
pub const SpvOp__SpvOpFragmentMaskFetchAMD: SpvOp_ = 5011;
pub const SpvOp__SpvOpFragmentFetchAMD: SpvOp_ = 5012;
pub const SpvOp__SpvOpGroupNonUniformPartitionNV: SpvOp_ = 5296;
pub const SpvOp__SpvOpSubgroupShuffleINTEL: SpvOp_ = 5571;
pub const SpvOp__SpvOpSubgroupShuffleDownINTEL: SpvOp_ = 5572;
pub const SpvOp__SpvOpSubgroupShuffleUpINTEL: SpvOp_ = 5573;
pub const SpvOp__SpvOpSubgroupShuffleXorINTEL: SpvOp_ = 5574;
pub const SpvOp__SpvOpSubgroupBlockReadINTEL: SpvOp_ = 5575;
pub const SpvOp__SpvOpSubgroupBlockWriteINTEL: SpvOp_ = 5576;
pub const SpvOp__SpvOpSubgroupImageBlockReadINTEL: SpvOp_ = 5577;
pub const SpvOp__SpvOpSubgroupImageBlockWriteINTEL: SpvOp_ = 5578;
pub const SpvOp__SpvOpDecorateStringGOOGLE: SpvOp_ = 5632;
pub const SpvOp__SpvOpMemberDecorateStringGOOGLE: SpvOp_ = 5633;
pub const SpvOp__SpvOpMax: SpvOp_ = 2147483647;
pub type SpvOp_ = u32;
pub use self::SpvOp_ as SpvOp;
pub const SpvReflectResult_SPV_REFLECT_RESULT_SUCCESS: SpvReflectResult = 0;
pub const SpvReflectResult_SPV_REFLECT_RESULT_NOT_READY: SpvReflectResult = 1;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_PARSE_FAILED: SpvReflectResult = 2;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_ALLOC_FAILED: SpvReflectResult = 3;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_RANGE_EXCEEDED: SpvReflectResult = 4;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_NULL_POINTER: SpvReflectResult = 5;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_INTERNAL_ERROR: SpvReflectResult = 6;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_COUNT_MISMATCH: SpvReflectResult = 7;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_ELEMENT_NOT_FOUND: SpvReflectResult = 8;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_INVALID_CODE_SIZE: SpvReflectResult = 9;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_INVALID_MAGIC_NUMBER: SpvReflectResult =
    10;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_UNEXPECTED_EOF: SpvReflectResult = 11;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_INVALID_ID_REFERENCE: SpvReflectResult =
    12;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_SET_NUMBER_OVERFLOW: SpvReflectResult =
    13;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_INVALID_STORAGE_CLASS: SpvReflectResult =
    14;
pub const SpvReflectResult_SPV_REFLECT_RESULT_ERROR_SPIRV_RECURSION: SpvReflectResult = 15;
/// @enum SpvReflectResult
pub type SpvReflectResult = u32;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_UNDEFINED: SpvReflectTypeFlagBits = 0;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_VOID: SpvReflectTypeFlagBits = 1;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_BOOL: SpvReflectTypeFlagBits = 2;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_INT: SpvReflectTypeFlagBits = 4;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_FLOAT: SpvReflectTypeFlagBits = 8;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_VECTOR: SpvReflectTypeFlagBits = 256;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_MATRIX: SpvReflectTypeFlagBits = 512;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_EXTERNAL_IMAGE: SpvReflectTypeFlagBits =
    65536;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_EXTERNAL_SAMPLER: SpvReflectTypeFlagBits =
    131072;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_EXTERNAL_SAMPLED_IMAGE:
    SpvReflectTypeFlagBits = 262144;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_EXTERNAL_BLOCK: SpvReflectTypeFlagBits =
    524288;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_EXTERNAL_MASK: SpvReflectTypeFlagBits =
    983040;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_STRUCT: SpvReflectTypeFlagBits = 268435456;
pub const SpvReflectTypeFlagBits_SPV_REFLECT_TYPE_FLAG_ARRAY: SpvReflectTypeFlagBits = 536870912;
/// @enum SpvReflectTypeFlagBits
pub type SpvReflectTypeFlagBits = u32;
pub type SpvReflectTypeFlags = u32;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_NONE: SpvReflectDecorationFlagBits =
    0;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_BLOCK: SpvReflectDecorationFlagBits =
    1;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_BUFFER_BLOCK:
    SpvReflectDecorationFlagBits = 2;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_ROW_MAJOR:
    SpvReflectDecorationFlagBits = 4;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_COLUMN_MAJOR:
    SpvReflectDecorationFlagBits = 8;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_BUILT_IN:
    SpvReflectDecorationFlagBits = 16;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_NOPERSPECTIVE:
    SpvReflectDecorationFlagBits = 32;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_FLAT: SpvReflectDecorationFlagBits =
    64;
pub const SpvReflectDecorationFlagBits_SPV_REFLECT_DECORATION_NON_WRITABLE:
    SpvReflectDecorationFlagBits = 128;
/// @enum SpvReflectDecorationBits
pub type SpvReflectDecorationFlagBits = u32;
pub type SpvReflectDecorationFlags = u32;
pub const SpvReflectResourceType_SPV_REFLECT_RESOURCE_FLAG_UNDEFINED: SpvReflectResourceType = 0;
pub const SpvReflectResourceType_SPV_REFLECT_RESOURCE_FLAG_SAMPLER: SpvReflectResourceType = 1;
pub const SpvReflectResourceType_SPV_REFLECT_RESOURCE_FLAG_CBV: SpvReflectResourceType = 2;
pub const SpvReflectResourceType_SPV_REFLECT_RESOURCE_FLAG_SRV: SpvReflectResourceType = 4;
pub const SpvReflectResourceType_SPV_REFLECT_RESOURCE_FLAG_UAV: SpvReflectResourceType = 8;
/// @enum SpvReflectResourceType
pub type SpvReflectResourceType = u32;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_UNDEFINED: SpvReflectFormat = 0;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32_UINT: SpvReflectFormat = 98;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32_SINT: SpvReflectFormat = 99;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32_SFLOAT: SpvReflectFormat = 100;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32_UINT: SpvReflectFormat = 101;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32_SINT: SpvReflectFormat = 102;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32_SFLOAT: SpvReflectFormat = 103;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32_UINT: SpvReflectFormat = 104;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32_SINT: SpvReflectFormat = 105;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32_SFLOAT: SpvReflectFormat = 106;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32A32_UINT: SpvReflectFormat = 107;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32A32_SINT: SpvReflectFormat = 108;
pub const SpvReflectFormat_SPV_REFLECT_FORMAT_R32G32B32A32_SFLOAT: SpvReflectFormat = 109;
/// @enum SpvReflectFormat
pub type SpvReflectFormat = u32;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_SAMPLER: SpvReflectDescriptorType =
    0;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
    SpvReflectDescriptorType = 1;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
    SpvReflectDescriptorType = 2;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_STORAGE_IMAGE:
    SpvReflectDescriptorType = 3;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
    SpvReflectDescriptorType = 4;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
    SpvReflectDescriptorType = 5;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
    SpvReflectDescriptorType = 6;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_STORAGE_BUFFER:
    SpvReflectDescriptorType = 7;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
    SpvReflectDescriptorType = 8;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
    SpvReflectDescriptorType = 9;
pub const SpvReflectDescriptorType_SPV_REFLECT_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
    SpvReflectDescriptorType = 10;
/// @enum SpvReflectDescriptorType
pub type SpvReflectDescriptorType = u32;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_VERTEX_BIT:
    SpvReflectShaderStageFlagBits = 1;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_TESSELLATION_CONTROL_BIT:
    SpvReflectShaderStageFlagBits = 2;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_TESSELLATION_EVALUATION_BIT:
    SpvReflectShaderStageFlagBits = 4;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_GEOMETRY_BIT:
    SpvReflectShaderStageFlagBits = 8;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_FRAGMENT_BIT:
    SpvReflectShaderStageFlagBits = 16;
pub const SpvReflectShaderStageFlagBits_SPV_REFLECT_SHADER_STAGE_COMPUTE_BIT:
    SpvReflectShaderStageFlagBits = 32;
/// @enum SpvReflectShaderStageFlagBits
pub type SpvReflectShaderStageFlagBits = u32;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_KHRONOS_LLVM_SPIRV_TRANSLATOR:
    SpvReflectGenerator = 6;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_KHRONOS_SPIRV_TOOLS_ASSEMBLER:
    SpvReflectGenerator = 7;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_KHRONOS_GLSLANG_REFERENCE_FRONT_END:
    SpvReflectGenerator = 8;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_GOOGLE_SHADERC_OVER_GLSLANG:
    SpvReflectGenerator = 13;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_GOOGLE_SPIREGG: SpvReflectGenerator = 14;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_GOOGLE_RSPIRV: SpvReflectGenerator = 15;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_X_LEGEND_MESA_MESAIR_SPIRV_TRANSLATOR:
    SpvReflectGenerator = 16;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_KHRONOS_SPIRV_TOOLS_LINKER:
    SpvReflectGenerator = 17;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_WINE_VKD3D_SHADER_COMPILER:
    SpvReflectGenerator = 18;
pub const SpvReflectGenerator_SPV_REFLECT_GENERATOR_CLAY_CLAY_SHADER_COMPILER: SpvReflectGenerator =
    19;
/// @enum SpvReflectGenerator
pub type SpvReflectGenerator = u32;
pub const SPV_REFLECT_MAX_ARRAY_DIMS: _bindgen_ty_1 = 32;
pub const SPV_REFLECT_MAX_DESCRIPTOR_SETS: _bindgen_ty_1 = 64;
pub type _bindgen_ty_1 = u32;
pub const SPV_REFLECT_BINDING_NUMBER_DONT_CHANGE: _bindgen_ty_2 = -1;
pub const SPV_REFLECT_SET_NUMBER_DONT_CHANGE: _bindgen_ty_2 = -1;
pub type _bindgen_ty_2 = i32;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectNumericTraits {
    pub scalar: SpvReflectNumericTraits_Scalar,
    pub vector: SpvReflectNumericTraits_Vector,
    pub matrix: SpvReflectNumericTraits_Matrix,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectNumericTraits_Scalar {
    pub width: u32,
    pub signedness: u32,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectNumericTraits_Vector {
    pub component_count: u32,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectNumericTraits_Matrix {
    pub column_count: u32,
    pub row_count: u32,
    pub stride: u32,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectImageTraits {
    pub dim: SpvDim,
    pub depth: u32,
    pub arrayed: u32,
    pub ms: u32,
    pub sampled: u32,
    pub image_format: SpvImageFormat,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectArrayTraits {
    pub dims_count: u32,
    pub dims: [u32; 32usize],
    pub stride: u32,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectBindingArrayTraits {
    pub dims_count: u32,
    pub dims: [u32; 32usize],
}
/// @struct SpvReflectTypeDescription
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectTypeDescription {
    pub id: u32,
    pub op: SpvOp,
    pub type_name: *const ::std::os::raw::c_char,
    pub struct_member_name: *const ::std::os::raw::c_char,
    pub storage_class: SpvStorageClass,
    pub type_flags: SpvReflectTypeFlags,
    pub decoration_flags: SpvReflectDecorationFlags,
    pub traits: SpvReflectTypeDescription_Traits,
    pub member_count: u32,
    pub members: *mut SpvReflectTypeDescription,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectTypeDescription_Traits {
    pub numeric: SpvReflectNumericTraits,
    pub image: SpvReflectImageTraits,
    pub array: SpvReflectArrayTraits,
}
/// @struct SpvReflectInterfaceVariable
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectInterfaceVariable {
    pub spirv_id: u32,
    pub name: *const ::std::os::raw::c_char,
    pub location: u32,
    pub storage_class: SpvStorageClass,
    pub semantic: *const ::std::os::raw::c_char,
    pub decoration_flags: SpvReflectDecorationFlags,
    pub built_in: SpvBuiltIn,
    pub numeric: SpvReflectNumericTraits,
    pub array: SpvReflectArrayTraits,
    pub member_count: u32,
    pub members: *mut SpvReflectInterfaceVariable,
    pub format: SpvReflectFormat,
    pub type_description: *mut SpvReflectTypeDescription,
    pub word_offset: SpvReflectInterfaceVariable__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectInterfaceVariable__bindgen_ty_1 {
    pub location: u32,
}
/// @struct SpvReflectBlockVariable
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectBlockVariable {
    pub spirv_id: u32,
    pub name: *const ::std::os::raw::c_char,
    pub offset: u32,
    pub absolute_offset: u32,
    pub size: u32,
    pub padded_size: u32,
    pub decoration_flags: SpvReflectDecorationFlags,
    pub numeric: SpvReflectNumericTraits,
    pub array: SpvReflectArrayTraits,
    pub member_count: u32,
    pub members: *mut SpvReflectBlockVariable,
    pub type_description: *mut SpvReflectTypeDescription,
}
/// @struct SpvReflectDescriptorBinding
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectDescriptorBinding {
    pub spirv_id: u32,
    pub name: *const ::std::os::raw::c_char,
    pub binding: u32,
    pub input_attachment_index: u32,
    pub set: u32,
    pub descriptor_type: SpvReflectDescriptorType,
    pub resource_type: SpvReflectResourceType,
    pub image: SpvReflectImageTraits,
    pub block: SpvReflectBlockVariable,
    pub array: SpvReflectBindingArrayTraits,
    pub count: u32,
    pub uav_counter_id: u32,
    pub uav_counter_binding: *mut SpvReflectDescriptorBinding,
    pub type_description: *mut SpvReflectTypeDescription,
    pub word_offset: SpvReflectDescriptorBinding__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectDescriptorBinding__bindgen_ty_1 {
    pub binding: u32,
    pub set: u32,
}
/// @struct SpvReflectDescriptorSet
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectDescriptorSet {
    pub set: u32,
    pub binding_count: u32,
    pub bindings: *mut *mut SpvReflectDescriptorBinding,
}
/// @struct SpvReflectEntryPoint
///
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectEntryPoint {
    pub name: *const ::std::os::raw::c_char,
    pub id: u32,
    pub spirv_execution_model: SpvExecutionModel,
    pub shader_stage: SpvReflectShaderStageFlagBits,
    pub input_variable_count: u32,
    pub input_variables: *mut SpvReflectInterfaceVariable,
    pub output_variable_count: u32,
    pub output_variables: *mut SpvReflectInterfaceVariable,
    pub descriptor_set_count: u32,
    pub descriptor_sets: *mut SpvReflectDescriptorSet,
    pub used_uniform_count: u32,
    pub used_uniforms: *mut u32,
    pub used_push_constant_count: u32,
    pub used_push_constants: *mut u32,
}
/// @struct SpvReflectShaderModule
#[repr(C)]
#[derive(Copy, Clone)]
pub struct SpvReflectShaderModule {
    pub generator: SpvReflectGenerator,
    pub entry_point_name: *const ::std::os::raw::c_char,
    pub entry_point_id: u32,
    pub entry_point_count: u32,
    pub entry_points: *mut SpvReflectEntryPoint,
    pub source_language: SpvSourceLanguage,
    pub source_language_version: u32,
    pub source_file: *const ::std::os::raw::c_char,
    pub source_source: *const ::std::os::raw::c_char,
    pub spirv_execution_model: SpvExecutionModel,
    pub shader_stage: SpvReflectShaderStageFlagBits,
    pub descriptor_binding_count: u32,
    pub descriptor_bindings: *mut SpvReflectDescriptorBinding,
    pub descriptor_set_count: u32,
    pub descriptor_sets: [SpvReflectDescriptorSet; 64usize],
    pub input_variable_count: u32,
    pub input_variables: *mut SpvReflectInterfaceVariable,
    pub output_variable_count: u32,
    pub output_variables: *mut SpvReflectInterfaceVariable,
    pub push_constant_block_count: u32,
    pub push_constant_blocks: *mut SpvReflectBlockVariable,
    pub _internal: *mut SpvReflectShaderModule_Internal,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SpvReflectShaderModule_Internal {
    pub spirv_size: usize,
    pub spirv_code: *mut u32,
    pub spirv_word_count: u32,
    pub type_description_count: usize,
    pub type_descriptions: *mut SpvReflectTypeDescription,
}
extern "C" {
    /// @fn spvReflectCreateShaderModule
    ///
    ///@param  size      Size in bytes of SPIR-V code.
    ///@param  p_code    Pointer to SPIR-V code.
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    ///@return           SPV_REFLECT_RESULT_SUCCESS on success.
    pub fn spvReflectCreateShaderModule(
        size: usize,
        p_code: *const ::std::os::raw::c_void,
        p_module: *mut SpvReflectShaderModule,
    ) -> SpvReflectResult;
}
extern "C" {
    pub fn spvReflectGetShaderModule(
        size: usize,
        p_code: *const ::std::os::raw::c_void,
        p_module: *mut SpvReflectShaderModule,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectDestroyShaderModule
    ///
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    pub fn spvReflectDestroyShaderModule(p_module: *mut SpvReflectShaderModule);
}
extern "C" {
    /// @fn spvReflectGetCodeSize
    ///
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    ///@return           Returns the size of the SPIR-V in bytes
    pub fn spvReflectGetCodeSize(p_module: *const SpvReflectShaderModule) -> u32;
}
extern "C" {
    /// @fn spvReflectGetCode
    ///
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    ///@return           Returns a const pointer to the compiled SPIR-V bytecode.
    pub fn spvReflectGetCode(p_module: *const SpvReflectShaderModule) -> *const u32;
}
extern "C" {
    /// @fn spvReflectGetEntryPoint
    ///
    ///@param  p_module     Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point  Name of the requested entry point.
    ///@return              Returns a const pointer to the requested entry point,
    ///or NULL if it's not found.
    pub fn spvReflectGetEntryPoint(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
    ) -> *const SpvReflectEntryPoint;
}
extern "C" {
    /// @fn spvReflectEnumerateDescriptorBindings
    ///
    ///@param  p_module     Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count      If pp_bindings is NULL, the module's descriptor binding
    ///count (across all descriptor sets) will be stored here.
    ///If pp_bindings is not NULL, *p_count must contain the
    ///module's descriptor binding count.
    ///@param  pp_bindings  If NULL, the module's total descriptor binding count
    ///will be written to *p_count.
    ///If non-NULL, pp_bindings must point to an array with
    ///p_count entries, where pointers to the module's
    ///descriptor bindings will be written. The caller must not
    ///free the binding pointers written to this array.
    ///@return              If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateDescriptorBindings(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_bindings: *mut *mut SpvReflectDescriptorBinding,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateEntryPointDescriptorBindings
    ///@brief  Creates a listing of all descriptor bindings that are used in the
    ///static call tree of the given entry point.
    ///@param  p_module     Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point  The name of the entry point to get the descriptor bindings for.
    ///@param  p_count      If pp_bindings is NULL, the entry point's descriptor binding
    ///count (across all descriptor sets) will be stored here.
    ///If pp_bindings is not NULL, *p_count must contain the
    ///entry points's descriptor binding count.
    ///@param  pp_bindings  If NULL, the entry point's total descriptor binding count
    ///will be written to *p_count.
    ///If non-NULL, pp_bindings must point to an array with
    ///p_count entries, where pointers to the entry point's
    ///descriptor bindings will be written. The caller must not
    ///free the binding pointers written to this array.
    ///@return              If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateEntryPointDescriptorBindings(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_count: *mut u32,
        pp_bindings: *mut *mut SpvReflectDescriptorBinding,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateDescriptorSets
    ///
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count   If pp_sets is NULL, the module's descriptor set
    ///count will be stored here.
    ///If pp_sets is not NULL, *p_count must contain the
    ///module's descriptor set count.
    ///@param  pp_sets   If NULL, the module's total descriptor set count
    ///will be written to *p_count.
    ///If non-NULL, pp_sets must point to an array with
    ///p_count entries, where pointers to the module's
    ///descriptor sets will be written. The caller must not
    ///free the descriptor set pointers written to this array.
    ///@return           If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateDescriptorSets(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_sets: *mut *mut SpvReflectDescriptorSet,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateEntryPointDescriptorSets
    ///@brief  Creates a listing of all descriptor sets and their bindings that are
    ///used in the static call tree of a given entry point.
    ///@param  p_module    Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point The name of the entry point to get the descriptor bindings for.
    ///@param  p_count     If pp_sets is NULL, the module's descriptor set
    ///count will be stored here.
    ///If pp_sets is not NULL, *p_count must contain the
    ///module's descriptor set count.
    ///@param  pp_sets     If NULL, the module's total descriptor set count
    ///will be written to *p_count.
    ///If non-NULL, pp_sets must point to an array with
    ///p_count entries, where pointers to the module's
    ///descriptor sets will be written. The caller must not
    ///free the descriptor set pointers written to this array.
    ///@return             If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateEntryPointDescriptorSets(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_count: *mut u32,
        pp_sets: *mut *mut SpvReflectDescriptorSet,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateInputVariables
    ///@brief  If the module contains multiple entry points, this will only get
    ///the input variables for the first one.
    ///@param  p_module      Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count       If pp_variables is NULL, the module's input variable
    ///count will be stored here.
    ///If pp_variables is not NULL, *p_count must contain
    ///the module's input variable count.
    ///@param  pp_variables  If NULL, the module's input variable count will be
    ///written to *p_count.
    ///If non-NULL, pp_variables must point to an array with
    ///p_count entries, where pointers to the module's
    ///input variables will be written. The caller must not
    ///free the interface variables written to this array.
    ///@return               If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateInputVariables(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_variables: *mut *mut SpvReflectInterfaceVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateEntryPointInputVariables
    ///@brief  Enumerate the input variables for a given entry point.
    ///@param  entry_point The name of the entry point to get the input variables for.
    ///@param  p_module      Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count       If pp_variables is NULL, the entry point's input variable
    ///count will be stored here.
    ///If pp_variables is not NULL, *p_count must contain
    ///the entry point's input variable count.
    ///@param  pp_variables  If NULL, the entry point's input variable count will be
    ///written to *p_count.
    ///If non-NULL, pp_variables must point to an array with
    ///p_count entries, where pointers to the entry point's
    ///input variables will be written. The caller must not
    ///free the interface variables written to this array.
    ///@return               If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateEntryPointInputVariables(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_count: *mut u32,
        pp_variables: *mut *mut SpvReflectInterfaceVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateOutputVariables
    ///@brief  Note: If the module contains multiple entry points, this will only get
    ///the output variables for the first one.
    ///@param  p_module      Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count       If pp_variables is NULL, the module's output variable
    ///count will be stored here.
    ///If pp_variables is not NULL, *p_count must contain
    ///the module's output variable count.
    ///@param  pp_variables  If NULL, the module's output variable count will be
    ///written to *p_count.
    ///If non-NULL, pp_variables must point to an array with
    ///p_count entries, where pointers to the module's
    ///output variables will be written. The caller must not
    ///free the interface variables written to this array.
    ///@return               If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateOutputVariables(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_variables: *mut *mut SpvReflectInterfaceVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateEntryPointOutputVariables
    ///@brief  Enumerate the output variables for a given entry point.
    ///@param  p_module      Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point   The name of the entry point to get the output variables for.
    ///@param  p_count       If pp_variables is NULL, the entry point's output variable
    ///count will be stored here.
    ///If pp_variables is not NULL, *p_count must contain
    ///the entry point's output variable count.
    ///@param  pp_variables  If NULL, the entry point's output variable count will be
    ///written to *p_count.
    ///If non-NULL, pp_variables must point to an array with
    ///p_count entries, where pointers to the entry point's
    ///output variables will be written. The caller must not
    ///free the interface variables written to this array.
    ///@return               If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateEntryPointOutputVariables(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_count: *mut u32,
        pp_variables: *mut *mut SpvReflectInterfaceVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumeratePushConstantBlocks
    ///@brief  Note: If the module contains multiple entry points, this will only get
    ///the push constant blocks for the first one.
    ///@param  p_module   Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count    If pp_blocks is NULL, the module's push constant
    ///block count will be stored here.
    ///If pp_blocks is not NULL, *p_count must
    ///contain the module's push constant block count.
    ///@param  pp_blocks  If NULL, the module's push constant block count
    ///will be written to *p_count.
    ///If non-NULL, pp_blocks must point to an
    ///array with *p_count entries, where pointers to
    ///the module's push constant blocks will be written.
    ///The caller must not free the block variables written
    ///to this array.
    ///@return            If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumeratePushConstantBlocks(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_blocks: *mut *mut SpvReflectBlockVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    pub fn spvReflectEnumeratePushConstants(
        p_module: *const SpvReflectShaderModule,
        p_count: *mut u32,
        pp_blocks: *mut *mut SpvReflectBlockVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectEnumerateEntryPointPushConstantBlocks
    ///@brief  Enumerate the push constant blocks used in the static call tree of a
    ///given entry point.
    ///@param  p_module   Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_count    If pp_blocks is NULL, the entry point's push constant
    ///block count will be stored here.
    ///If pp_blocks is not NULL, *p_count must
    ///contain the entry point's push constant block count.
    ///@param  pp_blocks  If NULL, the entry point's push constant block count
    ///will be written to *p_count.
    ///If non-NULL, pp_blocks must point to an
    ///array with *p_count entries, where pointers to
    ///the entry point's push constant blocks will be written.
    ///The caller must not free the block variables written
    ///to this array.
    ///@return            If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of the
    ///failure.
    pub fn spvReflectEnumerateEntryPointPushConstantBlocks(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_count: *mut u32,
        pp_blocks: *mut *mut SpvReflectBlockVariable,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectGetDescriptorBinding
    ///
    ///@param  p_module        Pointer to an instance of SpvReflectShaderModule.
    ///@param  binding_number  The "binding" value of the requested descriptor
    ///binding.
    ///@param  set_number      The "set" value of the requested descriptor binding.
    ///@param  p_result        If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return                 If the module contains a descriptor binding that
    ///matches the provided [binding_number, set_number]
    ///values, a pointer to that binding is returned. The
    ///caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    ///@note                    If the module contains multiple desriptor bindings
    ///with the same set and binding numbers, there are
    ///no guarantees about which binding will be returned.
    pub fn spvReflectGetDescriptorBinding(
        p_module: *const SpvReflectShaderModule,
        binding_number: u32,
        set_number: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectDescriptorBinding;
}
extern "C" {
    /// @fn spvReflectGetEntryPointDescriptorBinding
    ///@brief  Get the descriptor binding with the given binding number and set
    ///number that is used in the static call tree of a certain entry
    ///point.
    ///@param  p_module        Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point     The entry point to get the binding from.
    ///@param  binding_number  The "binding" value of the requested descriptor
    ///binding.
    ///@param  set_number      The "set" value of the requested descriptor binding.
    ///@param  p_result        If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return                 If the entry point contains a descriptor binding that
    ///matches the provided [binding_number, set_number]
    ///values, a pointer to that binding is returned. The
    ///caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    ///@note                    If the entry point contains multiple desriptor bindings
    ///with the same set and binding numbers, there are
    ///no guarantees about which binding will be returned.
    pub fn spvReflectGetEntryPointDescriptorBinding(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        binding_number: u32,
        set_number: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectDescriptorBinding;
}
extern "C" {
    /// @fn spvReflectGetDescriptorSet
    ///
    ///@param  p_module    Pointer to an instance of SpvReflectShaderModule.
    ///@param  set_number  The "set" value of the requested descriptor set.
    ///@param  p_result    If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return             If the module contains a descriptor set with the
    ///provided set_number, a pointer to that set is
    ///returned. The caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    pub fn spvReflectGetDescriptorSet(
        p_module: *const SpvReflectShaderModule,
        set_number: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectDescriptorSet;
}
extern "C" {
    /// @fn spvReflectGetEntryPointDescriptorSet
    ///
    ///@param  p_module    Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point The entry point to get the descriptor set from.
    ///@param  set_number  The "set" value of the requested descriptor set.
    ///@param  p_result    If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return             If the entry point contains a descriptor set with the
    ///provided set_number, a pointer to that set is
    ///returned. The caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    pub fn spvReflectGetEntryPointDescriptorSet(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        set_number: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectDescriptorSet;
}
extern "C" {
    pub fn spvReflectGetInputVariableByLocation(
        p_module: *const SpvReflectShaderModule,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetInputVariable(
        p_module: *const SpvReflectShaderModule,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetEntryPointInputVariableByLocation(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetInputVariableBySemantic(
        p_module: *const SpvReflectShaderModule,
        semantic: *const ::std::os::raw::c_char,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetEntryPointInputVariableBySemantic(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        semantic: *const ::std::os::raw::c_char,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetOutputVariableByLocation(
        p_module: *const SpvReflectShaderModule,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetOutputVariable(
        p_module: *const SpvReflectShaderModule,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetEntryPointOutputVariableByLocation(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        location: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetOutputVariableBySemantic(
        p_module: *const SpvReflectShaderModule,
        semantic: *const ::std::os::raw::c_char,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    pub fn spvReflectGetEntryPointOutputVariableBySemantic(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        semantic: *const ::std::os::raw::c_char,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectInterfaceVariable;
}
extern "C" {
    /// @fn spvReflectGetPushConstantBlock
    ///
    ///@param  p_module  Pointer to an instance of SpvReflectShaderModule.
    ///@param  index     The index of the desired block within the module's
    ///array of push constant blocks.
    ///@param  p_result  If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return           If the provided index is within range, a pointer to
    ///the corresponding push constant block is returned.
    ///The caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    pub fn spvReflectGetPushConstantBlock(
        p_module: *const SpvReflectShaderModule,
        index: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectBlockVariable;
}
extern "C" {
    pub fn spvReflectGetPushConstant(
        p_module: *const SpvReflectShaderModule,
        index: u32,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectBlockVariable;
}
extern "C" {
    /// @fn spvReflectGetEntryPointPushConstantBlock
    ///@brief  Get the push constant block corresponding to the given entry point.
    ///As by the Vulkan specification there can be no more than one push
    ///constant block used by a given entry point, so if there is one it will
    ///be returned, otherwise NULL will be returned.
    ///@param  p_module     Pointer to an instance of SpvReflectShaderModule.
    ///@param  entry_point  The entry point to get the push constant block from.
    ///@param  p_result     If successful, SPV_REFLECT_RESULT_SUCCESS will be
    ///written to *p_result. Otherwise, a error code
    ///indicating the cause of the failure will be stored
    ///here.
    ///@return              If the provided index is within range, a pointer to
    ///the corresponding push constant block is returned.
    ///The caller must not free this pointer.
    ///If no match can be found, or if an unrelated error
    ///occurs, the return value will be NULL. Detailed
    ///error results are written to *pResult.
    pub fn spvReflectGetEntryPointPushConstantBlock(
        p_module: *const SpvReflectShaderModule,
        entry_point: *const ::std::os::raw::c_char,
        p_result: *mut SpvReflectResult,
    ) -> *const SpvReflectBlockVariable;
}
extern "C" {
    /// @fn spvReflectChangeDescriptorBindingNumbers
    ///@brief  Assign new set and/or binding numbers to a descriptor binding.
    ///In addition to updating the reflection data, this function modifies
    ///the underlying SPIR-V bytecode. The updated code can be retrieved
    ///with spvReflectGetCode().  If the binding is used in multiple
    ///entry points within the module, it will be changed in all of them.
    ///@param  p_module            Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_binding           Pointer to the descriptor binding to modify.
    ///@param  new_binding_number  The new binding number to assign to the
    ///provided descriptor binding.
    ///To leave the binding number unchanged, pass
    ///SPV_REFLECT_BINDING_NUMBER_DONT_CHANGE.
    ///@param  new_set_number      The new set number to assign to the
    ///provided descriptor binding. Successfully changing
    ///a descriptor binding's set number invalidates all
    ///existing SpvReflectDescriptorBinding and
    ///SpvReflectDescriptorSet pointers from this module.
    ///To leave the set number unchanged, pass
    ///SPV_REFLECT_SET_NUMBER_DONT_CHANGE.
    ///@return                     If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of
    ///the failure.
    pub fn spvReflectChangeDescriptorBindingNumbers(
        p_module: *mut SpvReflectShaderModule,
        p_binding: *const SpvReflectDescriptorBinding,
        new_binding_number: u32,
        new_set_number: u32,
    ) -> SpvReflectResult;
}
extern "C" {
    pub fn spvReflectChangeDescriptorBindingNumber(
        p_module: *mut SpvReflectShaderModule,
        p_descriptor_binding: *const SpvReflectDescriptorBinding,
        new_binding_number: u32,
        optional_new_set_number: u32,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectChangeDescriptorSetNumber
    ///@brief  Assign a new set number to an entire descriptor set (including
    ///all descriptor bindings in that set).
    ///In addition to updating the reflection data, this function modifies
    ///the underlying SPIR-V bytecode. The updated code can be retrieved
    ///with spvReflectGetCode().  If the descriptor set is used in
    ///multiple entry points within the module, it will be modified in all
    ///of them.
    ///@param  p_module        Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_set           Pointer to the descriptor binding to modify.
    ///@param  new_set_number  The new set number to assign to the
    ///provided descriptor set, and all its descriptor
    ///bindings. Successfully changing a descriptor
    ///binding's set number invalidates all existing
    ///SpvReflectDescriptorBinding and
    ///SpvReflectDescriptorSet pointers from this module.
    ///To leave the set number unchanged, pass
    ///SPV_REFLECT_SET_NUMBER_DONT_CHANGE.
    ///@return                 If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of
    ///the failure.
    pub fn spvReflectChangeDescriptorSetNumber(
        p_module: *mut SpvReflectShaderModule,
        p_set: *const SpvReflectDescriptorSet,
        new_set_number: u32,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectChangeInputVariableLocation
    ///@brief  Assign a new location to an input interface variable.
    ///In addition to updating the reflection data, this function modifies
    ///the underlying SPIR-V bytecode. The updated code can be retrieved
    ///with spvReflectGetCode().
    ///It is the caller's responsibility to avoid assigning the same
    ///location to multiple input variables.  If the input variable is used
    ///by multiple entry points in the module, it will be changed in all of
    ///them.
    ///@param  p_module          Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_input_variable  Pointer to the input variable to update.
    ///@param  new_location      The new location to assign to p_input_variable.
    ///@return                   If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of
    ///the failure.
    pub fn spvReflectChangeInputVariableLocation(
        p_module: *mut SpvReflectShaderModule,
        p_input_variable: *const SpvReflectInterfaceVariable,
        new_location: u32,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectChangeOutputVariableLocation
    ///@brief  Assign a new location to an output interface variable.
    ///In addition to updating the reflection data, this function modifies
    ///the underlying SPIR-V bytecode. The updated code can be retrieved
    ///with spvReflectGetCode().
    ///It is the caller's responsibility to avoid assigning the same
    ///location to multiple output variables.  If the output variable is used
    ///by multiple entry points in the module, it will be changed in all of
    ///them.
    ///@param  p_module          Pointer to an instance of SpvReflectShaderModule.
    ///@param  p_output_variable  Pointer to the output variable to update.
    ///@param  new_location      The new location to assign to p_output_variable.
    ///@return                   If successful, returns SPV_REFLECT_RESULT_SUCCESS.
    ///Otherwise, the error code indicates the cause of
    ///the failure.
    pub fn spvReflectChangeOutputVariableLocation(
        p_module: *mut SpvReflectShaderModule,
        p_output_variable: *const SpvReflectInterfaceVariable,
        new_location: u32,
    ) -> SpvReflectResult;
}
extern "C" {
    /// @fn spvReflectSourceLanguage
    ///
    ///@param  source_lang  The source language code.
    ///@return Returns string of source language specified in \a source_lang.
    ///The caller must not free the memory associated with this string.
    pub fn spvReflectSourceLanguage(
        source_lang: SpvSourceLanguage,
    ) -> *const ::std::os::raw::c_char;
}