Partager via


Fonction XMLoadUShortN2 (directxpackedvector.h)

Charge un XMUSHORTN2 dans un XMVECTOR.

Syntaxe

XMVECTOR XM_CALLCONV XMLoadUShortN2(
  [in] const XMUSHORTN2 *pSource
) noexcept;

Paramètres

[in] pSource

Adresse de la structure XMUSHORTN2 à charger. Ce paramètre doit pointer vers la mémoire mise en cache.

Valeur retournée

Retourne un XMVECTOR chargé avec les données du paramètre pSource .

Notes

Le pseudo-code suivant vous montre l’opération de la fonction .

XMVECTOR vectorOut;

vectorOut.x = (float)pSource->x / 65535.0f;
vectorOut.y = (float)pSource->y / 65535.0f;
vectorOut.z = 0;
vectorOut.w = 0;
	
return vectorOut;

Configuration requise pour la plateforme

Microsoft Visual Studio 2010 ou Microsoft Visual Studio 2012 avec le SDK Windows pour Windows 8. Pris en charge pour les applications de bureau Win32, les applications du Windows Store et les applications Windows Phone 8.

Spécifications

   
Plateforme cible Windows
En-tête directxpackedvector.h (inclure DirectXMath.h)

Voir aussi

Fonctions de chargement de vecteurs de bibliothèque DirectXMath