Expand description
Starter RenderGraph that can be easily extended.
This is a fully put together pipeline to render with rend3. If you don’t need any customization, this should be drop in without worrying about it.
In order to start customizing it, copy the contents of
BaseRenderGraph::add_to_graph
into your own code and start modifying it.
This will allow you to insert your own routines and customize the behavior
of the existing routines.
BaseRenderGraphIntermediateState
intentionally has all of its members
public. If you want to change what rendergraph image things are rendering
to, or muck with any of the data in there, you are free to, and the
following routines will behave as you configure.
Structs§
- Base
Render Graph - Starter RenderGraph.
- Base
Render Graph Intermediate State - Struct that globs all the information the
BaseRenderGraph
needs. - PerTransparency
Info - Handles and information for a single type of transparency in the PBR pipeline.