[][src]Struct web_glitz::rendering::DepthStencilBufferEncoding

pub struct DepthStencilBufferEncoding<'a, 'b, B> { /* fields omitted */ }

Implementations

impl<'a, 'b, F> DepthStencilBufferEncoding<'a, 'b, DepthStencilBuffer<F>> where
    F: InternalFormat
[src]

pub fn depth_stencil_attachment<I>(
    context: &'a mut DepthStencilBufferEncodingContext,
    image: &'b mut I,
    load_op: LoadOp<(f32, i32)>,
    store_op: StoreOp
) -> Self where
    I: AsAttachment<Format = F>, 
[src]

pub fn multisample_depth_stencil_attachment<I>(
    context: &'a mut DepthStencilBufferEncodingContext,
    image: &'b mut I,
    load_op: LoadOp<(f32, i32)>,
    store_op: StoreOp
) -> Self where
    I: AsMultisampleAttachment<SampleFormat = F>,
    F: Multisamplable
[src]

impl<'a, 'b, F> DepthStencilBufferEncoding<'a, 'b, DepthBuffer<F>> where
    F: InternalFormat
[src]

pub fn depth_attachment<I>(
    context: &'a mut DepthStencilBufferEncodingContext,
    image: &'b mut I,
    load_op: LoadOp<f32>,
    store_op: StoreOp
) -> Self where
    I: AsAttachment<Format = F>, 
[src]

pub fn multisample_depth_attachment<I>(
    context: &'a mut DepthStencilBufferEncodingContext,
    image: &'b mut I,
    load_op: LoadOp<f32>,
    store_op: StoreOp
) -> Self where
    I: AsMultisampleAttachment<SampleFormat = F>,
    F: Multisamplable
[src]

impl<'a, 'b, F> DepthStencilBufferEncoding<'a, 'b, StencilBuffer<F>> where
    F: InternalFormat
[src]

pub fn stencil_attachment<I>(
    context: &'a mut DepthStencilBufferEncodingContext,
    image: &'b mut I,
    load_op: LoadOp<i32>,
    store_op: StoreOp
) -> Self where
    I: AsAttachment<Format = F>, 
[src]

Auto Trait Implementations

impl<'a, 'b, B> !RefUnwindSafe for DepthStencilBufferEncoding<'a, 'b, B>

impl<'a, 'b, B> !Send for DepthStencilBufferEncoding<'a, 'b, B>

impl<'a, 'b, B> !Sync for DepthStencilBufferEncoding<'a, 'b, B>

impl<'a, 'b, B> Unpin for DepthStencilBufferEncoding<'a, 'b, B> where
    B: Unpin

impl<'a, 'b, B> !UnwindSafe for DepthStencilBufferEncoding<'a, 'b, B>

Blanket Implementations

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> From<T> for T[src]

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

impl<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[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.