次の方法で共有


XMStoreInt2 関数 (directxmath.h)

XMVECTOR を 2 要素のuint32_t配列に格納します。

構文

void XM_CALLCONV XMStoreInt2(
  [out] uint32_t  *pDestination,
  [in]  FXMVECTOR V
) noexcept;

パラメーター

[out] pDestination

データを格納するアドレス。 このポインターは、4 バイトアラインされている必要があります。

[in] V

格納するデータを含むベクター。

戻り値

[なし] :

解説

次の擬似コードは、 関数の操作を示しています。

uint32_t* pElement = (uint32_t*)pDestination;

assert(pDestination);
assert(((uint32_t_PTR)pDestination & 3) == 0);

pElement[0] = V.u[0];
pElement[1] = V.u[1];

プラットフォームの要件

Windows SDK for Windows 8 を使用する Microsoft Visual Studio 2010 または Microsoft Visual Studio 2012。 Win32 デスクトップ アプリ、Windows ストア アプリ、Windows Phone 8 アプリでサポートされます。

要件

   
対象プラットフォーム Windows
ヘッダー directxmath.h

関連項目

DirectXMath ライブラリ ベクター ストア関数

XMINT2

XMStoreSInt2

XMStoreUInt2

XMUINT2