Navigation
API > API/Plugins > API/Plugins/Niagara
Niagara supported buffer formats on the GPU.
| Name | ENiagaraGpuBufferFormat |
| Type | enum |
| Header File | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h |
| Include Path | #include "NiagaraCommon.h" |
Syntax
enum ENiagaraGpuBufferFormat
{
Float,
HalfFloat,
UnsignedNormalizedByte,
Max,
}
Values
| Name | Remarks |
|---|---|
| Float | 32-bit per channel floating point, range [-3.402823 x 10^38, 3.402823 x 10^38] |
| HalfFloat | 16-bit per channel floating point, range [-65504, 65504] |
| UnsignedNormalizedByte | 8-bit per channel fixed point, range [0, 1]. |
| Max |