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
#![allow(unknown_lints)]
#![warn(clippy::all, clippy::pedantic)]
#![allow(
    clippy::unreadable_literal,
    clippy::too_many_lines,
    clippy::must_use_candidate
)]

use std::{collections::HashMap, str::Utf8Error};

use ops::{Dim, Id, Op};
use thiserror::Error;

mod ops;

#[derive(Debug, Clone, Error)]
pub enum Error {
    #[error("{0}")]
    Other(String),
    #[error("invalid header")]
    InvalidHeader,
    #[error("invalid bytes in commmand")]
    InvalidOp,
    #[error("invalid id")]
    InvalidId,
    #[error("invalid utf-8 in string")]
    StringFormat(#[from] Utf8Error),
}

pub type SpirvResult<T> = ::std::result::Result<T, Error>;

/// Stores the reflection info of a single SPIRV module.
#[derive(Debug)]
pub struct Module {
    types: HashMap<u32, Type>,
    entry_points: Vec<EntryPoint>,
}

/// Describes a single `EntryPoint` in a SPIR-V module.
///
/// A SPIR-V module can have multiple entry points with different names, each defining a single shader.
#[derive(Debug)]
pub struct EntryPoint {
    /// The name of the entry point, used for identification
    pub name: String,
    /// The [`ExecutionModel`] of the entry point, selects which type of shader this entry point defines
    pub execution_model: ExecutionModel,
    /// All uniform variables used in this shader
    pub uniforms: Vec<UniformVariable>,
    /// All push constant variables used in this shader
    pub push_constants: Vec<PushConstantVariable>,
    /// All inputs used in this shader
    pub inputs: Vec<LocationVariable>,
    /// All outputs used in this shader
    pub outputs: Vec<LocationVariable>,
}

impl Module {
    /// Generates reflection info from a given stream of `words`.
    ///
    /// # Errors
    /// - [`Error::InvalidHeader`] if the SPIRV header is not valid
    /// - [`Error::InvalidOp`] if the binary representation of any instruction in `words` is not valid
    /// - [`Error::InvalidId`] if any type declaration in the SPIRV module reference non-existent IDs
    /// - [`Error::StringFormat`] if any `OpCode` contains a String with invalid UTF-8 characters
    /// - [`Error::Other`] if any other errors occur
    pub fn from_words(mut words: &[u32]) -> SpirvResult<Self> {
        // Check the SPIRV header magic number
        if words.len() < 6 || words[0] != 0x07230203 {
            return Err(Error::InvalidHeader);
        }

        // Skip the rest of the header (Should be parsed in the future)
        words = &words[5..];

        // decode all opcodes
        let mut ops = Vec::new();
        while !words.is_empty() {
            let op = Op::decode(&mut words)?;
            ops.push(op);
        }

        // All OpConstant values are stored in this Map
        let mut constants = HashMap::new();
        // All type declarations are stored in this Map
        let mut types = HashMap::new();
        // All variable declarations are stored in this Map
        let mut vars = HashMap::new();
        // All entry points declarations are stored in this Vec
        let mut entries = Vec::new();

        Self::collect_types_and_vars(&ops, &mut types, &mut constants, &mut vars, &mut entries)?;
        Self::collect_decorations_and_names(&ops, &mut types, &mut vars);

        // uniforms are all variables that are a pointer with a storage class of Uniform or UniformConstant
        let uniforms: HashMap<_, _> = vars
            .iter()
            .filter_map(|(id, var)| {
                if let Some(Type::Pointer {
                    storage_class: StorageClass::Uniform | StorageClass::UniformConstant,
                    pointed_type_id,
                }) = types.get(&var.type_id)
                {
                    Some((
                        *id,
                        UniformVariable {
                            set: var.set?,
                            binding: var.binding?,
                            type_id: *pointed_type_id, // for convenience, we store the pointed-to type instead of the pointer, since every uniform is a pointer
                            name: var.name.clone(),
                        },
                    ))
                } else {
                    None
                }
            })
            .collect();

        let push_constants: HashMap<_, _> = vars
            .iter()
            .filter_map(|(id, var)| {
                if let Some(Type::Pointer {
                    storage_class: StorageClass::PushConstant,
                    pointed_type_id,
                }) = types.get(&var.type_id)
                {
                    Some((
                        *id,
                        PushConstantVariable {
                            type_id: *pointed_type_id,
                            name: var.name.clone(),
                        },
                    ))
                } else {
                    None
                }
            })
            .collect();

        let inputs: HashMap<_, _> = vars
            .iter()
            .filter_map(|(id, var)| {
                if let Some(Type::Pointer {
                    storage_class: StorageClass::Input,
                    pointed_type_id,
                }) = types.get(&var.type_id)
                {
                    Some((
                        *id,
                        LocationVariable {
                            location: var.location?,
                            type_id: *pointed_type_id,
                            name: var.name.clone(),
                        },
                    ))
                } else {
                    None
                }
            })
            .collect();

        let outputs: HashMap<_, _> = vars
            .iter()
            .filter_map(|(id, var)| {
                if let Some(Type::Pointer {
                    storage_class: StorageClass::Output,
                    pointed_type_id,
                }) = types.get(&var.type_id)
                {
                    Some((
                        *id,
                        LocationVariable {
                            location: var.location?,
                            type_id: *pointed_type_id,
                            name: var.name.clone(),
                        },
                    ))
                } else {
                    None
                }
            })
            .collect();

        let entry_points = entries
            .iter()
            .map(|e| {
                let uniforms = e
                    .interface
                    .iter()
                    .filter_map(|id| uniforms.get(&id.0).cloned())
                    .collect();
                let push_constants = e
                    .interface
                    .iter()
                    .filter_map(|id| push_constants.get(&id.0).cloned())
                    .collect();
                let inputs = e
                    .interface
                    .iter()
                    .filter_map(|id| inputs.get(&id.0).cloned())
                    .collect();
                let outputs = e
                    .interface
                    .iter()
                    .filter_map(|id| outputs.get(&id.0).cloned())
                    .collect();

                EntryPoint {
                    name: e.name.clone(),
                    execution_model: e.execution_model,
                    uniforms,
                    push_constants,
                    inputs,
                    outputs,
                }
            })
            .collect();

        Ok(Self {
            types,
            entry_points,
        })
    }

