Fungsi XMLoadUDecN4 (directxpackedvector.h)
Memuat XMUDECN4 ke dalam XMVECTOR.
Sintaks
XMVECTOR XM_CALLCONV XMLoadUDecN4(
[in] const XMUDECN4 *pSource
) noexcept;
Parameter
[in] pSource
Alamat struktur XMUDECN4 yang akan dimuat.
Nilai kembali
Mengembalikan XMVECTOR yang dimuat dengan data dari parameter pSource .
Keterangan
Pseudocode berikut menunjukkan pengoperasian fungsi.
XMVECTOR vectorOut;
uint32_t Element;
Element = pSource->v & 0x3FF;
vectorOut.x = (float)Element / 1023.f;
Element = (pSource->v >> 10) & 0x3FF;
vectorOut.y = (float)Element / 1023.f;
Element = (pSource->v >> 20) & 0x3FF;
vectorOut.z = (float)Element / 1023.f;
vectorOut.w = (float)(pSource->v >> 30) / 3.f;
return vectorOut;
Persyaratan Platform
Microsoft Visual Studio 2010 atau Microsoft Visual Studio 2012 dengan Windows SDK untuk Windows 8. Didukung untuk aplikasi desktop Win32, aplikasi Windows Store, dan aplikasi Windows Phone 8.Persyaratan
Persyaratan | Nilai |
---|---|
Target Platform | Windows |
Header | directxpackedvector.h (termasuk DirectXMath.h) |