Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MovieRenderTileImage.h |
| Include | #include "MovieRenderTileImage.h" |
Syntax
struct FImageTilePlane
Remarks
Types Structure for a single tile.
Variables
| Type | Name | Description | |
|---|---|---|---|
| float | AccumulationWeight | Accumulation weights, uniform for the whole plane. | |
| TArray64< float > | ChannelData | Actual channel data | |
| int32 | SizeX | Width of the image. | |
| int32 | SizeY | Height of the image. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Default constructor. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | AccumulateSinglePlane
(
const TArray64< float >& InRawData, |
Accumulate a single tile to this plane. | |
| void | Init
(
int32 InSizeX, |
Initialize the memory. Before using the memory, we also will need a call to ZeroPlane. | |
| void | Reset () |
Frees the memory and resets the sizes | |
| void | ZeroPlane () |
Zeroes the accumulation. Assumes the data is already allocated. |