PFND3DDDI_DELETEPIXELSHADER - NtDoc

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

PFND3DDDI_DELETEPIXELSHADER Pfnd3dddiDeletepixelshader;

HRESULT Pfnd3dddiDeletepixelshader(
  HANDLE hDevice,
  HANDLE unnamedParam2
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dumddi-pfnd3dddi_deletepixelshader)

PFND3DDDI_DELETEPIXELSHADER callback function

Description

The DeletePixelShader function cleans up driver-side resources that are associated with pixel shader code.

Parameters

hDevice

A handle to the display device (graphics context).

unnamedParam2

hShaderHandle [in]

A handle to the pixel shader code object.

Return value

DeletePixelShader returns S_OK or an appropriate error result if the pixel shader code object is not successfully cleaned up.

Remarks

The DeletePixelShader function notifies the driver about the deletion of the pixel shader code object that the CreatePixelShader function created. The driver can then clean up any driver-side resources that are associated with the pixel shader code.

See also

CreatePixelShader

D3DDDI_DEVICEFUNCS