// d3d12umddi.h
typedef enum D3D12DDI_NODE_PROPERTIES_TYPE_0108 {
D3D12DDI_NODE_PROPERTIES_TYPE_BROADCASTING_LAUNCH_0108,
D3D12DDI_NODE_PROPERTIES_TYPE_COALESCING_LAUNCH_0108,
D3D12DDI_NODE_PROPERTIES_TYPE_THREAD_LAUNCH_0108
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D12DDI_NODE_PROPERTIES_TYPE_0108 enumeration specifies the type of properties associated with a node in a work graph.
D3D12DDI_NODE_PROPERTIES_TYPE_BROADCASTING_LAUNCH_0108Indicates that the node properties are related to a broadcasting launch node (one input seen by many thread groups).
D3D12DDI_NODE_PROPERTIES_TYPE_COALESCING_LAUNCH_0108Indicates that the node properties are related to a coalescing launch node (variable inputs seen by each thread group).
D3D12DDI_NODE_PROPERTIES_TYPE_THREAD_LAUNCH_0108Indicates that the node properties are related to a thread launch node (one input per thread).
For more information, see Work graphs.