Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FCompressedGrowableBuffer
Description
Appends passed in data to the buffer. The data needs to be less than the max pending buffer size. The code will assert on this assumption.
Appends passed in data to the buffer. The data needs to be less than the max pending buffer size. The code will assert on this assumption.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CompressedGrowableBuffer.h |
| Include Path | #include "Misc/CompressedGrowableBuffer.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Compression.cpp |
int32 Append
(
void * Data,
int32 Size
)
Offset of data, used for retrieval later on
Parameters
| Name | Remarks |
|---|---|
| Data | Data to append |
| Size | Size of data in bytes. |
| Data | Data to append |
| Size | Size of data in bytes. |