DXGK_MONITOR_INTERFACE_V2 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

typedef struct _DXGK_MONITOR_INTERFACE_V2 {
  DXGK_MONITOR_INTERFACE_VERSION                  Version;
  DXGKDDI_MONITOR_ACQUIREMONITORSOURCEMODESET     pfnAcquireMonitorSourceModeSet;
  DXGKDDI_MONITOR_RELEASEMONITORSOURCEMODESET     pfnReleaseMonitorSourceModeSet;
  DXGKDDI_MONITOR_GETMONITORFREQUENCYRANGESET     pfnGetMonitorFrequencyRangeSet;
  DXGKDDI_MONITOR_GETMONITORDESCRIPTORSET         pfnGetMonitorDescriptorSet;
  DXGKDDI_MONITOR_GETADDITIONALMONITORMODESET     pfnGetAdditionalMonitorModeSet;
  DXGKDDI_MONITOR_RELEASEADDITIONALMONITORMODESET pfnReleaseAdditionalMonitorModeSet;
} DXGK_MONITOR_INTERFACE_V2;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-_dxgk_monitor_interface_v2)

DXGK_MONITOR_INTERFACE_V2 structure

Description

The DXGK_MONITOR_INTERFACE_V2 structure contains pointers to functions that belong to the monitor interface, which is implemented by the video present network (VidPN) manager.

Members

Version

A value from the DXGK_MONITOR_INTERFACE_VERSION enumeration that indicates the monitor interface version. Must be set to 2.

pfnAcquireMonitorSourceModeSet

A pointer to the pfnAcquireMonitorSourceModeSet function.

pfnReleaseMonitorSourceModeSet

A pointer to the pfnReleaseMonitorSourceModeSet function.

pfnGetMonitorFrequencyRangeSet

A pointer to the pfnGetMonitorFrequencyRangeSet function.

pfnGetMonitorDescriptorSet

A pointer to the pfnGetMonitorDescriptorSet function.

pfnGetAdditionalMonitorModeSet

A pointer to the pfnGetAdditionalMonitorModeSet function.

pfnReleaseAdditionalMonitorModeSet

A pointer to the pfnReleaseAdditionalMonitorModeSet function.

Remarks

A display miniport driver must verify the interface version specified in the Version member before using this structure.

See also

DXGK_MONITOR_INTERFACE