XMLoadInt2A 函数 (directxmath.h)
将 16 字节对齐的数据加载到 XMVECTOR 的 x 和 y 组件中。
语法
XMVECTOR XM_CALLCONV XMLoadInt2A(
[in] const uint32_t *PSource
) noexcept;
参数
[in] PSource
要加载的 16 字节对齐数据的地址。
返回值
返回使用 XMVECTORI
pSource 参数中的数据加载的 。
注解
返回的 XMVECTOR 的 z 和 w 分量将初始化为 0。
若要将加载的 XMVECTOR 转换为浮点值,请使用 XMConvertVectorUIntToFloat 或 XMConvertVectorIntToFloat。
以下伪代码显示了 函数的操作。
XMVECTOR vectorOut;
uint32_t* pElement = (uint32_t*)pSource;
assert(((uint32_t_PTR)pSource & 0xF) == 0);
V.u[0] = pElement[0];
V.u[1] = pElement[1];
V.u[2] = 0;
V.u[3] = 0;
return vectorOut;
平台要求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 以及 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxmath.h |