[][src]Trait web_glitz::render_target::DepthStencilAttachmentDescription

pub trait DepthStencilAttachmentDescription {
    type Buffer: RenderingOutputBuffer;
    fn encode<'a, 'b>(
        &'a mut self,
        context: &'b mut DepthStencilAttachmentEncodingContext
    ) -> DepthStencilAttachmentEncoding<'b, 'a, Self::Buffer>; }

Associated Types

Loading content...

Required methods

fn encode<'a, 'b>(
    &'a mut self,
    context: &'b mut DepthStencilAttachmentEncodingContext
) -> DepthStencilAttachmentEncoding<'b, 'a, Self::Buffer>

Loading content...

Implementors

impl<I> DepthStencilAttachmentDescription for DepthAttachment<I> where
    I: AsAttachableImageRef,
    I::Format: DepthRenderable
[src]

type Buffer = DepthBuffer<I::Format>

impl<I> DepthStencilAttachmentDescription for DepthStencilAttachment<I> where
    I: AsAttachableImageRef,
    I::Format: DepthStencilRenderable
[src]

type Buffer = DepthStencilBuffer<I::Format>

impl<I> DepthStencilAttachmentDescription for StencilAttachment<I> where
    I: AsAttachableImageRef,
    I::Format: StencilRenderable
[src]

type Buffer = StencilBuffer<I::Format>

Loading content...