Enum wgpu::AddressMode[][src]

#[repr(C)]
pub enum AddressMode {
    ClampToEdge,
    Repeat,
    MirrorRepeat,
    ClampToBorder,
}
Expand description

How edges should be handled in texture addressing.

Variants

ClampToEdge

Clamp the value to the edge of the texture

-0.25 -> 0.0 1.25 -> 1.0

Repeat

Repeat the texture in a tiling fashion

-0.25 -> 0.75 1.25 -> 0.25

MirrorRepeat

Repeat the texture, mirroring it every repeat

-0.25 -> 0.25 1.25 -> 0.75

ClampToBorder

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.