DXGK_DISPLAY_OWNERSHIP_FLAGS - NtDoc

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

typedef struct _DXGK_DISPLAY_OWNERSHIP_FLAGS {
  union {
    struct {
      DXGK_FRAMEBUFFER_STATE FrameBufferState : 4;
    };
    UINT Value;
  };
} DXGK_DISPLAY_OWNERSHIP_FLAGS, *PDXGK_DISPLAY_OWNERSHIP_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-dispmprt-_dxgk_display_ownership_flags)

_DXGK_DISPLAY_OWNERSHIP_FLAGS structure

Description

Structure filled in by OS upon successful completion of the DxgkCbAcquirePostDisplayOwnership2 callback to provide information about the display state a driver is inheriting.

Members

FrameBufferState

Value indicating the state of the frame buffer. See definition of DXGK_FRAMEBUFFER_STATE enum for details.

Value

The value used to operate over the combined bitfields.