covk 0.1.2-1.4.346

Unsafe vulkan bindings for Rust
Documentation
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
// generated file, do not modify manually
/// `VK_KHR_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct surface;
impl surface {
    /// `VK_KHR_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_surface");
}
impl_ext! { surface }
/// `VK_KHR_swapchain`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct swapchain;
impl swapchain {
    /// `VK_KHR_swapchain`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_swapchain");
}
impl_ext! { swapchain }
/// `VK_KHR_display`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct display;
impl display {
    /// `VK_KHR_display`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_display");
}
impl_ext! { display }
/// `VK_KHR_display_swapchain`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct display_swapchain;
impl display_swapchain {
    /// `VK_KHR_display_swapchain`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_display_swapchain");
}
impl_ext! { display_swapchain }
/// `VK_KHR_xlib_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct xlib_surface;
impl xlib_surface {
    /// `VK_KHR_xlib_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_xlib_surface");
}
impl_ext! { xlib_surface }
/// `VK_KHR_xcb_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct xcb_surface;
impl xcb_surface {
    /// `VK_KHR_xcb_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_xcb_surface");
}
impl_ext! { xcb_surface }
/// `VK_KHR_wayland_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct wayland_surface;
impl wayland_surface {
    /// `VK_KHR_wayland_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_wayland_surface");
}
impl_ext! { wayland_surface }
/// `VK_KHR_android_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct android_surface;
impl android_surface {
    /// `VK_KHR_android_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_android_surface");
}
impl_ext! { android_surface }
/// `VK_KHR_win32_surface`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct win32_surface;
impl win32_surface {
    /// `VK_KHR_win32_surface`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_win32_surface");
}
impl_ext! { win32_surface }
/// `VK_KHR_sampler_mirror_clamp_to_edge`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct sampler_mirror_clamp_to_edge;
impl sampler_mirror_clamp_to_edge {
    /// `VK_KHR_sampler_mirror_clamp_to_edge`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_sampler_mirror_clamp_to_edge");
}
impl_ext! { sampler_mirror_clamp_to_edge }
/// `VK_KHR_video_queue`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_queue;
impl video_queue {
    /// `VK_KHR_video_queue`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_queue");
}
impl_ext! { video_queue }
/// `VK_KHR_video_decode_queue`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_decode_queue;
impl video_decode_queue {
    /// `VK_KHR_video_decode_queue`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_decode_queue");
}
impl_ext! { video_decode_queue }
/// `VK_KHR_video_encode_h264`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_h264;
impl video_encode_h264 {
    /// `VK_KHR_video_encode_h264`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_h264");
}
impl_ext! { video_encode_h264 }
/// `VK_KHR_video_encode_h265`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_h265;
impl video_encode_h265 {
    /// `VK_KHR_video_encode_h265`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_h265");
}
impl_ext! { video_encode_h265 }
/// `VK_KHR_video_decode_h264`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_decode_h264;
impl video_decode_h264 {
    /// `VK_KHR_video_decode_h264`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_decode_h264");
}
impl_ext! { video_decode_h264 }
/// `VK_KHR_dynamic_rendering`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct dynamic_rendering;
impl dynamic_rendering {
    /// `VK_KHR_dynamic_rendering`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_dynamic_rendering");
}
impl_ext! { dynamic_rendering }
/// `VK_KHR_multiview`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct multiview;
impl multiview {
    /// `VK_KHR_multiview`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_multiview");
}
impl_ext! { multiview }
/// `VK_KHR_get_physical_device_properties2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct get_physical_device_properties2;
impl get_physical_device_properties2 {
    /// `VK_KHR_get_physical_device_properties2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_get_physical_device_properties2");
}
impl_ext! { get_physical_device_properties2 }
/// `VK_KHR_device_group`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct device_group;
impl device_group {
    /// `VK_KHR_device_group`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_device_group");
}
impl_ext! { device_group }
/// `VK_KHR_shader_draw_parameters`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_draw_parameters;
impl shader_draw_parameters {
    /// `VK_KHR_shader_draw_parameters`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_draw_parameters");
}
impl_ext! { shader_draw_parameters }
/// `VK_KHR_maintenance1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance1;
impl maintenance1 {
    /// `VK_KHR_maintenance1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance1");
}
impl_ext! { maintenance1 }
/// `VK_KHR_device_group_creation`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct device_group_creation;
impl device_group_creation {
    /// `VK_KHR_device_group_creation`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_device_group_creation");
}
impl_ext! { device_group_creation }
/// `VK_KHR_external_memory_capabilities`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_memory_capabilities;
impl external_memory_capabilities {
    /// `VK_KHR_external_memory_capabilities`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_memory_capabilities");
}
impl_ext! { external_memory_capabilities }
/// `VK_KHR_external_memory`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_memory;
impl external_memory {
    /// `VK_KHR_external_memory`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_memory");
}
impl_ext! { external_memory }
/// `VK_KHR_external_memory_win32`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_memory_win32;
impl external_memory_win32 {
    /// `VK_KHR_external_memory_win32`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_memory_win32");
}
impl_ext! { external_memory_win32 }
/// `VK_KHR_external_memory_fd`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_memory_fd;
impl external_memory_fd {
    /// `VK_KHR_external_memory_fd`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_memory_fd");
}
impl_ext! { external_memory_fd }
/// `VK_KHR_win32_keyed_mutex`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct win32_keyed_mutex;
impl win32_keyed_mutex {
    /// `VK_KHR_win32_keyed_mutex`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_win32_keyed_mutex");
}
impl_ext! { win32_keyed_mutex }
/// `VK_KHR_external_semaphore_capabilities`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_semaphore_capabilities;
impl external_semaphore_capabilities {
    /// `VK_KHR_external_semaphore_capabilities`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_semaphore_capabilities");
}
impl_ext! { external_semaphore_capabilities }
/// `VK_KHR_external_semaphore`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_semaphore;
impl external_semaphore {
    /// `VK_KHR_external_semaphore`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_semaphore");
}
impl_ext! { external_semaphore }
/// `VK_KHR_external_semaphore_win32`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_semaphore_win32;
impl external_semaphore_win32 {
    /// `VK_KHR_external_semaphore_win32`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_semaphore_win32");
}
impl_ext! { external_semaphore_win32 }
/// `VK_KHR_external_semaphore_fd`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_semaphore_fd;
impl external_semaphore_fd {
    /// `VK_KHR_external_semaphore_fd`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_semaphore_fd");
}
impl_ext! { external_semaphore_fd }
/// `VK_KHR_push_descriptor`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct push_descriptor;
impl push_descriptor {
    /// `VK_KHR_push_descriptor`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_push_descriptor");
}
impl_ext! { push_descriptor }
/// `VK_KHR_shader_float16_int8`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_float16_int8;
impl shader_float16_int8 {
    /// `VK_KHR_shader_float16_int8`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_float16_int8");
}
impl_ext! { shader_float16_int8 }
/// `VK_KHR_16bit_storage`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct _16bit_storage;
impl _16bit_storage {
    /// `VK_KHR_16bit_storage`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_16bit_storage");
}
impl_ext! { _16bit_storage }
/// `VK_KHR_incremental_present`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct incremental_present;
impl incremental_present {
    /// `VK_KHR_incremental_present`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_incremental_present");
}
impl_ext! { incremental_present }
/// `VK_KHR_descriptor_update_template`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct descriptor_update_template;
impl descriptor_update_template {
    /// `VK_KHR_descriptor_update_template`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_descriptor_update_template");
}
impl_ext! { descriptor_update_template }
/// `VK_KHR_imageless_framebuffer`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct imageless_framebuffer;
impl imageless_framebuffer {
    /// `VK_KHR_imageless_framebuffer`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_imageless_framebuffer");
}
impl_ext! { imageless_framebuffer }
/// `VK_KHR_create_renderpass2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct create_renderpass2;
impl create_renderpass2 {
    /// `VK_KHR_create_renderpass2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_create_renderpass2");
}
impl_ext! { create_renderpass2 }
/// `VK_KHR_shared_presentable_image`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shared_presentable_image;
impl shared_presentable_image {
    /// `VK_KHR_shared_presentable_image`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shared_presentable_image");
}
impl_ext! { shared_presentable_image }
/// `VK_KHR_external_fence_capabilities`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_fence_capabilities;
impl external_fence_capabilities {
    /// `VK_KHR_external_fence_capabilities`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_fence_capabilities");
}
impl_ext! { external_fence_capabilities }
/// `VK_KHR_external_fence`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_fence;
impl external_fence {
    /// `VK_KHR_external_fence`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_fence");
}
impl_ext! { external_fence }
/// `VK_KHR_external_fence_win32`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_fence_win32;
impl external_fence_win32 {
    /// `VK_KHR_external_fence_win32`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_fence_win32");
}
impl_ext! { external_fence_win32 }
/// `VK_KHR_external_fence_fd`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct external_fence_fd;
impl external_fence_fd {
    /// `VK_KHR_external_fence_fd`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_external_fence_fd");
}
impl_ext! { external_fence_fd }
/// `VK_KHR_performance_query`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct performance_query;
impl performance_query {
    /// `VK_KHR_performance_query`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_performance_query");
}
impl_ext! { performance_query }
/// `VK_KHR_maintenance2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance2;
impl maintenance2 {
    /// `VK_KHR_maintenance2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance2");
}
impl_ext! { maintenance2 }
/// `VK_KHR_get_surface_capabilities2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct get_surface_capabilities2;
impl get_surface_capabilities2 {
    /// `VK_KHR_get_surface_capabilities2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_get_surface_capabilities2");
}
impl_ext! { get_surface_capabilities2 }
/// `VK_KHR_variable_pointers`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct variable_pointers;
impl variable_pointers {
    /// `VK_KHR_variable_pointers`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_variable_pointers");
}
impl_ext! { variable_pointers }
/// `VK_KHR_get_display_properties2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct get_display_properties2;
impl get_display_properties2 {
    /// `VK_KHR_get_display_properties2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_get_display_properties2");
}
impl_ext! { get_display_properties2 }
/// `VK_KHR_dedicated_allocation`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct dedicated_allocation;
impl dedicated_allocation {
    /// `VK_KHR_dedicated_allocation`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_dedicated_allocation");
}
impl_ext! { dedicated_allocation }
/// `VK_KHR_storage_buffer_storage_class`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct storage_buffer_storage_class;
impl storage_buffer_storage_class {
    /// `VK_KHR_storage_buffer_storage_class`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_storage_buffer_storage_class");
}
impl_ext! { storage_buffer_storage_class }
/// `VK_KHR_shader_bfloat16`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_bfloat16;
impl shader_bfloat16 {
    /// `VK_KHR_shader_bfloat16`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_bfloat16");
}
impl_ext! { shader_bfloat16 }
/// `VK_KHR_relaxed_block_layout`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct relaxed_block_layout;
impl relaxed_block_layout {
    /// `VK_KHR_relaxed_block_layout`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_relaxed_block_layout");
}
impl_ext! { relaxed_block_layout }
/// `VK_KHR_get_memory_requirements2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct get_memory_requirements2;
impl get_memory_requirements2 {
    /// `VK_KHR_get_memory_requirements2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_get_memory_requirements2");
}
impl_ext! { get_memory_requirements2 }
/// `VK_KHR_image_format_list`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct image_format_list;
impl image_format_list {
    /// `VK_KHR_image_format_list`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_image_format_list");
}
impl_ext! { image_format_list }
/// `VK_KHR_acceleration_structure`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct acceleration_structure;
impl acceleration_structure {
    /// `VK_KHR_acceleration_structure`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_acceleration_structure");
}
impl_ext! { acceleration_structure }
/// `VK_KHR_sampler_ycbcr_conversion`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct sampler_ycbcr_conversion;
impl sampler_ycbcr_conversion {
    /// `VK_KHR_sampler_ycbcr_conversion`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_sampler_ycbcr_conversion");
}
impl_ext! { sampler_ycbcr_conversion }
/// `VK_KHR_bind_memory2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct bind_memory2;
impl bind_memory2 {
    /// `VK_KHR_bind_memory2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_bind_memory2");
}
impl_ext! { bind_memory2 }
/// `VK_KHR_portability_subset`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct portability_subset;
impl portability_subset {
    /// `VK_KHR_portability_subset`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_portability_subset");
}
impl_ext! { portability_subset }
/// `VK_KHR_maintenance3`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance3;
impl maintenance3 {
    /// `VK_KHR_maintenance3`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance3");
}
impl_ext! { maintenance3 }
/// `VK_KHR_draw_indirect_count`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct draw_indirect_count;
impl draw_indirect_count {
    /// `VK_KHR_draw_indirect_count`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_draw_indirect_count");
}
impl_ext! { draw_indirect_count }
/// `VK_KHR_shader_subgroup_extended_types`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_subgroup_extended_types;
impl shader_subgroup_extended_types {
    /// `VK_KHR_shader_subgroup_extended_types`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_subgroup_extended_types");
}
impl_ext! { shader_subgroup_extended_types }
/// `VK_KHR_8bit_storage`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct _8bit_storage;
impl _8bit_storage {
    /// `VK_KHR_8bit_storage`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_8bit_storage");
}
impl_ext! { _8bit_storage }
/// `VK_KHR_shader_atomic_int64`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_atomic_int64;
impl shader_atomic_int64 {
    /// `VK_KHR_shader_atomic_int64`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_atomic_int64");
}
impl_ext! { shader_atomic_int64 }
/// `VK_KHR_shader_clock`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_clock;
impl shader_clock {
    /// `VK_KHR_shader_clock`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_clock");
}
impl_ext! { shader_clock }
/// `VK_KHR_video_decode_h265`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_decode_h265;
impl video_decode_h265 {
    /// `VK_KHR_video_decode_h265`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_decode_h265");
}
impl_ext! { video_decode_h265 }
/// `VK_KHR_global_priority`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct global_priority;
impl global_priority {
    /// `VK_KHR_global_priority`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_global_priority");
}
impl_ext! { global_priority }
/// `VK_KHR_driver_properties`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct driver_properties;
impl driver_properties {
    /// `VK_KHR_driver_properties`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_driver_properties");
}
impl_ext! { driver_properties }
/// `VK_KHR_shader_float_controls`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_float_controls;
impl shader_float_controls {
    /// `VK_KHR_shader_float_controls`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_float_controls");
}
impl_ext! { shader_float_controls }
/// `VK_KHR_depth_stencil_resolve`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct depth_stencil_resolve;
impl depth_stencil_resolve {
    /// `VK_KHR_depth_stencil_resolve`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_depth_stencil_resolve");
}
impl_ext! { depth_stencil_resolve }
/// `VK_KHR_swapchain_mutable_format`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct swapchain_mutable_format;
impl swapchain_mutable_format {
    /// `VK_KHR_swapchain_mutable_format`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_swapchain_mutable_format");
}
impl_ext! { swapchain_mutable_format }
/// `VK_KHR_timeline_semaphore`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct timeline_semaphore;
impl timeline_semaphore {
    /// `VK_KHR_timeline_semaphore`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_timeline_semaphore");
}
impl_ext! { timeline_semaphore }
/// `VK_KHR_vulkan_memory_model`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct vulkan_memory_model;
impl vulkan_memory_model {
    /// `VK_KHR_vulkan_memory_model`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_vulkan_memory_model");
}
impl_ext! { vulkan_memory_model }
/// `VK_KHR_shader_terminate_invocation`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_terminate_invocation;
impl shader_terminate_invocation {
    /// `VK_KHR_shader_terminate_invocation`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_terminate_invocation");
}
impl_ext! { shader_terminate_invocation }
/// `VK_KHR_fragment_shading_rate`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct fragment_shading_rate;
impl fragment_shading_rate {
    /// `VK_KHR_fragment_shading_rate`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_fragment_shading_rate");
}
impl_ext! { fragment_shading_rate }
/// `VK_KHR_dynamic_rendering_local_read`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct dynamic_rendering_local_read;
impl dynamic_rendering_local_read {
    /// `VK_KHR_dynamic_rendering_local_read`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_dynamic_rendering_local_read");
}
impl_ext! { dynamic_rendering_local_read }
/// `VK_KHR_shader_quad_control`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_quad_control;
impl shader_quad_control {
    /// `VK_KHR_shader_quad_control`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_quad_control");
}
impl_ext! { shader_quad_control }
/// `VK_KHR_spirv_1_4`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct spirv_1_4;
impl spirv_1_4 {
    /// `VK_KHR_spirv_1_4`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_spirv_1_4");
}
impl_ext! { spirv_1_4 }
/// `VK_KHR_surface_protected_capabilities`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct surface_protected_capabilities;
impl surface_protected_capabilities {
    /// `VK_KHR_surface_protected_capabilities`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_surface_protected_capabilities");
}
impl_ext! { surface_protected_capabilities }
/// `VK_KHR_separate_depth_stencil_layouts`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct separate_depth_stencil_layouts;
impl separate_depth_stencil_layouts {
    /// `VK_KHR_separate_depth_stencil_layouts`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_separate_depth_stencil_layouts");
}
impl_ext! { separate_depth_stencil_layouts }
/// `VK_KHR_present_wait`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct present_wait;
impl present_wait {
    /// `VK_KHR_present_wait`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_present_wait");
}
impl_ext! { present_wait }
/// `VK_KHR_uniform_buffer_standard_layout`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct uniform_buffer_standard_layout;
impl uniform_buffer_standard_layout {
    /// `VK_KHR_uniform_buffer_standard_layout`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_uniform_buffer_standard_layout");
}
impl_ext! { uniform_buffer_standard_layout }
/// `VK_KHR_buffer_device_address`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct buffer_device_address;
impl buffer_device_address {
    /// `VK_KHR_buffer_device_address`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_buffer_device_address");
}
impl_ext! { buffer_device_address }
/// `VK_KHR_deferred_host_operations`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct deferred_host_operations;
impl deferred_host_operations {
    /// `VK_KHR_deferred_host_operations`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_deferred_host_operations");
}
impl_ext! { deferred_host_operations }
/// `VK_KHR_pipeline_executable_properties`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct pipeline_executable_properties;
impl pipeline_executable_properties {
    /// `VK_KHR_pipeline_executable_properties`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_pipeline_executable_properties");
}
impl_ext! { pipeline_executable_properties }
/// `VK_KHR_map_memory2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct map_memory2;
impl map_memory2 {
    /// `VK_KHR_map_memory2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_map_memory2");
}
impl_ext! { map_memory2 }
/// `VK_KHR_shader_integer_dot_product`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_integer_dot_product;
impl shader_integer_dot_product {
    /// `VK_KHR_shader_integer_dot_product`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_integer_dot_product");
}
impl_ext! { shader_integer_dot_product }
/// `VK_KHR_pipeline_library`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct pipeline_library;
impl pipeline_library {
    /// `VK_KHR_pipeline_library`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_pipeline_library");
}
impl_ext! { pipeline_library }
/// `VK_KHR_shader_non_semantic_info`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_non_semantic_info;
impl shader_non_semantic_info {
    /// `VK_KHR_shader_non_semantic_info`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_non_semantic_info");
}
impl_ext! { shader_non_semantic_info }
/// `VK_KHR_present_id`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct present_id;
impl present_id {
    /// `VK_KHR_present_id`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_present_id");
}
impl_ext! { present_id }
/// `VK_KHR_video_encode_queue`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_queue;
impl video_encode_queue {
    /// `VK_KHR_video_encode_queue`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_queue");
}
impl_ext! { video_encode_queue }
/// `VK_KHR_object_refresh`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct object_refresh;
impl object_refresh {
    /// `VK_KHR_object_refresh`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_object_refresh");
}
impl_ext! { object_refresh }
/// `VK_KHR_synchronization2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct synchronization2;
impl synchronization2 {
    /// `VK_KHR_synchronization2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_synchronization2");
}
impl_ext! { synchronization2 }
/// `VK_KHR_device_address_commands`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct device_address_commands;
impl device_address_commands {
    /// `VK_KHR_device_address_commands`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_device_address_commands");
}
impl_ext! { device_address_commands }
/// `VK_KHR_fragment_shader_barycentric`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct fragment_shader_barycentric;
impl fragment_shader_barycentric {
    /// `VK_KHR_fragment_shader_barycentric`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_fragment_shader_barycentric");
}
impl_ext! { fragment_shader_barycentric }
/// `VK_KHR_shader_subgroup_uniform_control_flow`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_subgroup_uniform_control_flow;
impl shader_subgroup_uniform_control_flow {
    /// `VK_KHR_shader_subgroup_uniform_control_flow`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_subgroup_uniform_control_flow");
}
impl_ext! { shader_subgroup_uniform_control_flow }
/// `VK_KHR_zero_initialize_workgroup_memory`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct zero_initialize_workgroup_memory;
impl zero_initialize_workgroup_memory {
    /// `VK_KHR_zero_initialize_workgroup_memory`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_zero_initialize_workgroup_memory");
}
impl_ext! { zero_initialize_workgroup_memory }
/// `VK_KHR_workgroup_memory_explicit_layout`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct workgroup_memory_explicit_layout;
impl workgroup_memory_explicit_layout {
    /// `VK_KHR_workgroup_memory_explicit_layout`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_workgroup_memory_explicit_layout");
}
impl_ext! { workgroup_memory_explicit_layout }
/// `VK_KHR_copy_commands2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct copy_commands2;
impl copy_commands2 {
    /// `VK_KHR_copy_commands2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_copy_commands2");
}
impl_ext! { copy_commands2 }
/// `VK_KHR_ray_tracing_pipeline`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct ray_tracing_pipeline;
impl ray_tracing_pipeline {
    /// `VK_KHR_ray_tracing_pipeline`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_ray_tracing_pipeline");
}
impl_ext! { ray_tracing_pipeline }
/// `VK_KHR_ray_query`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct ray_query;
impl ray_query {
    /// `VK_KHR_ray_query`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_ray_query");
}
impl_ext! { ray_query }
/// `VK_KHR_format_feature_flags2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct format_feature_flags2;
impl format_feature_flags2 {
    /// `VK_KHR_format_feature_flags2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_format_feature_flags2");
}
impl_ext! { format_feature_flags2 }
/// `VK_KHR_ray_tracing_maintenance1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct ray_tracing_maintenance1;
impl ray_tracing_maintenance1 {
    /// `VK_KHR_ray_tracing_maintenance1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_ray_tracing_maintenance1");
}
impl_ext! { ray_tracing_maintenance1 }
/// `VK_KHR_shader_untyped_pointers`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_untyped_pointers;
impl shader_untyped_pointers {
    /// `VK_KHR_shader_untyped_pointers`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_untyped_pointers");
}
impl_ext! { shader_untyped_pointers }
/// `VK_KHR_portability_enumeration`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct portability_enumeration;
impl portability_enumeration {
    /// `VK_KHR_portability_enumeration`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_portability_enumeration");
}
impl_ext! { portability_enumeration }
/// `VK_KHR_maintenance4`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance4;
impl maintenance4 {
    /// `VK_KHR_maintenance4`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance4");
}
impl_ext! { maintenance4 }
/// `VK_KHR_shader_subgroup_rotate`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_subgroup_rotate;
impl shader_subgroup_rotate {
    /// `VK_KHR_shader_subgroup_rotate`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_subgroup_rotate");
}
impl_ext! { shader_subgroup_rotate }
/// `VK_KHR_shader_maximal_reconvergence`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_maximal_reconvergence;
impl shader_maximal_reconvergence {
    /// `VK_KHR_shader_maximal_reconvergence`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_maximal_reconvergence");
}
impl_ext! { shader_maximal_reconvergence }
/// `VK_KHR_maintenance5`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance5;
impl maintenance5 {
    /// `VK_KHR_maintenance5`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance5");
}
impl_ext! { maintenance5 }
/// `VK_KHR_present_id2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct present_id2;
impl present_id2 {
    /// `VK_KHR_present_id2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_present_id2");
}
impl_ext! { present_id2 }
/// `VK_KHR_present_wait2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct present_wait2;
impl present_wait2 {
    /// `VK_KHR_present_wait2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_present_wait2");
}
impl_ext! { present_wait2 }
/// `VK_KHR_ray_tracing_position_fetch`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct ray_tracing_position_fetch;
impl ray_tracing_position_fetch {
    /// `VK_KHR_ray_tracing_position_fetch`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_ray_tracing_position_fetch");
}
impl_ext! { ray_tracing_position_fetch }
/// `VK_KHR_pipeline_binary`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct pipeline_binary;
impl pipeline_binary {
    /// `VK_KHR_pipeline_binary`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_pipeline_binary");
}
impl_ext! { pipeline_binary }
/// `VK_KHR_surface_maintenance1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct surface_maintenance1;
impl surface_maintenance1 {
    /// `VK_KHR_surface_maintenance1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_surface_maintenance1");
}
impl_ext! { surface_maintenance1 }
/// `VK_KHR_swapchain_maintenance1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct swapchain_maintenance1;
impl swapchain_maintenance1 {
    /// `VK_KHR_swapchain_maintenance1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_swapchain_maintenance1");
}
impl_ext! { swapchain_maintenance1 }
/// `VK_KHR_internally_synchronized_queues`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct internally_synchronized_queues;
impl internally_synchronized_queues {
    /// `VK_KHR_internally_synchronized_queues`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_internally_synchronized_queues");
}
impl_ext! { internally_synchronized_queues }
/// `VK_KHR_cooperative_matrix`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct cooperative_matrix;
impl cooperative_matrix {
    /// `VK_KHR_cooperative_matrix`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_cooperative_matrix");
}
impl_ext! { cooperative_matrix }
/// `VK_KHR_compute_shader_derivatives`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct compute_shader_derivatives;
impl compute_shader_derivatives {
    /// `VK_KHR_compute_shader_derivatives`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_compute_shader_derivatives");
}
impl_ext! { compute_shader_derivatives }
/// `VK_KHR_video_decode_av1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_decode_av1;
impl video_decode_av1 {
    /// `VK_KHR_video_decode_av1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_decode_av1");
}
impl_ext! { video_decode_av1 }
/// `VK_KHR_video_encode_av1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_av1;
impl video_encode_av1 {
    /// `VK_KHR_video_encode_av1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_av1");
}
impl_ext! { video_encode_av1 }
/// `VK_KHR_video_decode_vp9`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_decode_vp9;
impl video_decode_vp9 {
    /// `VK_KHR_video_decode_vp9`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_decode_vp9");
}
impl_ext! { video_decode_vp9 }
/// `VK_KHR_video_maintenance1`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_maintenance1;
impl video_maintenance1 {
    /// `VK_KHR_video_maintenance1`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_maintenance1");
}
impl_ext! { video_maintenance1 }
/// `VK_KHR_vertex_attribute_divisor`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct vertex_attribute_divisor;
impl vertex_attribute_divisor {
    /// `VK_KHR_vertex_attribute_divisor`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_vertex_attribute_divisor");
}
impl_ext! { vertex_attribute_divisor }
/// `VK_KHR_load_store_op_none`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct load_store_op_none;
impl load_store_op_none {
    /// `VK_KHR_load_store_op_none`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_load_store_op_none");
}
impl_ext! { load_store_op_none }
/// `VK_KHR_unified_image_layouts`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct unified_image_layouts;
impl unified_image_layouts {
    /// `VK_KHR_unified_image_layouts`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_unified_image_layouts");
}
impl_ext! { unified_image_layouts }
/// `VK_KHR_shader_float_controls2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_float_controls2;
impl shader_float_controls2 {
    /// `VK_KHR_shader_float_controls2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_float_controls2");
}
impl_ext! { shader_float_controls2 }
/// `VK_KHR_index_type_uint8`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct index_type_uint8;
impl index_type_uint8 {
    /// `VK_KHR_index_type_uint8`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_index_type_uint8");
}
impl_ext! { index_type_uint8 }
/// `VK_KHR_line_rasterization`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct line_rasterization;
impl line_rasterization {
    /// `VK_KHR_line_rasterization`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_line_rasterization");
}
impl_ext! { line_rasterization }
/// `VK_KHR_calibrated_timestamps`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct calibrated_timestamps;
impl calibrated_timestamps {
    /// `VK_KHR_calibrated_timestamps`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_calibrated_timestamps");
}
impl_ext! { calibrated_timestamps }
/// `VK_KHR_shader_expect_assume`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_expect_assume;
impl shader_expect_assume {
    /// `VK_KHR_shader_expect_assume`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_expect_assume");
}
impl_ext! { shader_expect_assume }
/// `VK_KHR_maintenance6`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance6;
impl maintenance6 {
    /// `VK_KHR_maintenance6`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance6");
}
impl_ext! { maintenance6 }
/// `VK_KHR_copy_memory_indirect`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct copy_memory_indirect;
impl copy_memory_indirect {
    /// `VK_KHR_copy_memory_indirect`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_copy_memory_indirect");
}
impl_ext! { copy_memory_indirect }
/// `VK_KHR_video_encode_intra_refresh`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_intra_refresh;
impl video_encode_intra_refresh {
    /// `VK_KHR_video_encode_intra_refresh`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_intra_refresh");
}
impl_ext! { video_encode_intra_refresh }
/// `VK_KHR_video_encode_quantization_map`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_encode_quantization_map;
impl video_encode_quantization_map {
    /// `VK_KHR_video_encode_quantization_map`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_encode_quantization_map");
}
impl_ext! { video_encode_quantization_map }
/// `VK_KHR_shader_relaxed_extended_instruction`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_relaxed_extended_instruction;
impl shader_relaxed_extended_instruction {
    /// `VK_KHR_shader_relaxed_extended_instruction`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_relaxed_extended_instruction");
}
impl_ext! { shader_relaxed_extended_instruction }
/// `VK_KHR_maintenance7`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance7;
impl maintenance7 {
    /// `VK_KHR_maintenance7`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance7");
}
impl_ext! { maintenance7 }
/// `VK_KHR_maintenance8`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance8;
impl maintenance8 {
    /// `VK_KHR_maintenance8`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance8");
}
impl_ext! { maintenance8 }
/// `VK_KHR_shader_fma`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct shader_fma;
impl shader_fma {
    /// `VK_KHR_shader_fma`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_shader_fma");
}
impl_ext! { shader_fma }
/// `VK_KHR_maintenance9`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance9;
impl maintenance9 {
    /// `VK_KHR_maintenance9`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance9");
}
impl_ext! { maintenance9 }
/// `VK_KHR_video_maintenance2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct video_maintenance2;
impl video_maintenance2 {
    /// `VK_KHR_video_maintenance2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_video_maintenance2");
}
impl_ext! { video_maintenance2 }
/// `VK_KHR_depth_clamp_zero_one`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct depth_clamp_zero_one;
impl depth_clamp_zero_one {
    /// `VK_KHR_depth_clamp_zero_one`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_depth_clamp_zero_one");
}
impl_ext! { depth_clamp_zero_one }
/// `VK_KHR_robustness2`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct robustness2;
impl robustness2 {
    /// `VK_KHR_robustness2`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_robustness2");
}
impl_ext! { robustness2 }
/// `VK_KHR_present_mode_fifo_latest_ready`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct present_mode_fifo_latest_ready;
impl present_mode_fifo_latest_ready {
    /// `VK_KHR_present_mode_fifo_latest_ready`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_present_mode_fifo_latest_ready");
}
impl_ext! { present_mode_fifo_latest_ready }
/// `VK_KHR_maintenance10`
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct maintenance10;
impl maintenance10 {
    /// `VK_KHR_maintenance10`;
    pub const NAME: crate::ExtName<'static> = crate::e!("VK_KHR_maintenance10");
}
impl_ext! { maintenance10 }