[][src]Trait bevy_render::render_graph::base::BaseRenderGraphBuilder

pub trait BaseRenderGraphBuilder {
    fn add_base_graph(
        &mut self,
        config: &BaseRenderGraphConfig,
        msaa: &Msaa
    ) -> &mut Self; }

The "base render graph" provides a core set of render graph nodes which can be used to build any graph. By itself this graph doesn't do much, but it allows Render plugins to interop with each other by having a common set of nodes. It can be customized using BaseRenderGraphConfig.

Required methods

fn add_base_graph(
    &mut self,
    config: &BaseRenderGraphConfig,
    msaa: &Msaa
) -> &mut Self

Loading content...

Implementors

impl BaseRenderGraphBuilder for RenderGraph[src]

Loading content...