Trait FilterPassMeta

Source
pub trait FilterPassMeta {
    // Required methods
    fn framebuffer_format(&self) -> ImageFormat;
    fn meta(&self) -> &PassMeta;

    // Provided method
    fn get_format(&self) -> ImageFormat { ... }
}
Expand description

Trait for metadata about a filter pass.

Required Methods§

Source

fn framebuffer_format(&self) -> ImageFormat

Gets the format of the framebuffer for the pass.

Source

fn meta(&self) -> &PassMeta

Gets a reference to the filter pass config.

Provided Methods§

Source

fn get_format(&self) -> ImageFormat

Gets the format of the filter pass framebuffer.

Implementors§