| 5 | /// The access permissions for the image. |
| 6 | #[derive(Copy, Clone, PartialEq, Eq)] |
| 7 | pub enum AccessQualifier { |
| 8 | /// A read only image. |
| 9 | ReadOnly = 0, |
| 10 | /// A write only image. |
| 11 | WriteOnly = 1, |
| 12 | /// A readable and writable image. |
| 13 | ReadWrite = 2, |
| 14 | } |
| 15 | |
| 16 | /// Whether the image uses arrayed content. |
| 17 | #[repr(u32)] |