pub trait ToDepthAttachment<'a> {
    // Required method
    fn to_depth_attachment(self) -> DepthAttachment<'a>;
}
Expand description

Trait for objects that can be used as depth attachments.

Required Methods§

source

fn to_depth_attachment(self) -> DepthAttachment<'a>

Builds the DepthAttachment.

Implementors§