// 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 referenceNo description available.
Structure filled in by OS upon successful completion of the DxgkCbAcquirePostDisplayOwnership2 callback to provide information about the display state a driver is inheriting.
FrameBufferStateValue indicating the state of the frame buffer. See definition of DXGK_FRAMEBUFFER_STATE enum for details.
ValueThe value used to operate over the combined bitfields.