ID3D11Device::CheckMultisampleQualityLevels Method

Get the number of quality levels available during multisampling.

Syntax

HRESULT CheckMultisampleQualityLevels(
  [in]   DXGI_FORMAT Format,
  [in]   UINT SampleCount,
  [out]  UINT *pNumQualityLevels
);

Parameter

  • Format [in]
    Typ: DXGI_FORMAT

    The texture format. See DXGI_FORMAT.

  • SampleCount [in]
    Typ: UINT

    The number of samples during multisampling.

  • pNumQualityLevels [out]
    Typ: UINT*

    Number of quality levels supported by the adapter. See remarks.

Rückgabewert

Typ: HRESULT

This method returns one of the following Direct3D 11 Return Codes.

Hinweise

When multisampling a texture, the number of quality levels available for an adapter is dependent on the texture format used and the number of samples requested. The maximum number of quality levels is defined by D3D11_MAX_MULTISAMPLE_SAMPLE_COUNT in D3D11.h. If this method returns 0, the format and sample count combination is not supported for the installed adapter.

Furthermore, the definition of a quality level is up to each hardware vendor to define, however no facility is provided by Direct3D to help discover this information.

Note that FEATURE_LEVEL_10_1 devices are required to support 4x MSAA for all render targets except R32G32B32A32 and R32G32B32. FEATURE_LEVEL_11_0 devices are required to support 4x MSAA for all render target formats, and 8x MSAA for all render target formats except R32G32B32A32 formats.

Anforderungen

Header

D3D11.h

Bibliothek

D3D11.lib

Siehe auch

ID3D11Device