    /// Returns the [`Type`] definition indicated by `type_id`, or `None` if `type_id` is not a type.
    pub fn get_type(&self, type_id: u32) -> Option<&Type> {
        self.types.get(&type_id)
    }

    /// Returns the [`EntryPoint`] definitions contained in the given SPIR-V module
    pub fn get_entry_points(&self) -> &[EntryPoint] {
        &self.entry_points
    }

    fn get_type_size(&self, type_id: u32, stride: Option<u32>) -> Option<u32> {
        if let Some(ty) = self.types.get(&type_id) {
            match ty {
                Type::Int32 | Type::UInt32 | Type::Float32 => Some(4),
                Type::Vec2 => Some(8),
                Type::Vec3 => Some(12),
                Type::Vec4 => Some(16),
                Type::Mat3 => stride.map(|stride| stride * 2 + 12), // two rows/columns + sizeof(Vec3)
                Type::Mat4 => stride.map(|stride| stride * 3 + 16), // three rows/columns + sizeof(Vec4)
                Type::Struct { elements, .. } => {
                    // Since there is no Size Decoration in SPIRV that tells us the size,
                    // we calculate it from the offset of the last member and its size.
                    let last_element = elements.iter().max_by_key(|e| e.offset.unwrap_or(0))?;
                    let offset = last_element.offset?;
                    let size = self.get_member_size(last_element)?;

                    Some(offset + size)
                }
                _ => None,
            }
        } else {
            None
        }
    }

    /// Returns the size of a given [`StructMember`], if known.
    pub fn get_member_size(&self, member: &StructMember) -> Option<u32> {
        self.get_type_size(member.type_id, Some(member.stride))
    }

    /// Returns the size of a given [`UniformVariable`], [`PushConstantVariable`] or [`LocationVariable`], if known.
    pub fn get_var_size<T: Variable>(&self, var: &T) -> Option<u32> {
        self.get_type_size(var.get_type_id(), None)
    }

