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§
Sourcefn framebuffer_format(&self) -> ImageFormat
fn framebuffer_format(&self) -> ImageFormat
Gets the format of the framebuffer for the pass.
Provided Methods§
Sourcefn get_format(&self) -> ImageFormat
fn get_format(&self) -> ImageFormat
Gets the format of the filter pass framebuffer.