pub trait ToDepthStencilAttachment<'a> {
    // Required method
    fn to_depth_stencil_attachment(self) -> DepthStencilAttachment<'a>;
}
Expand description

Trait for objects that can be used as depth and stencil attachments.

Required Methods§

source

fn to_depth_stencil_attachment(self) -> DepthStencilAttachment<'a>

Builds the DepthStencilAttachment.

Implementors§