PFND3D12DDI_CREATE_DEPTH_STENCIL_VIEW - NtDoc

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

PFND3D12DDI_CREATE_DEPTH_STENCIL_VIEW Pfnd3d12ddiCreateDepthStencilView;

VOID Pfnd3d12ddiCreateDepthStencilView(
  D3D12DDI_HDEVICE unnamedParam1,
  const D3D12DDIARG_CREATE_DEPTH_STENCIL_VIEW *unnamedParam2,
  D3D12DDI_CPU_DESCRIPTOR_HANDLE DestDescriptor
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

PFND3D12DDI_CREATE_DEPTH_STENCIL_VIEW callback function

Description

The PFND3D12DDI_CREATE_DEPTH_STENCIL_VIEW callback function creates a depth stencil view.

Parameters

unnamedParam1

A handle to the display device (graphics context).

unnamedParam2

A pointer to a D3D12DDIARG_CREATE_DEPTH_STENCIL_VIEW structure that describes the parameters that the display driver uses to create a depth stencil view.

DestDescriptor

A pointer to D3D12DDI_CPU_DESCRIPTOR_HANDLE structure that describes the depth buffer bindings.

Prototype

//Declaration

PFND3D12DDI_CREATE_DEPTH_STENCIL_VIEW Pfnd3d12ddiCreateDepthStencilView;

// Definition

VOID Pfnd3d12ddiCreateDepthStencilView
(
    D3D12DDI_HDEVICE hDevice
    CONST D3D12DDIARG_CREATE_DEPTH_STENCIL_VIEW *pCreateDepthStencilView
    D3D12DDI_CPU_DESCRIPTOR_HANDLE DestDescriptor
)
{...}

Remarks

See also