XMStoreByte4-Funktion (directxpackedvector.h)
Speichert eine XMVECTOR-Instanz in einem XMBYTE4-Objekt.
Syntax
void XM_CALLCONV XMStoreByte4(
[out] XMBYTE4 *pDestination,
[in] FXMVECTOR V
) noexcept;
Parameter
[out] pDestination
Adresse, an der die Daten gespeichert werden sollen.
[in] V
Vektor mit den zu speichernden Daten.
Rückgabewert
Keine.
Hinweise
Der folgende Pseudocode veranschaulicht den Vorgang der Funktion.
XMVECTOR N;
static const XMVECTOR Min = {-127.0f, -127.0f, -127.0f, -127.0f};
static const XMVECTOR Max = {127.0f, 127.0f, 127.0f, 127.0f};
N = XMVectorClamp(V, Min, Max);
N = XMVectorRound(N);
pDestination->x = (int8_t)N.v[0];
pDestination->y = (int8_t)N.v[1];
pDestination->z = (int8_t)N.v[2];
pDestination->w = (int8_t)N.v[3];
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 (directXPackedVector.h einschließen) |