XMLoadSInt4 関数 (directxmath.h)
符号付き整数データを XMVECTOR に読み込みます。
構文
XMVECTOR XM_CALLCONV XMLoadSInt4(
[in] const XMINT4 *pSource
) noexcept;
パラメーター
[in] pSource
読み込むデータを含む XMINT4 構造体のアドレス。
戻り値
pSource パラメーターからデータを読み込んだ XMVECTOR を返します。
注釈
16 バイトアラインメモリの場合、キャスト演算子で XMLoadInt4A を使用する方が高速な場合があります。
次の擬似コードは、この関数の操作を示しています。
XMVECTOR vectorOut;
vectorOut.x = (float)pSource->x;
vectorOut.y = (float)pSource->y;
vectorOut.z = (float)pSource->z;
vectorOut.w = (float)pSource->w;
return vectorOut;
プラットフォームの要件
Windows 8用のWindows SDKを含む Microsoft Visual Studio 2010 または Microsoft Visual Studio 2012。 Win32 デスクトップ アプリ、Windows ストア アプリ、Windows Phone 8 アプリでサポートされます。要件
要件 | 値 |
---|---|
対象プラットフォーム | Windows |
ヘッダー | directxmath.h |