PFND3D12DDI_CREATEDEPTHSTENCILSTATE_0010 - NtDoc

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

PFND3D12DDI_CREATEDEPTHSTENCILSTATE_0010 Pfnd3d12ddiCreatedepthstencilstate0010;

VOID Pfnd3d12ddiCreatedepthstencilstate0010(
  D3D12DDI_HDEVICE unnamedParam1,
  const D3D12DDI_DEPTH_STENCIL_DESC_0010 *unnamedParam2,
  D3D12DDI_HDEPTHSTENCILSTATE unnamedParam3
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

PFND3D12DDI_CREATEDEPTHSTENCILSTATE_0010 callback function

Description

The PFND3D12DDI_CREATEDEPTHSTENCILSTATE_0010 callback function creates a depth stencil state.

Parameters

unnamedParam1

A handle to the display device (graphics context).

unnamedParam2

A pointer to a D3D12DDI_DEPTH_STENCIL_DESC_0010 structure that describes the parameters that the user-mode display driver uses to create a depth stencil state.

unnamedParam3

A handle to the driver's private data for the depth stencil state. The driver returns the size, in bytes, of the memory region that the Microsoft Direct3D runtime must allocate for the private data from a call to the driver's CalcPrivateDepthStencilStateSize function. The handle is really just a pointer to a region of memory, the size of which the driver requested. The driver uses this region of memory to store internal data structures that are related to its depth stencil state object.

Prototype

//Declaration

PFND3D12DDI_CREATEDEPTHSTENCILSTATE_0010 Pfnd3d12ddiCreatedepthstencilstate0010;

// Definition

VOID Pfnd3d12ddiCreatedepthstencilstate0010
(
    D3D12DDI_HDEVICE hDevice
    CONST D3D12DDI_DEPTH_STENCIL_DESC_0010 *pDepthStencilDesc
    D3D12DDI_HDEPTHSTENCILSTATE hDepthStencilState
)
{...}

See also