D3D12DDI_NODE_LIST_ENTRY_0108 - NtDoc

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

typedef struct D3D12DDI_NODE_LIST_ENTRY_0108 {
  const D3D12DDI_NODE_0108            *pNode;
  const D3D12DDI_NODE_LIST_ENTRY_0108 *pNext;
} D3D12DDI_NODE_LIST_ENTRY_0108;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d12umddi-d3d12ddi_node_list_entry_0108)

Description

The D3D12DDI_NODE_LIST_ENTRY_0108 structure is used as part of a linked list to represent individual nodes in a work graph. Each node represents a unit of work or operation that can be executed on the GPU.

Members

pNode

Pointer to a D3D12DDI_NODE_0108 structure that describes the node.

pNext

Pointer to the next node in the list.

Remarks

This linked list structure enables the definition of complex execution flows where each node can depend on the completion of others, forming a directed acyclic graph (DAG) of operations.

For more information, see Work graphs.

See also

D3D12DDI_WORK_GRAPH_DESC_0108

PFND3D12DDI_ADD_TO_STATE_OBJECT_0072

PFND3D12DDI_CREATE_STATE_OBJECT_0054

PFND3D12DDI_DISPATCH_GRAPH_0108