XMStoreInt4A 函数 (directxmath.h)
将 XMVECTOR 存储在 16 字节对齐的 4 个元素 uint32_t 数组中。
语法
void XM_CALLCONV XMStoreInt4A(
[out] uint32_t *pDestination,
[in] FXMVECTOR V
) noexcept;
参数
[out] pDestination
存储数据的地址。 此地址必须是 16 字节对齐的。
[in] V
包含要存储的数据的向量。
返回值
无。
备注
以下伪代码演示函数的操作。
uint32_t* pElement = (uint32_t*)pDestination;
assert(pDestination);
assert(((uint32_t_PTR)pDestination & 0xF) == 0);
pElement[0] = V.u[0];
pElement[1] = V.u[1];
pElement[2] = V.u[2];
pElement[3] = V.u[3];
平台要求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 以及 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxmath.h |