XMStoreUShortN4 函数 (directxpackedvector.h)

XMVECTOR 存储在 XMUSHORTN4中。

语法

void XM_CALLCONV XMStoreUShortN4(
  [out] XMUSHORTN4 *pDestination,
  [in]  FXMVECTOR  V
) noexcept;

参数

[out] pDestination

存储数据的地址。

[in] V

包含要存储的数据的向量。

返回值

无。

备注

以下伪代码演示函数的操作。

XMVECTOR N;	
static const XMVECTOR  Scale = {65535.0f, 65535.0f, 65535.0f, 65535.0f};

assert(pDestination);

N = XMVectorClamp(V, XMVectorZero(), g_XMOne);
N = XMVectorMultiplyAdd(N, Scale, g_XMOneHalf);
N = XMVectorTruncate(N);

pDestination->x = (int16_t)N.v[0];
pDestination->y = (int16_t)N.v[1];
pDestination->z = (int16_t)N.v[2];
pDestination->w = (int16_t)N.v[3];

平台要求

Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 以及 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。

要求

要求
目标平台 Windows
标头 directxpackedvector.h (包括 DirectXPackedVector.h)

另请参阅

DirectXMath 库矢量存储函数