Loads an XMXDEC4 into an XMVECTOR.
XMVECTOR XMLoadXDec4(
const XMXDEC4 *pSource
)
pSource
Type: XMXDEC4 *
[in]
Address of the XMXDEC4 structure to load.
Type: XMVECTOR
Returns an XMVECTOR loaded with the data from the pSource parameter.
The following pseudocode demonstrates the operation of the function.
XMVECTOR vectorOut;
uint32_t Element;
static const uint32_t SignExtend[] = {0x00000000, 0xFFFFFC00};
Element = pSource->v & 0x3FF;
vectorOut.x = (float)(int16_t)(Element | SignExtend[Element >> 9]);
Element = (pSource->v >> 10) & 0x3FF;
vectorOut.y = (float)(int16_t)(Element | SignExtend[Element >> 9]);
Element = (pSource->v >> 20) & 0x3FF;
vectorOut.z = (float)(int16_t)(Element | SignExtend[Element >> 9]);
vectorOut.w = (float)(pSource->v >> 30);
return vectorOut;
Header: Declared in directxpackedvector.h.