    /// Parses all the Op*Decoration and Op*Name instructions
    fn collect_decorations_and_names(
        ops: &[Op],
        types: &mut HashMap<u32, Type>,
        vars: &mut HashMap<u32, RawVariable>,
    ) {
        for op in ops {
            match op {
                Op::OpName { target, name } => {
                    if let Some(target) = vars.get_mut(&target.0) {
                        target.name = Some(name.clone());
                    } else if let Some(Type::Struct { name: n, .. }) = types.get_mut(&target.0) {
                        *n = Some(name.clone());
                    }
                }
                Op::OpMemberName {
                    target,
                    member_index,
                    name,
                } => {
                    if let Some(Type::Struct { elements, .. }) = types.get_mut(&target.0) {
                        if elements.len() > *member_index as usize {
                            elements[*member_index as usize].name = Some(name.clone());
                        }
                    }
                }
                Op::OpDecorate { target, decoration } => match decoration {
                    ops::Decoration::Binding { binding } => {
                        if let Some(target) = vars.get_mut(&target.0) {
                            target.binding = Some(*binding);
                        }
                    }
                    ops::Decoration::DescriptorSet { set } => {
                        if let Some(target) = vars.get_mut(&target.0) {
                            target.set = Some(*set);
                        }
                    }
                    ops::Decoration::Location { loc } => {
                        if let Some(target) = vars.get_mut(&target.0) {
                            target.location = Some(*loc);
                        }
                    }
                    _ => {}
                },
                Op::OpMemberDecorate {
                    target,
                    member_index,
                    decoration,
                } => {
                    if let Some(Type::Struct { elements, .. }) = types.get_mut(&target.0) {
                        if elements.len() > *member_index as usize {
                            match decoration {
                                ops::Decoration::RowMajor {} => {
                                    elements[*member_index as usize].row_major = true;
                                }
                                ops::Decoration::ColMajor {} => {
                                    elements[*member_index as usize].row_major = false;
                                }
                                ops::Decoration::MatrixStride { stride } => {
                                    elements[*member_index as usize].stride = *stride;
                                }
                                ops::Decoration::Offset { offset } => {
                                    elements[*member_index as usize].offset = Some(*offset);
                                }
                                _ => {}
                            }
                        }
                    }
                }
                _ => {}
            }
        }
    }

