Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UAnimCompress
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void UnalignedWriteToStream
(
TArray< uint8 >& ByteStream, |
Utility function to append data to a byte stream. | Animation/AnimCompress.h | |
static void UnalignedWriteToStream
(
TArray< uint8 >& ByteStream, |
Utility function to write data to a byte stream. | Animation/AnimCompress.h |
UnalignedWriteToStream(TArray< uint8 > &, const void *, SIZE_T)
Description
Utility function to append data to a byte stream.
| Name | UnalignedWriteToStream |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimCompress.h |
| Include Path | #include "Animation/AnimCompress.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Animation/AnimCompress.cpp |
static void UnalignedWriteToStream
(
TArray < uint8 > & ByteStream,
const void * Src,
SIZE_T Len
)
Parameters
| Name | Remarks |
|---|---|
| ByteStream | Byte stream to append to |
| Src | Pointer to the source data to append |
| Len | Length in bytes of the source data to append |
UnalignedWriteToStream(TArray< uint8 > &, int32 &, const void *, SIZE_T)
Description
Utility function to write data to a byte stream.
| Name | UnalignedWriteToStream |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimCompress.h |
| Include Path | #include "Animation/AnimCompress.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Animation/AnimCompress.cpp |
static void UnalignedWriteToStream
(
TArray < uint8 > & ByteStream,
int32 & StreamOffset,
const void * Src,
SIZE_T Len
)
Parameters
| Name | Remarks |
|---|---|
| ByteStream | Byte stream to write to |
| StreamOffset | Offset in stream to start writing to |
| Src | Pointer to the source data to write |
| Len | Length in bytes of the source data to write |