XMLoadSInt3

Loads signed integer data into the x, y, and z components of an XMVECTOR.

Syntax

XMVECTOR XMLoadSInt3(
         const XMINT3 *pSource
)  

Parameters

pSource
Type: XMINT3 *

[in]

Address of an XMINT3 structure containing the data to load.

Return value

Type: XMVECTOR 

Returns an XMVECTOR loaded with the data from the pSource parameter.

Remarks

For 16-byte aligned memory, it may be faster to use XMLoadInt3A with a casting operator.

The following pseudocode shows the operation of this function.

XMVECTOR vectorOut;

vectorOut.x = (float)pSource->x;
vectorOut.y = (float)pSource->y;
vectorOut.z = (float)pSource->z;
vectorOut.w = 0;

return vectorOut;  

Requirements

Header: Declared in directxmath.h.