PFND3D12DDI_CREATECOMMANDQUEUE_0050 - NtDoc

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

PFND3D12DDI_CREATECOMMANDQUEUE_0050 Pfnd3d12ddiCreatecommandqueue0050;

HRESULT Pfnd3d12ddiCreatecommandqueue0050(
  D3D12DDI_HDEVICE unnamedParam1,
  const D3D12DDIARG_CREATECOMMANDQUEUE_0050 *unnamedParam2,
  D3D12DDI_HCOMMANDQUEUE unnamedParam3,
  D3D12DDI_HRTCOMMANDQUEUE unnamedParam4
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3d12umddi-pfnd3d12ddi_createcommandqueue_0050)

PFND3D12DDI_CREATECOMMANDQUEUE_0050 callback function

Description

The PFND3D12DDI_CREATECOMMANDQUEUE_0050 callback function is used to create command queue.

Parameters

unnamedParam1

The handle of a device.

unnamedParam2

Pointer to a D3D12DDIARG_CREATECOMMANDQUEUE_0050 structure that contains arguments used to create a command queue.

unnamedParam3

The handle of the command queue for the driver to use when it calls back into the runtime.

unnamedParam4

Return value

Returns HRESULT.

Prototype

//Declaration

PFND3D12DDI_CREATECOMMANDQUEUE_0050 Pfnd3d12ddiCreatecommandqueue0050;

// Definition

HRESULT Pfnd3d12ddiCreatecommandqueue0050
(
    D3D12DDI_HDEVICE Arg1
    CONST D3D12DDIARG_CREATECOMMANDQUEUE_0050 *
    D3D12DDI_HCOMMANDQUEUE Arg2
    D3D12DDI_HRTCOMMANDQUEUE Arg3
)
{...}

Remarks

Access this callback function by using a device functions core structure, such as the D3D12DDI_DEVICE_FUNCS_CORE_0050 structure.

See also