XMLoadShort4 함수(directxpackedvector.h)
구문
XMVECTOR XM_CALLCONV XMLoadShort4(
[in] const XMSHORT4 *pSource
) noexcept;
매개 변수
[in] pSource
로드할 XMSHORT4 구조체의 주소입니다.
반환 값
pSource 매개 변수의 데이터와 함께 로드된 XMVECTOR 구조를 반환합니다.
설명
XMSHORT4의 4개 멤버는 단정밀도 형식으로 변환되고 XMVECTOR의 해당 멤버에 로드됩니다. 다음 의사 코드는 이 함수의 작업을 보여 줍니다.
XMVECTOR Result;
Result.x = (float)pSource->x;
Result.y = (float)pSource->y;
Result.z = (float)pSource->z;
Result.w = (float)pSource->w;
return Result;
플랫폼 요구 사항
Windows 8용 Windows SDK를 사용하는 Microsoft Visual Studio 2010 또는 Microsoft Visual Studio 2012. Win32 데스크톱 앱, Windows 스토어 앱 및 Windows Phone 8개 앱에 지원됩니다.요구 사항
대상 플랫폼 | Windows |
헤더 | directxpackedvector.h(DirectXPackedVector.h 포함) |