DXGKDDI_DESTROYOVERLAY - NtDoc

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

DXGKDDI_DESTROYOVERLAY DxgkddiDestroyoverlay;

NTSTATUS DxgkddiDestroyoverlay(
  [in] IN_CONST_HANDLE hOverlay
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmddi-dxgkddi_destroyoverlay)

DXGKDDI_DESTROYOVERLAY callback function

Description

The DxgkDdiDestroyOverlay function disables overlay hardware and deletes the specified overlay handle.

Parameters

hOverlay [in]

A handle to the overlay to destroy. The display miniport driver's DxgkDdiCreateOverlay function previously provided this handle to the Microsoft DirectX graphics kernel subsystem in the hOverlay member of the DXGKARG_CREATEOVERLAY structure.

Return value

DxgkDdiDestroyOverlay returns STATUS_SUCCESS, or an appropriate error result if overlay hardware is not successfully disabled.

Remarks

DxgkDdiDestroyOverlay should be made pageable.

See also

DXGKARG_CREATEOVERLAY

DxgkDdiCreateOverlay