Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/Graph
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/MovieGraphDataTypes.h |
| Include | #include "Graph/MovieGraphDataTypes.h" |
Syntax
struct FMovieGraphOutputMergerFrame
Remarks
A collection of all of the data needed to produce the one output frame on disk. This holds all of the pixel data associated with the output frame at once, so we can pass it to our image writing/video encoders in one go, to ensure we can do things like Multilayer EXRs which embed all of the render passes inside of one file.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TStrongObjectPtr< UMovieGraphEvaluatedConfig > | EvaluatedConfig | The configuraton file that was being used by this frame during submission. | |
| TArray< FMovieGraphRenderDataIdentifier > | ExpectedRenderPasses | An array of expected data identifiers this frame. | |
| TMap< FMovieGraphRenderDataIdentifier, TUniquePtr< FImagePixelData > > | ImageOutputData | Stores the actual pixel data for each render pass. | |
| FMovieGraphTraversalContext | TraversalContext | Traversal context for the Movie Pipeline that isn't layer specific. |
Constructors
| Type | Name | Description | |
|---|---|---|---|