// d3dkmdt.h
typedef enum _DXGK_GENERAL_ERROR_CODE {
DXGK_GENERAL_ERROR_PAGE_FAULT,
DXGK_GENERAL_ERROR_INVALID_INSTRUCTION
} DXGK_GENERAL_ERROR_CODE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_GENERAL_ERROR_CODE enumeration specifies a set of predefined graphics processing unit (GPU) errors reported via a page fault interrupt.
DXGK_GENERAL_ERROR_PAGE_FAULTIndicates that the GPU encountered a page fault. The FaultedVirtualAddress and PageTableLevel members of the DXGKARGCB_NOTIFY_INTERRUPT_DATA structure should be used to provide further information about the GPU virtual address operation that caused the fault.
DXGK_GENERAL_ERROR_INVALID_INSTRUCTIONIndicates that the GPU encountered an invalid instruction in the DMA command buffer.
DXGKARGCB_NOTIFY_INTERRUPT_DATA