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
// Copyright (c) 2016 The vulkano developers
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>,
// at your option. All files in the project carrying such
// notice may not be copied, modified, or distributed except
// according to those terms.

//! The layout of descriptor sets and push constants used by a pipeline.
//!
//! # Overview
//!
//! The layout itself only *describes* the descriptors and push constants, and does not contain
//! their content itself. Instead, you can think of it as a `struct` definition that states which
//! members there are, what types they have, and in what order.
//! One could imagine a Rust definition somewhat like this:
//!
//! ```text
//! #[repr(C)]
//! struct MyPipelineLayout {
//!     push_constants: Pc,
//!     descriptor_set0: Ds0,
//!     descriptor_set1: Ds1,
//!     descriptor_set2: Ds2,
//!     descriptor_set3: Ds3,
//! }
//! ```
//!
//! Of course, a pipeline layout is created at runtime, unlike a Rust type.
//!
//! # Layout compatibility
//!
//! When binding descriptor sets or setting push constants, you must provide a pipeline layout.
//! This layout is used to decide where in memory Vulkan should write the new data. The
//! descriptor sets and push constants can later be read by dispatch or draw calls, but only if
//! the bound pipeline being used for the command has a layout that is *compatible* with the layout
//! that was used to bind the resources.
//!
//! *Compatible* means that the pipeline layout must be the same object, or a different layout in
//! which the push constant ranges and descriptor set layouts were be identically defined.
//! However, Vulkan allows for partial compatibility as well. In the `struct` analogy used above,
//! one could imagine that using a different definition would leave some members with the same
//! offset and size within the struct as in the old definition, while others are no longer
//! positioned correctly. For example, if a new, incompatible type were used for `Ds1`, then the
//! `descriptor_set1`, `descriptor_set2` and `descriptor_set3` members would no longer be correct,
//! but `descriptor_set0` and `push_constants` would remain accessible in the new layout.
//! Because of this behaviour, the following rules apply to compatibility between the layouts used
//! in subsequent descriptor set binding calls:
//!
//! - An incompatible definition of `Pc` invalidates all bound descriptor sets.
//! - An incompatible definition of `DsN` invalidates all bound descriptor sets *N* and higher.
//! - If *N* is the highest set being assigned in a bind command, and it and all lower sets
//!   have compatible definitions, including the push constants, then descriptor sets above *N*
//!   remain valid.
//!
//! [`SyncCommandBufferBuilder`](crate::command_buffer::synced::SyncCommandBufferBuilder) keeps
//! track of this state and will automatically remove descriptor sets that have been invalidated
//! by incompatible layouts in subsequent binding commands.
//!
//! # Creating pipeline layouts
//!
//! A pipeline layout is a Vulkan object type, represented in Vulkano with the `PipelineLayout`
//! type. Each pipeline that you create holds a pipeline layout object.

use crate::{
    descriptor_set::layout::{DescriptorRequirementsNotMet, DescriptorSetLayout, DescriptorType},
    device::{Device, DeviceOwned},
    shader::{DescriptorRequirements, ShaderStages},
    OomError, RequirementNotMet, RequiresOneOf, VulkanError, VulkanObject,
};
use smallvec::SmallVec;
use std::{
    error::Error,
    fmt::{Display, Error as FmtError, Formatter},
    mem::MaybeUninit,
    num::NonZeroU64,
    ptr,
    sync::Arc,
};

/// Describes the layout of descriptor sets and push constants that are made available to shaders.
#[derive(Debug)]
pub struct PipelineLayout {
    handle: ash::vk::PipelineLayout,
    device: Arc<Device>,
    id: NonZeroU64,

    set_layouts: Vec<Arc<DescriptorSetLayout>>,
    push_constant_ranges: Vec<PushConstantRange>,

    push_constant_ranges_disjoint: Vec<PushConstantRange>,
}

impl PipelineLayout {
    /// Creates a new `PipelineLayout`.
    ///
    /// # Panics
    ///
    /// - Panics if an element of `create_info.push_constant_ranges` has an empty `stages` value.
    /// - Panics if an element of `create_info.push_constant_ranges` has an `offset` or `size`
    ///   that's not divisible by 4.
    /// - Panics if an element of `create_info.push_constant_ranges` has an `size` of zero.
    pub fn new(
        device: Arc<Device>,
        mut create_info: PipelineLayoutCreateInfo,
    ) -> Result<Arc<PipelineLayout>, PipelineLayoutCreationError> {
        Self::validate(&device, &mut create_info)?;
        let handle = unsafe { Self::create(&device, &create_info)? };

        let PipelineLayoutCreateInfo {
            set_layouts,
            mut push_constant_ranges,
            _ne: _,
        } = create_info;

        // Sort the ranges for the purpose of comparing for equality.
        // The stage mask is guaranteed to be unique, so it's a suitable sorting key.
        push_constant_ranges.sort_unstable_by_key(|range| {
            (
                range.offset,
                range.size,
                ash::vk::ShaderStageFlags::from(range.stages),
            )
        });

        let push_constant_ranges_disjoint =
            Self::create_push_constant_ranges_disjoint(&push_constant_ranges);

        Ok(Arc::new(PipelineLayout {
            handle,
            device,
            id: Self::next_id(),
            set_layouts,
            push_constant_ranges,
            push_constant_ranges_disjoint,
        }))
    }

