Navigation
Unreal Engine C++ API Reference > Developer > ProfilerService
References
Module | ProfilerService |
Header | /Engine/Source/Developer/ProfilerService/Public/IProfilerServiceManager.h |
Include | #include "IProfilerServiceManager.h" |
Syntax
struct FProfilerFileChunkHeader
Remarks
Class that describes basic information about one file chunk.
Variables
Type | Name | Description |
---|---|---|
int64 | ChunkOffset | Offset of this chunk. |
int64 | ChunkSize | Size of this chunk. |
EProfilerFileCh... | ChunkType | File chunk type |
int64 | FileSize | The size of the file. |
Constructors
Type | Name | Description |
---|---|---|
FProfilerFileChunkHeader () | Default constructor. | |
FProfilerFileChunkHeader ( int64 InChunkOffset, int64 InChunkSize, int64 InFileSize, EProfilerFileChunkType::Type InChun... ) | Initialization constructor. |
Functions
Type | Name | Description |
---|---|---|
TArray< uint... | AsArray () | Serializes this file chunk header as an array of bytes. |
void | Validate () | Performs sanity checks to make sure that header data is valid. |
Constants
Name | Description |
---|---|
DefChunkSize | Size of the file chunk. |