Struct nannou::wgpu::SamplerBuilder[][src]

pub struct SamplerBuilder {
    pub descriptor: SamplerDescriptor<'static>,
}

Simplifies the construction of a Sampler with a set of reasonable defaults.

Fields

descriptor: SamplerDescriptor<'static>

Implementations

impl<'b> SamplerBuilder[src]

pub const DEFAULT_ADDRESS_MODE_U: AddressMode[src]

pub const DEFAULT_ADDRESS_MODE_V: AddressMode[src]

pub const DEFAULT_ADDRESS_MODE_W: AddressMode[src]

pub const DEFAULT_MAG_FILTER: FilterMode[src]

pub const DEFAULT_MIN_FILTER: FilterMode[src]

pub const DEFAULT_MIPMAP_FILTER: FilterMode[src]

pub const DEFAULT_LOD_MIN_CLAMP: f32[src]

pub const DEFAULT_LOD_MAX_CLAMP: f32[src]

pub const DEFAULT_COMPARE: Option<CompareFunction>[src]

pub const DEFAULT_ANISOTROPY_CLAMP: Option<NonZeroU8>[src]

pub const DEFAULT_LABEL: &'static str[src]

pub const DEFAULT_BORDER_COLOR: Option<SamplerBorderColor>[src]

pub const DEFAULT_DESCRIPTOR: SamplerDescriptor<'static>[src]

pub fn new() -> Self[src]

Begin building a Sampler, starting with the Default parameters.

pub fn address_mode_u(self, mode: AddressMode) -> Self[src]

How the implementation should behave when sampling outside of the texture coordinates range [0.0, 1.0].

pub fn address_mode_v(self, mode: AddressMode) -> Self[src]

How the implementation should behave when sampling outside of the texture coordinates range [0.0, 1.0].

pub fn address_mode_w(self, mode: AddressMode) -> Self[src]

How the implementation should behave when sampling outside of the texture coordinates range [0.0, 1.0].

pub fn address_mode(self, mode: AddressMode) -> Self[src]

How the implementation should behave when sampling outside of the texture coordinates range [0.0, 1.0].

Applies the same address mode to all axes.

pub fn mag_filter(self, filter: FilterMode) -> Self[src]

How the implementation should sample from the image when it is respectively larger than the original.

pub fn min_filter(self, filter: FilterMode) -> Self[src]

How the implementation should sample from the image when it is respectively smaller than the original.

pub fn mipmap_filter(self, filter: FilterMode) -> Self[src]

How the implementation should choose which mipmap to use.

pub fn lod_min_clamp(self, min: f32) -> Self[src]

The minimum mipmap level to use.

pub fn lod_max_clamp(self, max: f32) -> Self[src]

The maximum mipmap level to use.

pub fn compare(self, f: Option<CompareFunction>) -> Self[src]

The comparison function to use, if any.

pub fn anisotropy_clamp(self, clamp: Option<NonZeroU8>) -> Self[src]

The anisotropy level to clamp to, if any.

pub fn label(self, label: Option<&'static str>) -> Self[src]

The label to use, if any.

pub fn build(&self, device: &Device) -> Sampler[src]

Calls device.create_sampler(&self.descriptor) internally.

pub fn into_descriptor(self) -> SamplerDescriptor<'static>[src]

Consume the builder and produce the inner SamplerDescriptor.

Trait Implementations

impl Debug for SamplerBuilder[src]

impl Default for SamplerBuilder[src]

impl From<SamplerDescriptor<'static>> for SamplerBuilder[src]

impl Into<SamplerDescriptor<'static>> for SamplerBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,