XMStoreShortN2-Funktion (directxpackedvector.h)
Speichert einen XMVECTOR in einer XMSHORTN2.
Syntax
void XM_CALLCONV XMStoreShortN2(
[out] XMSHORTN2 *pDestination,
[in] FXMVECTOR V
) noexcept;
Parameter
[out] pDestination
Adresse, an der die Daten gespeichert werden sollen.
[in] V
Vektor, der die zu speichernden Daten enthält.
Rückgabewert
Keine.
Hinweise
Der folgende Pseudocode veranschaulicht den Betrieb der Funktion.
XMVECTOR N;
static const XMVECTOR Scale = {32767.0f, 32767.0f, 32767.0f, 32767.0f};
assert(pDestination);
N = XMVectorClamp(V, g_XMNegativeOne, g_XMOne);
N = XMVectorMultiply(N, Scale);
N = XMVectorRound(N);
pDestination->x = (int16_t)N.v[0];
pDestination->y = (int16_t)N.v[1];
Plattformanforderungen
Microsoft Visual Studio 2010 oder Microsoft Visual Studio 2012 mit dem Windows SDK für Windows 8. Unterstützt für Win32-Desktop-Apps, Windows Store-Apps und Windows Phone 8-Apps.Anforderungen
Zielplattform | Windows |
Kopfzeile | directxpackedvector.h (einschließlich DirectXPackedVector.h) |