// d3d12umddi.h
PFND3D12DDI_GETMIPPACKING Pfnd3d12ddiGetmippacking;
VOID Pfnd3d12ddiGetmippacking(
D3D12DDI_HDEVICE hDevice,
D3D12DDI_HRESOURCE hTiledResource,
UINT *pNumPackedMips,
UINT *pNumTilesForPackedMips
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Gets MIP packing info.
hDeviceA device handle.
hTiledResourceA tiled resource handle.
pNumPackedMipsPointer to the number of packed MIPs.
pNumTilesForPackedMipsPointer to the number of tiles for packed MIPs.
//Declaration
PFND3D12DDI_GETMIPPACKING Pfnd3d12ddiGetmippacking;
// Definition
VOID Pfnd3d12ddiGetmippacking
(
D3D12DDI_HDEVICE hDevice
D3D12DDI_HRESOURCE hTiledResource
UINT *pNumPackedMips
UINT *pNumTilesForPackedMips
)
{...}
PFND3D12DDI_GETMIPPACKING