    // Parses all the OpType* and OpVariable instructions
    fn collect_types_and_vars(
        ops: &[Op],
        types: &mut HashMap<u32, Type>,
        constants: &mut HashMap<u32, u32>,
        vars: &mut HashMap<u32, RawVariable>,
        entries: &mut Vec<RawEntryPoint>,
    ) -> SpirvResult<()> {
        for op in ops {
            match op {
                Op::OpTypeVoid { result } => {
                    types.insert(result.0, Type::Void);
                }
                Op::OpTypeBool { result } => {
                    types.insert(result.0, Type::Bool);
                }
                Op::OpTypeInt {
                    result,
                    width,
                    signed,
                } => {
                    if *width != 32 {
                        types.insert(result.0, Type::Unknown);
                    } else if *signed == 0 {
                        types.insert(result.0, Type::UInt32);
                    } else {
                        types.insert(result.0, Type::Int32);
                    }
                }
                Op::OpTypeFloat { result, width } => {
                    if *width == 32 {
                        types.insert(result.0, Type::Float32);
                    } else {
                        types.insert(result.0, Type::Unknown);
                    }
                }
                Op::OpTypeVector {
                    result,
                    component_type,
                    component_count,
                } => {
                    if let Some(t) = types.get(&component_type.0) {
                        if let Type::Float32 = t {
                            match component_count {
                                2 => {
                                    types.insert(result.0, Type::Vec2);
                                }
                                3 => {
                                    types.insert(result.0, Type::Vec3);
                                }
                                4 => {
                                    types.insert(result.0, Type::Vec4);
                                }
                                _ => {
                                    types.insert(result.0, Type::Unknown);
                                }
                            }
                        } else {
                            types.insert(result.0, Type::Unknown);
                        }
                    } else {
                        return Err(Error::InvalidId);
                    }
                }
                Op::OpTypeMatrix {
                    result,
                    column_type,
                    column_count,
                } => {
                    let t = types
                        .get(&column_type.0)
                        .map(|column_type| match column_type {
                            Type::Vec3 if *column_count == 3 => Type::Mat3,
                            Type::Vec4 if *column_count == 4 => Type::Mat4,
                            _ => Type::Unknown,
                        })
                        .unwrap_or(Type::Unknown);
                    types.insert(result.0, t);
                }
                Op::OpTypeImage {
                    result,
                    sampled_type,
                    dim,
                    depth,
                    arrayed: _,
                    ms: _,
                    sampled,
                    format,
                    access: _,
                } => {
                    let t = if let Some(Type::Float32) = types.get(&sampled_type.0) {
                        if let Dim::D2 {} = dim {
                            Type::Image2D {
                                depth: *depth != 0,
                                sampled: *sampled != 0,
                                format: *format,
                            }
                        } else {
                            Type::Unknown
                        }
                    } else {
                        Type::Unknown
                    };
                    types.insert(result.0, t);
                }
                Op::OpTypeSampler { result } => {
                    types.insert(result.0, Type::Sampler);
                }
                Op::OpTypeSampledImage { result, image_type } => {
                    let t = if let Some(Type::Image2D { .. }) = types.get(&image_type.0) {
                        Type::SampledImage {
                            image_type_id: image_type.0,
                        }
                    } else {
                        Type::Unknown
                    };
                    types.insert(result.0, t);
                }
                Op::OpTypeArray {
                    result,
                    element_type,
                    length,
                } => {
                    if let Some(length) = constants.get(&length.0) {
                        types.insert(
                            result.0,
                            Type::Array {
                                element_type_id: element_type.0,
                                length: Some(*length),
                            },
                        );
                    } else {
                        return Err(Error::InvalidId);
                    }
                }
                Op::OpTypeRuntimeArray {
                    result,
                    element_type,
                } => {
                    types.insert(
                        result.0,
                        Type::Array {
                            element_type_id: element_type.0,
                            length: None,
                        },
                    );
                }
                Op::OpTypeStruct {
                    result,
                    element_types,
                } => {
                    types.insert(
                        result.0,
                        Type::Struct {
                            name: None,
                            elements: element_types
                                .iter()
                                .map(|e| StructMember {
                                    name: None,
                                    type_id: e.0,
                                    offset: None,
                                    row_major: true,
                                    stride: 16,
                                })
                                .collect(),
                        },
                    );
                }
                Op::OpTypePointer {
                    result,
                    storage_class,
                    pointed_type,
                } => {
                    types.insert(
                        result.0,
                        Type::Pointer {
                            storage_class: match storage_class {
                                ops::StorageClass::Unknown => StorageClass::Unknown,
                                ops::StorageClass::UniformConstant {}
                                | ops::StorageClass::Uniform {} => StorageClass::Uniform,
                                ops::StorageClass::PushConstant {} => StorageClass::PushConstant,
                                ops::StorageClass::Input {} => StorageClass::Input,
                                ops::StorageClass::Output {} => StorageClass::Output,
                            },
                            pointed_type_id: pointed_type.0,
                        },
                    );
                }
                Op::OpConstant {
                    result_type,
                    result,
                    value,
                } => {
                    if let Some(Type::UInt32) = types.get(&result_type.0) {
                        if value.len() == 1 {
                            constants.insert(result.0, value[0]);
                        }
                    }
                }
                Op::OpVariable {
                    result_type,
                    result,
                    storage_class: _,
                    initializer: _,
                } => {
                    vars.insert(
                        result.0,
                        RawVariable {
                            set: None,
                            binding: None,
                            location: None,
                            type_id: result_type.0,
                            name: None,
                        },
                    );
                }
                Op::OpEntryPoint {
                    execution_model,
                    func: _,
                    name,
                    interface,
                } => {
                    entries.push(RawEntryPoint {
                        name: name.clone(),
                        execution_model: match execution_model {
                            ops::ExecutionModel::Unknown => {
                                return Err(Error::Other(
                                    "Unknown execution model in entry point".to_string(),
                                ))
                            }
                            ops::ExecutionModel::Vertex {} => ExecutionModel::Vertex,
                            ops::ExecutionModel::Fragment {} => ExecutionModel::Fragment,
                        },
                        interface: interface.clone(),
                    });
                }
                _ => {}
            }
        }

        Ok(())
    }
}

/// Represents a type declared in a SPIRV module.
///
/// Types are declared in a hierarchy, with e.g. pointers relying on previously declared types as pointed-to types.
#[derive(Debug)]
#[non_exhaustive]
pub enum Type {
    /// An unsupported type
    Unknown,
    /// The Void type
    Void,
    /// A boolean
    Bool,
    /// A signed 32-Bit integer
    Int32,
    /// An unsigned 32-Bit integer
    UInt32,
    /// A 32-Bit float
    Float32,
    /// A 2 component, 32-Bit vector (GLSL: vec2)
    Vec2,
    /// A 3 component, 32-Bit vector (GLSL: vec3)
    Vec3,
    /// A 4 component, 32-Bit vector (GLSL: vec4)
    Vec4,
    /// A 3x3, 32-Bit Matrix (GLSL: mat3)
    Mat3,
    /// A 4x4, 32-Bit Matrix (GLSL: mat4)
    Mat4,
    /// A 2D image
    Image2D {
        /// true if this image is a depth image
        depth: bool,
        /// true if this image can be sampled from
        sampled: bool,
        /// SPIRV code of the images format (should always be 0 in Vulkan)
        format: u32,
    },
    /// An opaque sampler object
    Sampler,
    /// A combined image and sampler (Vulkan: CombinedImageSampler descriptor)
    SampledImage {
        /// type id of the image contained in the SampledImage
        image_type_id: u32,
    },
    /// Either a static array with known length (`length` is [`Some`]) or dynamic array with unknown length (`length` is [`None`])
    Array {
        /// type id of the contained type
        element_type_id: u32,
        /// length of the array (if known)
        length: Option<u32>,
    },
    /// A struct containing other types
    Struct {
        name: Option<String>,
        /// members of the struct, in the order they appear in the SPIRV module (not necessarily ascending offsets)
        elements: Vec<StructMember>,
    },
    /// A pointer pointing to another type
    Pointer {
        /// The type of storage this pointer points to
        storage_class: StorageClass,
        /// The type id of the pointed-to type
        pointed_type_id: u32,
    },
}

/// Describes a single member of a [`Type::Struct`] type
#[derive(Debug)]
pub struct StructMember {
    /// The name of the member variable (if known)
    pub name: Option<String>,
    /// The type id of the member's [`Type`]
    pub type_id: u32,
    /// The offset within the struct of this member (if known)
    pub offset: Option<u32>,
    /// For matrix members: whether this matrix is stored in row major order
    pub row_major: bool,
    /// For matrix members: The stride between rows/columns of the matrix
    pub stride: u32,
}

/// Describes what type of storage a pointer points to
#[derive(Debug)]
#[non_exhaustive]
pub enum StorageClass {
    Unknown,
    /// The pointer is a uniform variable (Uniform blocks)
    Uniform,
    /// The pointer is a uniform variable (Images, etc.)
    UniformConstant,
    /// The pointer is a push constant
    PushConstant,
    /// The pointer is an input variable
    Input,
    /// The pointer is an output variable
    Output,
}

/// The execution model of an [`EntryPoint`].
#[derive(Debug, Clone, Copy)]
#[non_exhaustive]
pub enum ExecutionModel {
    /// A Vertex Shader
    Vertex,
    /// A Fragment Shader
    Fragment,
}

#[derive(Debug, Clone)]
struct RawVariable {
    set: Option<u32>,
    binding: Option<u32>,
    location: Option<u32>,
    type_id: u32,
    name: Option<String>,
}

#[derive(Debug)]
struct RawEntryPoint {
    name: String,
    execution_model: ExecutionModel,
    interface: Vec<Id>,
}

/// Describes a uniform variable declared in a SPIRV module
#[derive(Debug, Clone)]
pub struct UniformVariable {
    /// Which DescriptorSet the variable is contained in (if known)
    pub set: u32,
    /// Which DescriptorSet binding the variable is contained in (if known)
    pub binding: u32,
    /// The type id of the variable's [`Type`]
    pub type_id: u32,
    /// The variables name (if known)
    pub name: Option<String>,
}

/// Describes a push constant variable declared in a SPIRV module
#[derive(Debug, Clone)]
pub struct PushConstantVariable {
    /// The type id of the variable's [`Type`]
    pub type_id: u32,
    /// The variables name (if known)
    pub name: Option<String>,
}

/// Describes an input or output variable declared in a SPIRV module
#[derive(Debug, Clone)]
pub struct LocationVariable {
    /// The location of the variable (e.g. GLSL `layout(location=XXX)`)
    pub location: u32,
    /// The type id of the variable's [`Type`]
    pub type_id: u32,
    /// The variable's name (if known)
    pub name: Option<String>,
}

mod private {
    pub trait Variable {
        fn get_type_id(&self) -> u32;
    }
}

pub trait Variable: private::Variable {}
impl<T: private::Variable> Variable for T {}

impl private::Variable for UniformVariable {
    fn get_type_id(&self) -> u32 {
        self.type_id
    }
}
impl private::Variable for PushConstantVariable {
    fn get_type_id(&self) -> u32 {
        self.type_id
    }
}
impl private::Variable for LocationVariable {
    fn get_type_id(&self) -> u32 {
        self.type_id
    }
}