Enum wgpu_types::AddressMode [−][src]
#[repr(C)]
pub enum AddressMode {
ClampToEdge,
Repeat,
MirrorRepeat,
ClampToBorder,
}Expand description
How edges should be handled in texture addressing.
Variants
Clamp the value to the edge of the texture
-0.25 -> 0.0 1.25 -> 1.0
Repeat the texture in a tiling fashion
-0.25 -> 0.75 1.25 -> 0.25
Repeat the texture, mirroring it every repeat
-0.25 -> 0.25 1.25 -> 0.75
Clamp the value to the border of the texture
Requires feature Features::ADDRESS_MODE_CLAMP_TO_BORDER
-0.25 -> border 1.25 -> border
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AddressModeimpl Send for AddressModeimpl Sync for AddressModeimpl Unpin for AddressModeimpl UnwindSafe for AddressModeBlanket Implementations
Mutably borrows from an owned value. Read more