DXGKARG_DESTROYNATIVEFENCE - NtDoc

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

typedef struct _DXGKARG_DESTROYNATIVEFENCE {
  HANDLE                        hGlobalNativeFence;
  DXGK_DESTROYNATIVEFENCE_FLAGS Flags;
  BYTE                          Reserved[32];
} DXGKARG_DESTROYNATIVEFENCE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-dxgkarg_destroynativefence)

Description

DXGKARG_DESTROYNATIVEFENCE is the structure passed to DxgkDdiDestroyNativeFence.

Members

hGlobalNativeFence

[in] Handle to the global native GPU fence object. KMD returned this handle from a prior call to DXGKARG_CREATENATIVEFENCE.

Flags

[in] A DXGKARG_DESTROYNATIVEFENCE_FLAGS structure containing flags to use when destroying the native GPU fence object.

Reserved[32]

Reserved for system use.

Remarks

KMD should destroy its global fence data associated with hGlobalNativeFence.

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

See also

DxgkDdiDestroyNativeFence