Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
VectorRegister4Float VectorLoadTwoPairsFloat
(
const float* Ptr1, |
Loads 4 unaligned floats - 2 from the first pointer, 2 from the second, and packs them in to 1 vector. | Math/UnrealMathFPU.h | |
VectorRegister4Double VectorLoadTwoPairsFloat
(
const double* Ptr1, |
Math/UnrealMathFPU.h |
VectorLoadTwoPairsFloat(const float , const float )
Description
Loads 4 unaligned floats - 2 from the first pointer, 2 from the second, and packs them in to 1 vector.
| Name | VectorLoadTwoPairsFloat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/UnrealMathFPU.h |
| Include Path | #include "Math/UnrealMathFPU.h" |
VectorRegister4Float VectorLoadTwoPairsFloat
(
const float * Ptr1,
const float * Ptr2
)
VectorRegister(Ptr1[0], Ptr1[1], Ptr2[0], Ptr2[1])
Parameters
| Name | Remarks |
|---|---|
| Ptr1 | Unaligned memory pointer to the first 2 floats |
| Ptr2 | Unaligned memory pointer to the second 2 floats |
VectorLoadTwoPairsFloat(const double , const double )
| Name | VectorLoadTwoPairsFloat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/UnrealMathFPU.h |
| Include Path | #include "Math/UnrealMathFPU.h" |
VectorRegister4Double VectorLoadTwoPairsFloat
(
const double * Ptr1,
const double * Ptr2
)