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 |