// d3dkmdt.h
typedef enum _DXGK_RENDER_PIPELINE_STAGE {
DXGK_RENDER_PIPELINE_STAGE_UNKNOWN,
DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER,
DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER,
DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER,
DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT,
DXGK_RENDER_PIPELINE_STAGE_RASTERIZER,
DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER,
DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER
} DXGK_RENDER_PIPELINE_STAGE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_RENDER_PIPELINE_STAGE enumeration describes the render pipeline stage during which the GPU error has occurred.
DXGK_RENDER_PIPELINE_STAGE_UNKNOWNIndicates that the stage where the error occurred is unknown.
DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLERIndicates that the error occurred at the input assembler stage.
DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADERIndicates that the error occurred at the vertex shader stage.
DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADERIndicates that the error occurred at the geometry shader stage.
DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUTIndicates that the error occurred at the stream output stage.
DXGK_RENDER_PIPELINE_STAGE_RASTERIZERIndicates that the error occurred at the rasterizer stage.
DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADERIndicates that the error occurred at the pixel shader stage.
DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGERIndicates that the error occurred at the output merger stage.