Skip to content

Documentation / scene / CompiledRenderGraph

Interface: CompiledRenderGraph

Defined in: libs/scene/src/render/rendergraph/types.ts:352

Result of compiling a render graph.

Contains the ordered list of passes to execute and lifetime information for automatic resource management.

Properties

orderedPasses

readonly orderedPasses: readonly RGPass<unknown>[]

Defined in: libs/scene/src/render/rendergraph/types.ts:354

Topologically sorted passes (only non-culled passes).


lifetimes

readonly lifetimes: ReadonlyMap<number, RGResourceLifetime>

Defined in: libs/scene/src/render/rendergraph/types.ts:356

Resource lifetime information keyed by resource ID.

Released under the MIT License.