// d3d12umddi.h
PFND3D12DDI_CHECKMULTISAMPLEQUALITYLEVELS Pfnd3d12ddiCheckmultisamplequalitylevels;
VOID Pfnd3d12ddiCheckmultisamplequalitylevels(
D3D12DDI_HDEVICE hDevice,
DXGI_FORMAT Format,
UINT SampleCount,
D3D12DDI_MULTISAMPLE_QUALITY_LEVEL_FLAGS Flags,
UINT *pNumQualityLevels
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Implemented by the client driver to check multi-sample quality levels.
hDeviceA handle to a device.
FormatA DXGI_FORMAT.
SampleCountThe sample count.
FlagsMulti-sample quality level flags.
pNumQualityLevelsThe number of quality levels.
//Declaration
PFND3D12DDI_CHECKMULTISAMPLEQUALITYLEVELS Pfnd3d12ddiCheckmultisamplequalitylevels;
// Definition
VOID Pfnd3d12ddiCheckmultisamplequalitylevels
(
D3D12DDI_HDEVICE hDevice
DXGI_FORMAT Format
UINT SampleCount
D3D12DDI_MULTISAMPLE_QUALITY_LEVEL_FLAGS Flags
UINT *pNumQualityLevels
)
{...}
PFND3D12DDI_CHECKMULTISAMPLEQUALITYLEVELS