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 8용 Windows SDK를 사용하는 Microsoft Visual Studio 2010 또는 Microsoft Visual Studio 2012. Win32 데스크톱 앱, Windows 스토어 앱 및 Windows Phone 8개 앱에 지원됩니다.요구 사항
대상 플랫폼 | Windows |
헤더 | directxmath.h |