MCPcopy Create free account
hub / github.com/Rust-GPU/rust-gpu / AccessQualifier

Enum AccessQualifier

crates/spirv-std/shared/src/image_params.rs:7–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5/// The access permissions for the image.
6#[derive(Copy, Clone, PartialEq, Eq)]
7pub 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)]

Callers 1

parse_one_operandMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected