[][src]Struct tray_rust::sampler::uniform::Uniform

pub struct Uniform { /* fields omitted */ }

Uniform sampler that takes one sample per pixel at the center of each pixel

Methods

impl Uniform[src]

pub fn new(dim: (u32, u32)) -> Uniform[src]

Create a uniform sampler to sample the image in dim.0 * dim.1 sized blocks

Trait Implementations

impl Sampler for Uniform[src]

Auto Trait Implementations

impl Send for Uniform

impl Sync for Uniform

impl Unpin for Uniform

impl UnwindSafe for Uniform

impl RefUnwindSafe for Uniform

Blanket Implementations

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SetParameter for T[src]