DXGK_VALIDATESUBMITCOMMANDFLAGS - NtDoc

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

typedef struct _DXGK_VALIDATESUBMITCOMMANDFLAGS {
  union {
    struct {
      UINT HardwareQueueSubmission : 1;
      UINT Reserved : 31;
    };
    UINT Value;
  };
} DXGK_VALIDATESUBMITCOMMANDFLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DXGK_VALIDATESUBMITCOMMANDFLAGS structure

Description

The DXGK_VALIDATESUBMITCOMMANDFLAGS structure contains flags needed to validate a command buffer.

Value

This value is used to operate over the structure members collectively.

Members

HardwareQueueSubmission

HardwareQueueSubmission can be one of the following values.

Value Meaning
TRUE DxgkDdiSubmitCommandToHwQueue called DXGKDDI_VALIDATESUBMITCOMMAND.
FALSE D3DKMTSubmitCommand called DXGKDDI_VALIDATESUBMITCOMMAND.

Reserved

Reserved.

Remarks

The kernel-mode driver should interpret these flags as needed to validate the command buffer.

See also

DXGKARG_VALIDATESUBMITCOMMAND

DXGKDDI_VALIDATESUBMITCOMMAND