    fn create_push_constant_ranges_disjoint(
        push_constant_ranges: &Vec<PushConstantRange>,
    ) -> Vec<PushConstantRange> {
        let mut push_constant_ranges_disjoint: Vec<PushConstantRange> =
            Vec::with_capacity(push_constant_ranges.len());

        if !push_constant_ranges.is_empty() {
            let mut min_offset = push_constant_ranges[0].offset;
            loop {
                let mut max_offset = u32::MAX;
                let mut stages = ShaderStages::empty();

                for range in push_constant_ranges.iter() {
                    // new start (begin next time from it)
                    if range.offset > min_offset {
                        max_offset = max_offset.min(range.offset);
                        break;
                    } else if range.offset + range.size > min_offset {
                        // inside the range, include the stage
                        // use the minimum of the end of all ranges that are overlapping
                        max_offset = max_offset.min(range.offset + range.size);
                        stages |= range.stages;
                    }
                }
                // finished all stages
                if stages.is_empty() {
                    break;
                }

                push_constant_ranges_disjoint.push(PushConstantRange {
                    stages,
                    offset: min_offset,
                    size: max_offset - min_offset,
                });
                // prepare for next range
                min_offset = max_offset;
            }
        }
        push_constant_ranges_disjoint
    }

    fn validate(
        device: &Device,
        create_info: &mut PipelineLayoutCreateInfo,
    ) -> Result<(), PipelineLayoutCreationError> {
        let &mut PipelineLayoutCreateInfo {
            ref set_layouts,
            ref push_constant_ranges,
            _ne: _,
        } = create_info;

        let properties = device.physical_device().properties();

        /* Check descriptor set layouts */

        // VUID-VkPipelineLayoutCreateInfo-setLayoutCount-00286
        if set_layouts.len() > properties.max_bound_descriptor_sets as usize {
            return Err(
                PipelineLayoutCreationError::MaxBoundDescriptorSetsExceeded {
                    provided: set_layouts.len() as u32,
                    max_supported: properties.max_bound_descriptor_sets,
                },
            );
        }

        {
            let mut num_resources = Counter::default();
            let mut num_samplers = Counter::default();
            let mut num_uniform_buffers = Counter::default();
            let mut num_uniform_buffers_dynamic = 0;
            let mut num_storage_buffers = Counter::default();
            let mut num_storage_buffers_dynamic = 0;
            let mut num_sampled_images = Counter::default();
            let mut num_storage_images = Counter::default();
            let mut num_input_attachments = Counter::default();
            let mut push_descriptor_set = None;

            for (set_num, set_layout) in set_layouts.iter().enumerate() {
                let set_num = set_num as u32;

                if set_layout.push_descriptor() {
                    // VUID-VkPipelineLayoutCreateInfo-pSetLayouts-00293
                    if push_descriptor_set.is_some() {
                        return Err(PipelineLayoutCreationError::SetLayoutsPushDescriptorMultiple);
                    } else {
                        push_descriptor_set = Some(set_num);
                    }
                }

                for layout_binding in set_layout.bindings().values() {
                    num_resources
                        .increment(layout_binding.descriptor_count, &layout_binding.stages);

                    match layout_binding.descriptor_type {
                        DescriptorType::Sampler => {
                            num_samplers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::CombinedImageSampler => {
                            num_samplers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                            num_sampled_images
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::SampledImage | DescriptorType::UniformTexelBuffer => {
                            num_sampled_images
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::StorageImage | DescriptorType::StorageTexelBuffer => {
                            num_storage_images
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::UniformBuffer => {
                            num_uniform_buffers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::UniformBufferDynamic => {
                            num_uniform_buffers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                            num_uniform_buffers_dynamic += 1;
                        }
                        DescriptorType::StorageBuffer => {
                            num_storage_buffers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                        DescriptorType::StorageBufferDynamic => {
                            num_storage_buffers
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                            num_storage_buffers_dynamic += 1;
                        }
                        DescriptorType::InputAttachment => {
                            num_input_attachments
                                .increment(layout_binding.descriptor_count, &layout_binding.stages);
                        }
                    }
                }
            }

            if num_resources.max_per_stage() > properties.max_per_stage_resources {
                return Err(PipelineLayoutCreationError::MaxPerStageResourcesExceeded {
                    provided: num_resources.max_per_stage(),
                    max_supported: properties.max_per_stage_resources,
                });
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03016
            if num_samplers.max_per_stage() > properties.max_per_stage_descriptor_samplers {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorSamplersExceeded {
                        provided: num_samplers.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_samplers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03017
            if num_uniform_buffers.max_per_stage()
                > properties.max_per_stage_descriptor_uniform_buffers
            {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorUniformBuffersExceeded {
                        provided: num_uniform_buffers.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_uniform_buffers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03018
            if num_storage_buffers.max_per_stage()
                > properties.max_per_stage_descriptor_storage_buffers
            {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorStorageBuffersExceeded {
                        provided: num_storage_buffers.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_storage_buffers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03019
            if num_sampled_images.max_per_stage()
                > properties.max_per_stage_descriptor_sampled_images
            {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorSampledImagesExceeded {
                        provided: num_sampled_images.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_sampled_images,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03020
            if num_storage_images.max_per_stage()
                > properties.max_per_stage_descriptor_storage_images
            {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorStorageImagesExceeded {
                        provided: num_storage_images.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_storage_images,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03021
            if num_input_attachments.max_per_stage()
                > properties.max_per_stage_descriptor_input_attachments
            {
                return Err(
                    PipelineLayoutCreationError::MaxPerStageDescriptorInputAttachmentsExceeded {
                        provided: num_input_attachments.max_per_stage(),
                        max_supported: properties.max_per_stage_descriptor_input_attachments,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03028
            if num_samplers.total > properties.max_descriptor_set_samplers {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetSamplersExceeded {
                        provided: num_samplers.total,
                        max_supported: properties.max_descriptor_set_samplers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03029
            if num_uniform_buffers.total > properties.max_descriptor_set_uniform_buffers {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetUniformBuffersExceeded {
                        provided: num_uniform_buffers.total,
                        max_supported: properties.max_descriptor_set_uniform_buffers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03030
            if num_uniform_buffers_dynamic > properties.max_descriptor_set_uniform_buffers_dynamic {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetUniformBuffersDynamicExceeded {
                        provided: num_uniform_buffers_dynamic,
                        max_supported: properties.max_descriptor_set_uniform_buffers_dynamic,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03031
            if num_storage_buffers.total > properties.max_descriptor_set_storage_buffers {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetStorageBuffersExceeded {
                        provided: num_storage_buffers.total,
                        max_supported: properties.max_descriptor_set_storage_buffers,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03032
            if num_storage_buffers_dynamic > properties.max_descriptor_set_storage_buffers_dynamic {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetStorageBuffersDynamicExceeded {
                        provided: num_storage_buffers_dynamic,
                        max_supported: properties.max_descriptor_set_storage_buffers_dynamic,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03033
            if num_sampled_images.total > properties.max_descriptor_set_sampled_images {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetSampledImagesExceeded {
                        provided: num_sampled_images.total,
                        max_supported: properties.max_descriptor_set_sampled_images,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03034
            if num_storage_images.total > properties.max_descriptor_set_storage_images {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetStorageImagesExceeded {
                        provided: num_storage_images.total,
                        max_supported: properties.max_descriptor_set_storage_images,
                    },
                );
            }

            // VUID-VkPipelineLayoutCreateInfo-descriptorType-03035
            if num_input_attachments.total > properties.max_descriptor_set_input_attachments {
                return Err(
                    PipelineLayoutCreationError::MaxDescriptorSetInputAttachmentsExceeded {
                        provided: num_input_attachments.total,
                        max_supported: properties.max_descriptor_set_input_attachments,
                    },
                );
            }
        }

        /* Check push constant ranges */

        push_constant_ranges
            .iter()
            .try_fold(ShaderStages::empty(), |total, range| {
                let &PushConstantRange {
                    stages,
                    offset,
                    size,
                } = range;

                // VUID-VkPushConstantRange-stageFlags-parameter
                stages.validate_device(device)?;

                // VUID-VkPushConstantRange-stageFlags-requiredbitmask
                assert!(!stages.is_empty());

                // VUID-VkPushConstantRange-offset-00295
                assert!(offset % 4 == 0);

                // VUID-VkPushConstantRange-size-00296
                assert!(size != 0);

                // VUID-VkPushConstantRange-size-00297
                assert!(size % 4 == 0);

                // VUID-VkPushConstantRange-offset-00294
                // VUID-VkPushConstantRange-size-00298
                if offset + size > properties.max_push_constants_size {
                    return Err(PipelineLayoutCreationError::MaxPushConstantsSizeExceeded {
                        provided: offset + size,
                        max_supported: properties.max_push_constants_size,
                    });
                }

                // VUID-VkPipelineLayoutCreateInfo-pPushConstantRanges-00292
                if !(total & stages).is_empty() {
                    return Err(PipelineLayoutCreationError::PushConstantRangesStageMultiple);
                }

                Ok(total | stages)
            })?;

        Ok(())
    }

    unsafe fn create(
        device: &Device,
        create_info: &PipelineLayoutCreateInfo,
    ) -> Result<ash::vk::PipelineLayout, PipelineLayoutCreationError> {
        let PipelineLayoutCreateInfo {
            set_layouts,
            push_constant_ranges,
            _ne: _,
        } = create_info;

        let set_layouts: SmallVec<[_; 4]> = set_layouts.iter().map(|l| l.handle()).collect();

        let push_constant_ranges: SmallVec<[_; 4]> = push_constant_ranges
            .iter()
            .map(|range| ash::vk::PushConstantRange {
                stage_flags: range.stages.into(),
                offset: range.offset,
                size: range.size,
            })
            .collect();

        let create_info = ash::vk::PipelineLayoutCreateInfo {
            flags: ash::vk::PipelineLayoutCreateFlags::empty(),
            set_layout_count: set_layouts.len() as u32,
            p_set_layouts: set_layouts.as_ptr(),
            push_constant_range_count: push_constant_ranges.len() as u32,
            p_push_constant_ranges: push_constant_ranges.as_ptr(),
            ..Default::default()
        };

        let handle = {
            let fns = device.fns();
            let mut output = MaybeUninit::uninit();
            (fns.v1_0.create_pipeline_layout)(
                device.handle(),
                &create_info,
                ptr::null(),
                output.as_mut_ptr(),
            )
            .result()
            .map_err(VulkanError::from)?;
            output.assume_init()
        };

        Ok(handle)
    }

    /// Creates a new `PipelineLayout` from a raw object handle.
    ///
    /// # Safety
    ///
    /// - `handle` must be a valid Vulkan object handle created from `device`.
    /// - `create_info` must match the info used to create the object.
    #[inline]
    pub unsafe fn from_handle(
        device: Arc<Device>,
        handle: ash::vk::PipelineLayout,
        create_info: PipelineLayoutCreateInfo,
    ) -> Arc<PipelineLayout> {
        let PipelineLayoutCreateInfo {
            set_layouts,
            push_constant_ranges,
            _ne: _,
        } = create_info;

        let push_constant_ranges_disjoint =
            Self::create_push_constant_ranges_disjoint(&push_constant_ranges);

        Arc::new(PipelineLayout {
            handle,
            device,
            id: Self::next_id(),
            set_layouts,
            push_constant_ranges,
            push_constant_ranges_disjoint,
        })
    }

    /// Returns the descriptor set layouts this pipeline layout was created from.
    #[inline]
    pub fn set_layouts(&self) -> &[Arc<DescriptorSetLayout>] {
        &self.set_layouts
    }

    /// Returns a slice containing the push constant ranges this pipeline layout was created from.
    ///
    /// The ranges are guaranteed to be sorted deterministically by offset, size, then stages.
    /// This means that two slices containing the same elements will always have the same order.
    #[inline]
    pub fn push_constant_ranges(&self) -> &[PushConstantRange] {
        &self.push_constant_ranges
    }

    /// Returns a slice containing the push constant ranges in with all disjoint stages.
    ///
    /// For example, if we have these `push_constant_ranges`:
    /// - `offset=0, size=4, stages=vertex`
    /// - `offset=0, size=12, stages=fragment`
    ///
    /// The returned value will be:
    /// - `offset=0, size=4, stages=vertex|fragment`
    /// - `offset=4, size=8, stages=fragment`
    ///
    /// The ranges are guaranteed to be sorted deterministically by offset, and
    /// guaranteed to be disjoint, meaning that there is no overlap between the ranges.
    #[inline]
    pub(crate) fn push_constant_ranges_disjoint(&self) -> &[PushConstantRange] {
        &self.push_constant_ranges_disjoint
    }

    /// Returns whether `self` is compatible with `other` for the given number of sets.
    #[inline]
    pub fn is_compatible_with(&self, other: &PipelineLayout, num_sets: u32) -> bool {
        let num_sets = num_sets as usize;
        assert!(num_sets >= self.set_layouts.len());

        if self == other {
            return true;
        }

        if self.push_constant_ranges != other.push_constant_ranges {
            return false;
        }

        let other_sets = match other.set_layouts.get(0..num_sets) {
            Some(x) => x,
            None => return false,
        };

        self.set_layouts
            .iter()
            .zip(other_sets)
            .all(|(self_set_layout, other_set_layout)| {
                self_set_layout.is_compatible_with(other_set_layout)
            })
    }

    /// Makes sure that `self` is a superset of the provided descriptor set layouts and push
    /// constant ranges. Returns an `Err` if this is not the case.
    pub fn ensure_compatible_with_shader<'a>(
        &self,
        descriptor_requirements: impl IntoIterator<Item = ((u32, u32), &'a DescriptorRequirements)>,
        push_constant_range: Option<&PushConstantRange>,
    ) -> Result<(), PipelineLayoutSupersetError> {
        for ((set_num, binding_num), reqs) in descriptor_requirements.into_iter() {
            let layout_binding = self
                .set_layouts
                .get(set_num as usize)
                .and_then(|set_layout| set_layout.bindings().get(&binding_num));

            let layout_binding = match layout_binding {
                Some(x) => x,
                None => {
                    return Err(PipelineLayoutSupersetError::DescriptorMissing {
                        set_num,
                        binding_num,
                    })
                }
            };

            if let Err(error) = layout_binding.ensure_compatible_with_shader(reqs) {
                return Err(PipelineLayoutSupersetError::DescriptorRequirementsNotMet {
                    set_num,
                    binding_num,
                    error,
                });
            }
        }

        // FIXME: check push constants
        if let Some(range) = push_constant_range {
            for own_range in self.push_constant_ranges.iter() {
                if range.stages.intersects(&own_range.stages) &&       // check if it shares any stages
                    (range.offset < own_range.offset || // our range must start before and end after the given range
                        own_range.offset + own_range.size < range.offset + range.size)
                {
                    return Err(PipelineLayoutSupersetError::PushConstantRange {
                        first_range: *own_range,
                        second_range: *range,
                    });
                }
            }
        }

        Ok(())
    }
}

impl Drop for PipelineLayout {
    #[inline]
    fn drop(&mut self) {
        unsafe {
            let fns = self.device.fns();
            (fns.v1_0.destroy_pipeline_layout)(self.device.handle(), self.handle, ptr::null());
        }
    }
}

unsafe impl VulkanObject for PipelineLayout {
    type Handle = ash::vk::PipelineLayout;

    #[inline]
    fn handle(&self) -> Self::Handle {
        self.handle
    }
}

unsafe impl DeviceOwned for PipelineLayout {
    #[inline]
    fn device(&self) -> &Arc<Device> {
        &self.device
    }
}

crate::impl_id_counter!(PipelineLayout);

/// Error that can happen when creating a pipeline layout.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum PipelineLayoutCreationError {
    /// Not enough memory.
    OomError(OomError),

    RequirementNotMet {
        required_for: &'static str,
        requires_one_of: RequiresOneOf,
    },

    /// The number of elements in `set_layouts` is greater than the
    /// [`max_bound_descriptor_sets`](crate::device::Properties::max_bound_descriptor_sets) limit.
    MaxBoundDescriptorSetsExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::Sampler`],
    /// [`DescriptorType::CombinedImageSampler`] and [`DescriptorType::UniformTexelBuffer`]
    /// descriptors than the
    /// [`max_descriptor_set_samplers`](crate::device::Properties::max_descriptor_set_samplers)
    /// limit.
    MaxDescriptorSetSamplersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::UniformBuffer`] descriptors than the
    /// [`max_descriptor_set_uniform_buffers`](crate::device::Properties::max_descriptor_set_uniform_buffers)
    /// limit.
    MaxDescriptorSetUniformBuffersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::UniformBufferDynamic`] descriptors than the
    /// [`max_descriptor_set_uniform_buffers_dynamic`](crate::device::Properties::max_descriptor_set_uniform_buffers_dynamic)
    /// limit.
    MaxDescriptorSetUniformBuffersDynamicExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::StorageBuffer`] descriptors than the
    /// [`max_descriptor_set_storage_buffers`](crate::device::Properties::max_descriptor_set_storage_buffers)
    /// limit.
    MaxDescriptorSetStorageBuffersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::StorageBufferDynamic`] descriptors than the
    /// [`max_descriptor_set_storage_buffers_dynamic`](crate::device::Properties::max_descriptor_set_storage_buffers_dynamic)
    /// limit.
    MaxDescriptorSetStorageBuffersDynamicExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::SampledImage`] and
    /// [`DescriptorType::CombinedImageSampler`] descriptors than the
    /// [`max_descriptor_set_sampled_images`](crate::device::Properties::max_descriptor_set_sampled_images)
    /// limit.
    MaxDescriptorSetSampledImagesExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::StorageImage`] and
    /// [`DescriptorType::StorageTexelBuffer`] descriptors than the
    /// [`max_descriptor_set_storage_images`](crate::device::Properties::max_descriptor_set_storage_images)
    /// limit.
    MaxDescriptorSetStorageImagesExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::InputAttachment`] descriptors than the
    /// [`max_descriptor_set_input_attachments`](crate::device::Properties::max_descriptor_set_input_attachments)
    /// limit.
    MaxDescriptorSetInputAttachmentsExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more bound resources in a single stage than the
    /// [`max_per_stage_resources`](crate::device::Properties::max_per_stage_resources)
    /// limit.
    MaxPerStageResourcesExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::Sampler`] and
    /// [`DescriptorType::CombinedImageSampler`] descriptors in a single stage than the
    /// [`max_per_stage_descriptor_samplers`](crate::device::Properties::max_per_stage_descriptor_samplers)
    /// limit.
    MaxPerStageDescriptorSamplersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::UniformBuffer`] and
    /// [`DescriptorType::UniformBufferDynamic`] descriptors in a single stage than the
    /// [`max_per_stage_descriptor_uniform_buffers`](crate::device::Properties::max_per_stage_descriptor_uniform_buffers)
    /// limit.
    MaxPerStageDescriptorUniformBuffersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::StorageBuffer`] and
    /// [`DescriptorType::StorageBufferDynamic`] descriptors in a single stage than the
    /// [`max_per_stage_descriptor_storage_buffers`](crate::device::Properties::max_per_stage_descriptor_storage_buffers)
    /// limit.
    MaxPerStageDescriptorStorageBuffersExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::SampledImage`],
    /// [`DescriptorType::CombinedImageSampler`] and [`DescriptorType::UniformTexelBuffer`]
    /// descriptors in a single stage than the
    /// [`max_per_stage_descriptor_sampled_images`](crate::device::Properties::max_per_stage_descriptor_sampled_images)
    /// limit.
    MaxPerStageDescriptorSampledImagesExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::StorageImage`] and
    /// [`DescriptorType::StorageTexelBuffer`] descriptors in a single stage than the
    /// [`max_per_stage_descriptor_storage_images`](crate::device::Properties::max_per_stage_descriptor_storage_images)
    /// limit.
    MaxPerStageDescriptorStorageImagesExceeded { provided: u32, max_supported: u32 },

    /// The `set_layouts` contain more [`DescriptorType::InputAttachment`] descriptors in a single
    /// stage than the
    /// [`max_per_stage_descriptor_input_attachments`](crate::device::Properties::max_per_stage_descriptor_input_attachments)
    /// limit.
    MaxPerStageDescriptorInputAttachmentsExceeded { provided: u32, max_supported: u32 },

    /// An element in `push_constant_ranges` has an `offset + size` greater than the
    /// [`max_push_constants_size`](crate::device::Properties::max_push_constants_size) limit.
    MaxPushConstantsSizeExceeded { provided: u32, max_supported: u32 },

    /// A shader stage appears in multiple elements of `push_constant_ranges`.
    PushConstantRangesStageMultiple,

    /// Multiple elements of `set_layouts` have `push_descriptor` enabled.
    SetLayoutsPushDescriptorMultiple,
}

impl Error for PipelineLayoutCreationError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            Self::OomError(err) => Some(err),
            _ => None,
        }
    }
}

impl Display for PipelineLayoutCreationError {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), FmtError> {
        match self {
            Self::OomError(_) => write!(f, "not enough memory available"),
            Self::RequirementNotMet {
                required_for,
                requires_one_of,
            } => write!(
                f,
                "a requirement was not met for: {}; requires one of: {}",
                required_for, requires_one_of,
            ),
            Self::MaxBoundDescriptorSetsExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the number of elements in `set_layouts` ({}) is greater than the \
                `max_bound_descriptor_sets` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetSamplersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::Sampler` and \
                `DescriptorType::CombinedImageSampler` descriptors ({}) than the \
                `max_descriptor_set_samplers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetUniformBuffersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::UniformBuffer` descriptors ({}) \
                than the `max_descriptor_set_uniform_buffers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetUniformBuffersDynamicExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::UniformBufferDynamic` descriptors \
                ({}) than the `max_descriptor_set_uniform_buffers_dynamic` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetStorageBuffersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::StorageBuffer` descriptors ({}) \
                than the `max_descriptor_set_storage_buffers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetStorageBuffersDynamicExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::StorageBufferDynamic` descriptors \
                ({}) than the `max_descriptor_set_storage_buffers_dynamic` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetSampledImagesExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::SampledImage`, \
                `DescriptorType::CombinedImageSampler` and `DescriptorType::UniformTexelBuffer` \
                descriptors ({}) than the `max_descriptor_set_sampled_images` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetStorageImagesExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::StorageImage` and \
                `DescriptorType::StorageTexelBuffer` descriptors ({}) than the \
                `max_descriptor_set_storage_images` limit ({})",
                provided, max_supported,
            ),
            Self::MaxDescriptorSetInputAttachmentsExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::InputAttachment` descriptors ({}) \
                than the `max_descriptor_set_input_attachments` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageResourcesExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more bound resources ({}) in a single stage than the \
                `max_per_stage_resources` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorSamplersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::Sampler` and \
                `DescriptorType::CombinedImageSampler` descriptors ({}) in a single stage than the \
                `max_per_stage_descriptor_set_samplers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorUniformBuffersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::UniformBuffer` and \
                `DescriptorType::UniformBufferDynamic` descriptors ({}) in a single stage than the \
                `max_per_stage_descriptor_set_uniform_buffers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorStorageBuffersExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::StorageBuffer` and \
                `DescriptorType::StorageBufferDynamic` descriptors ({}) in a single stage than the \
                `max_per_stage_descriptor_set_storage_buffers` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorSampledImagesExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::SampledImage`, \
                `DescriptorType::CombinedImageSampler` and `DescriptorType::UniformTexelBuffer` \
                descriptors ({}) in a single stage than the \
                `max_per_stage_descriptor_set_sampled_images` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorStorageImagesExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::StorageImage` and \
                `DescriptorType::StorageTexelBuffer` descriptors ({}) in a single stage than the \
                `max_per_stage_descriptor_set_storage_images` limit ({})",
                provided, max_supported,
            ),
            Self::MaxPerStageDescriptorInputAttachmentsExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "the `set_layouts` contain more `DescriptorType::InputAttachment` descriptors ({}) \
                in a single stage than the `max_per_stage_descriptor_set_input_attachments` limit \
                ({})",
                provided, max_supported,
            ),
            Self::MaxPushConstantsSizeExceeded {
                provided,
                max_supported,
            } => write!(
                f,
                "an element in `push_constant_ranges` has an `offset + size` ({}) greater than the \
                `max_push_constants_size` limit ({})",
                provided, max_supported,
            ),
            Self::PushConstantRangesStageMultiple => write!(
                f,
                "a shader stage appears in multiple elements of `push_constant_ranges`",
            ),
            Self::SetLayoutsPushDescriptorMultiple => write!(
                f,
                "multiple elements of `set_layouts` have `push_descriptor` enabled",
            ),
        }
    }
}

impl From<OomError> for PipelineLayoutCreationError {
    fn from(err: OomError) -> PipelineLayoutCreationError {
        PipelineLayoutCreationError::OomError(err)
    }
}

impl From<VulkanError> for PipelineLayoutCreationError {
    fn from(err: VulkanError) -> PipelineLayoutCreationError {
        match err {
            err @ VulkanError::OutOfHostMemory => {
                PipelineLayoutCreationError::OomError(OomError::from(err))
            }
            err @ VulkanError::OutOfDeviceMemory => {
                PipelineLayoutCreationError::OomError(OomError::from(err))
            }
            _ => panic!("unexpected error: {:?}", err),
        }
    }
}

impl From<RequirementNotMet> for PipelineLayoutCreationError {
    fn from(err: RequirementNotMet) -> Self {
        Self::RequirementNotMet {
            required_for: err.required_for,
            requires_one_of: err.requires_one_of,
        }
    }
}

/// Error when checking whether a pipeline layout is a superset of another one.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum PipelineLayoutSupersetError {
    DescriptorMissing {
        set_num: u32,
        binding_num: u32,
    },
    DescriptorRequirementsNotMet {
        set_num: u32,
        binding_num: u32,
        error: DescriptorRequirementsNotMet,
    },
    PushConstantRange {
        first_range: PushConstantRange,
        second_range: PushConstantRange,
    },
}

impl Error for PipelineLayoutSupersetError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            PipelineLayoutSupersetError::DescriptorRequirementsNotMet { error, .. } => Some(error),
            _ => None,
        }
    }
}

impl Display for PipelineLayoutSupersetError {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), FmtError> {
        match self {
            PipelineLayoutSupersetError::DescriptorRequirementsNotMet {
                set_num,
                binding_num,
                ..
            } => write!(
                f,
                "the descriptor at set {} binding {} does not meet the requirements",
                set_num, binding_num,
            ),
            PipelineLayoutSupersetError::DescriptorMissing {
                set_num,
                binding_num,
            } => write!(
                f,
                "a descriptor at set {} binding {} is required by the shaders, but is missing from \
                the pipeline layout",
                set_num, binding_num,
            ),
            PipelineLayoutSupersetError::PushConstantRange {
                first_range,
                second_range,
            } => {
                writeln!(f, "our range did not completely encompass the other range")?;
                writeln!(f, "    our stages: {:?}", first_range.stages)?;
                writeln!(
                    f,
                    "    our range: {} - {}",
                    first_range.offset,
                    first_range.offset + first_range.size,
                )?;
                writeln!(f, "    other stages: {:?}", second_range.stages)?;
                write!(
                    f,
                    "    other range: {} - {}",
                    second_range.offset,
                    second_range.offset + second_range.size,
                )
            }
        }
    }
}

/// Parameters to create a new `PipelineLayout`.
#[derive(Clone, Debug)]
pub struct PipelineLayoutCreateInfo {
    /// The descriptor set layouts that should be part of the pipeline layout.
    ///
    /// They are provided in order of set number.
    ///
    /// The default value is empty.
    pub set_layouts: Vec<Arc<DescriptorSetLayout>>,

    /// The ranges of push constants that the pipeline will access.
    ///
    /// A shader stage can only appear in one element of the list, but it is possible to combine
    /// ranges for multiple shader stages if they are the same.
    ///
    /// The default value is empty.
    pub push_constant_ranges: Vec<PushConstantRange>,

    pub _ne: crate::NonExhaustive,
}

impl Default for PipelineLayoutCreateInfo {
    #[inline]
    fn default() -> Self {
        Self {
            set_layouts: Vec::new(),
            push_constant_ranges: Vec::new(),
            _ne: crate::NonExhaustive(()),
        }
    }
}

/// Description of a range of the push constants of a pipeline layout.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct PushConstantRange {
    /// The stages which can access this range. A stage can access at most one push constant range.
    ///
    /// The default value is [`ShaderStages::empty()`], which must be overridden.
    pub stages: ShaderStages,

    /// Offset in bytes from the start of the push constants to this range.
    ///
    /// The value must be a multiple of 4.
    ///
    /// The default value is `0`.
    pub offset: u32,

    /// Size in bytes of the range.
    ///
    /// The value must be a multiple of 4, and not 0.
    ///
    /// The default value is `0`, which must be overridden.
    pub size: u32,
}

impl Default for PushConstantRange {
    #[inline]
    fn default() -> Self {
        Self {
            stages: ShaderStages::empty(),
            offset: 0,
            size: 0,
        }
    }
}

// Helper struct for the main function.
#[derive(Default)]
struct Counter {
    total: u32,
    compute: u32,
    vertex: u32,
    geometry: u32,
    tess_ctl: u32,
    tess_eval: u32,
    frag: u32,
}

impl Counter {
    fn increment(&mut self, num: u32, stages: &ShaderStages) {
        self.total += num;
        if stages.compute {
            self.compute += num;
        }
        if stages.vertex {
            self.vertex += num;
        }
        if stages.tessellation_control {
            self.tess_ctl += num;
        }
        if stages.tessellation_evaluation {
            self.tess_eval += num;
        }
        if stages.geometry {
            self.geometry += num;
        }
        if stages.fragment {
            self.frag += num;
        }
    }

    fn max_per_stage(&self) -> u32 {
        [
            self.compute,
            self.vertex,
            self.tess_ctl,
            self.tess_eval,
            self.geometry,
            self.frag,
        ]
        .into_iter()
        .max()
        .unwrap_or(0)
    }
}

#[cfg(test)]
mod tests {

    use super::PipelineLayout;
    use crate::{
        pipeline::layout::{PipelineLayoutCreateInfo, PushConstantRange},
        shader::ShaderStages,
    };

    #[test]
    fn push_constant_ranges_disjoint() {
        let test_cases = [
            // input:
            // - `0..12`, stage=fragment
            // - `0..40`, stage=vertex
            //
            // output:
            // - `0..12`, stage=fragment|vertex
            // - `12..40`, stage=vertex
            (
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 40,
                    },
                ][..],
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 12,
                        size: 28,
                    },
                ][..],
            ),
            // input:
            // - `0..12`, stage=fragment
            // - `4..40`, stage=vertex
            //
            // output:
            // - `0..4`, stage=fragment
            // - `4..12`, stage=fragment|vertex
            // - `12..40`, stage=vertex
            (
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 4,
                        size: 36,
                    },
                ][..],
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 4,
                        size: 8,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 12,
                        size: 28,
                    },
                ][..],
            ),
            // input:
            // - `0..12`, stage=fragment
            // - `8..20`, stage=compute
            // - `4..16`, stage=vertex
            // - `8..32`, stage=tess_ctl
            //
            // output:
            // - `0..4`, stage=fragment
            // - `4..8`, stage=fragment|vertex
            // - `8..16`, stage=fragment|vertex|compute|tess_ctl
            // - `16..20`, stage=compute|tess_ctl
            // - `20..32` stage=tess_ctl
            (
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            compute: true,
                            ..Default::default()
                        },
                        offset: 8,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 4,
                        size: 12,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            tessellation_control: true,
                            ..Default::default()
                        },
                        offset: 8,
                        size: 24,
                    },
                ][..],
                &[
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            ..Default::default()
                        },
                        offset: 0,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            fragment: true,
                            vertex: true,
                            ..Default::default()
                        },
                        offset: 4,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            fragment: true,
                            compute: true,
                            tessellation_control: true,
                            ..Default::default()
                        },
                        offset: 8,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            vertex: true,
                            compute: true,
                            tessellation_control: true,
                            ..Default::default()
                        },
                        offset: 12,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            compute: true,
                            tessellation_control: true,
                            ..Default::default()
                        },
                        offset: 16,
                        size: 4,
                    },
                    PushConstantRange {
                        stages: ShaderStages {
                            tessellation_control: true,
                            ..Default::default()
                        },
                        offset: 20,
                        size: 12,
                    },
                ][..],
            ),
        ];

        let (device, _) = gfx_dev_and_queue!();

        for (input, expected) in test_cases {
            let layout = PipelineLayout::new(
                device.clone(),
                PipelineLayoutCreateInfo {
                    push_constant_ranges: input.into(),
                    ..Default::default()
                },
            )
            .unwrap();

            assert_eq!(layout.push_constant_ranges_disjoint.as_slice(), expected);
        }
    }
}

/* TODO: restore
#[cfg(test)]
mod tests {
    use std::iter;
    use std::sync::Arc;
    use descriptor::descriptor::ShaderStages;
    use descriptor::descriptor_set::DescriptorSetLayout;
    use descriptor::pipeline_layout::sys::PipelineLayout;
    use descriptor::pipeline_layout::sys::PipelineLayoutCreationError;

    #[test]
    fn empty() {
        let (device, _) = gfx_dev_and_queue!();
        let _layout = PipelineLayout::new(&device, iter::empty(), iter::empty()).unwrap();
    }

    #[test]
    fn wrong_device_panic() {
        let (device1, _) = gfx_dev_and_queue!();
        let (device2, _) = gfx_dev_and_queue!();

        let set = match DescriptorSetLayout::raw(device1, iter::empty()) {
            Ok(s) => Arc::new(s),
            Err(_) => return
        };

        assert_should_panic!({
            let _ = PipelineLayout::new(&device2, Some(&set), iter::empty());
        });
    }

    #[test]
    fn invalid_push_constant_stages() {
        let (device, _) = gfx_dev_and_queue!();

        let push_constant = (0, 8, ShaderStages::empty());

        match PipelineLayout::new(&device, iter::empty(), Some(push_constant)) {
            Err(PipelineLayoutCreationError::InvalidPushConstant) => (),
            _ => panic!()
        }
    }

    #[test]
    fn invalid_push_constant_size1() {
        let (device, _) = gfx_dev_and_queue!();

        let push_constant = (0, 0, ShaderStages::all_graphics());

        match PipelineLayout::new(&device, iter::empty(), Some(push_constant)) {
            Err(PipelineLayoutCreationError::InvalidPushConstant) => (),
            _ => panic!()
        }
    }

    #[test]
    fn invalid_push_constant_size2() {
        let (device, _) = gfx_dev_and_queue!();

        let push_constant = (0, 11, ShaderStages::all_graphics());

        match PipelineLayout::new(&device, iter::empty(), Some(push_constant)) {
            Err(PipelineLayoutCreationError::InvalidPushConstant) => (),
            _ => panic!()
        }
    }
}
*/