DXGKDDI_DESTROYNATIVEFENCE - NtDoc

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

DXGKDDI_DESTROYNATIVEFENCE DxgkddiDestroynativefence;

NTSTATUS DxgkddiDestroynativefence(
  INOUT_PDXGKARG_DESTROYNATIVEFENCE pDestroyNativeFence
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The OS calls KMD's DxgkDdiDestroyNativeFence to destroy a tracking object for a native GPU fence.

Parameters

pDestroyNativeFence

[in/out] Pointer to a DXGKARG_DESTROYNATIVEFENCE structure that describes the native GPU fence object to destroy.

Return value

DxgkDdiDestroyNativeFence returns STATUS_SUCCESS if KMD was able to successfully destroy the native GPU fence object. Otherwise, it returns an appropriate NTSTATUS error code.

Remarks

The OS calls DxgkDdiDestroyNativeFence to instruct the KMD to destroy the driver tracking object for a given native GPU fence. After the call returns, the OS will deallocate storage for CurrentValue and MonitoredValue.

For more information about native GPU fences, see Native GPU fence objects.

See also

DXGKARG_DESTROYNATIVEFENCE

DxgkDdiCreateNativeFence