// d3d12umddi.h
PFND3D12DDI_DISPATCH_MESH_0074 Pfnd3d12ddiDispatchMesh0074;
VOID Pfnd3d12ddiDispatchMesh0074(
D3D12DDI_HCOMMANDLIST unnamedParam1,
UINT unnamedParam2,
UINT unnamedParam3,
UINT unnamedParam4
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
PFND3D12DDI_DISPATCH_MESH_0074 launches the thread groups for the amplification shader, or for the mesh shader in a case where no amplification shader is attached.
unnamedParam1A handle to the command list.
unnamedParam2Thread group count in X direction.
unnamedParam3Thread group count in Y direction.
unnamedParam4Thread group count in Z direction.
//Declaration
PFND3D12DDI_DISPATCH_MESH_0074 Pfnd3d12ddiDispatchMesh0074;
// Definition
VOID Pfnd3d12ddiDispatchMesh0074
(
D3D12DDI_HCOMMANDLIST,
UINT,
UINT,
UINT
)
{...}
See the Mesh Shader Specification for more information.