XMStoreDec4 関数 (directxpackedvector.h)
XMDEC4 に XMVECTOR を格納します。
構文
void XM_DEPRECATED XM_CALLCONV XMStoreDec4(
[out] XMDEC4 *pDestination,
[in] FXMVECTOR V
) noexcept;
パラメーター
[out] pDestination
データを格納するアドレス。
[in] V
格納するデータを含むベクター。
戻り値
[なし] :
解説
次の擬似コードは、 関数の操作を示しています。
XMVECTOR N;
static const XMVECTOR Min = {-511.0f, -511.0f, -511.0f, -1.0f};
static const XMVECTOR Max = {511.0f, 511.0f, 511.0f, 1.0f};
N = XMVectorClamp(V, Min, Max);
pDestination->v = ((int32_t)N.v[3] << 30) |
(((int32_t)N.v[2] & 0x3FF) << 20) |
(((int32_t)N.v[1] & 0x3FF) << 10) |
(((int32_t)N.v[0] & 0x3FF));
プラットフォームの要件
Microsoft Visual Studio 2010 または Microsoft Visual Studio 2012 と Windows SDK for Windows 8。 Win32 デスクトップ アプリ、Windows ストア アプリ、Windows Phone 8 アプリでサポートされます。要件
要件 | 値 |
---|---|
対象プラットフォーム | Windows |
ヘッダー | directxpackedvector.h (DirectXPackedVector.h を含む) |