// d3dkmddi.h
typedef struct _DXGKARG_CREATEDOORBELL_FLAGS {
union {
struct {
UINT ResizeRingBufferOperation : 1;
UINT Reserved : 31;
};
UINT Value;
};
} DXGKARG_CREATEDOORBELL_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_CREATEDOORBELL_FLAGS structure specifies doorbell creation flags.
ResizeRingBufferOperationIndication from UMD to KMD that a doorbell is being recreated for this hardware queue with a new, resized hRingBuffer ring buffer.
ReservedReserved; set to zero.
ValueAn alternative way to access the structure members.
For more information, see User-mode work submission.