![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <DerivedData.h>
Public Member Functions | |
| FDerivedDataIoOptions ()=default | |
| constexpr | FDerivedDataIoOptions (FMutableMemoryView TargetView, uint64 SourceOffset=0) |
| constexpr | FDerivedDataIoOptions (uint64 SourceOffset, uint64 SourceSize=MAX_uint64) |
| constexpr void * | GetTarget () const |
| constexpr uint64 | GetSize () const |
| constexpr uint64 | GetOffset () const |
Options for operations on a Derived Data Reference.
|
default |
Reads the entirety of the referenced data into a buffer that is allocated on demand.
|
inlineexplicitconstexpr |
Reads referenced data into the target view, with an optional offset into the source data.
The size of the data from the source offset must be at least the size of the target view.
|
inlineexplicitconstexpr |
Reads referenced data into a buffer that is allocated on demand, with an optional offset into the source data.
The size of the data from the source offset must be at least the given source size, if not MAX_uint64.