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

pub struct SamplerBuilder {
    pub descriptor: SamplerDescriptor,
}

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

Fields

descriptor: SamplerDescriptor

Methods

impl 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_FUNCTION: CompareFunction[src]

pub const DEFAULT_DESCRIPTOR: SamplerDescriptor[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_function(self, f: CompareFunction) -> Self[src]

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

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

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

Consume the builder and produce the inner SamplerDescriptor.

Trait Implementations

impl Debug for SamplerBuilder[src]

impl Default for SamplerBuilder[src]

impl From<SamplerDescriptor> for SamplerBuilder[src]

impl Into<SamplerDescriptor> for SamplerBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[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> From<T> for T[src]

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

impl<T> SetParameter for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,