// d3d12umddi.h
PFND3D12DDI_ENUMERATE_META_COMMANDS_0052 Pfnd3d12ddiEnumerateMetaCommands0052;
HRESULT Pfnd3d12ddiEnumerateMetaCommands0052(
D3D12DDI_HDEVICE unnamedParam1,
UINT *pNumMetaCommands,
D3D12DDIARG_META_COMMAND_DESC *pDescs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PFND3D12DDI_ENUMERATE_META_COMMANDS_0052 callback function enumerates meta-commands.
unnamedParam1A handle to the display device (graphics context).
pNumMetaCommandsPointer to a value in which the number of enumerated meta-commands is written.
pDescsPointer to an array of D3D12DDIARG_META_COMMAND_DESC structures containing the meta-command descriptions.
Returns HRESULT.
PFND3D12DDI_CREATE_META_COMMAND_0052