D3D12DDIARG_CREATECOMMANDALLOCATOR - NtDoc

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

typedef struct D3D12DDIARG_CREATECOMMANDALLOCATOR {
  D3D12DDI_HCOMMANDALLOCATOR   hDrvCommandAllocator;
  D3D12DDI_COMMAND_LIST_TYPE   Type;
  D3D12DDI_COMMAND_QUEUE_FLAGS QueueFlags;
} D3D12DDIARG_CREATECOMMANDALLOCATOR;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The D3D12DDIARG_CREATECOMMANDALLOCATOR structure describes a command allocator to create.

Members

hDrvCommandAllocator

Handle to associate with the command allocator. The driver must use this handle to identify the command allocator in subsequent calls to the driver.

Type

A D3D12DDI_COMMAND_LIST_TYPE value that specifies the type of command list associated with the command allocator.

QueueFlags

A D3D12DDI_COMMAND_QUEUE_FLAGS value that specifies the command queue flags associated with the command allocator.

Remarks

This structure is passed to the pfnCreateCommandAllocator function.

See also

D3D12DDI_COMMAND_LIST_TYPE

D3D12DDI_COMMAND_QUEUE_FLAGS

pfnCreateCommandAllocator