DXGKDDI_SIGNALMONITOREDFENCE - NtDoc

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

DXGKDDI_SIGNALMONITOREDFENCE DxgkddiSignalmonitoredfence;

NTSTATUS DxgkddiSignalmonitoredfence(
  IN_CONST_HANDLE hContext,
  INOUT_PDXGKARG_SIGNALMONITOREDFENCE pSignalMonitoredFence
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DXGKDDI_SIGNALMONITOREDFENCE callback function

Description

Adds a GPU instruction to signal the paging monitored fence object to the DMA (direct memory access) buffer. This callback function is called from a Video memory management worker thread when submitting paging buffers, and from the application thread performing kernel submissions such as PresentBlt or RenderGdi. The OS passes a hint to the driver regarding the kernel submission type.

Parameters

hContext

Driver context handle for the context that generated the kernel submission.

pSignalMonitoredFence

Pointer to a DXGKARG_SIGNALMONITOREDFENCE structure that contains parameters to signal the monitored fence object.

Return value

Returns NTSTATUS.

Prototype

//Declaration

DXGKDDI_SIGNALMONITOREDFENCE DxgkddiSignalmonitoredfence;

// Definition

NTSTATUS DxgkddiSignalmonitoredfence
(
    IN_CONST_HANDLE hContext
    INOUT_PDXGKARG_SIGNALMONITOREDFENCE pSignalMonitoredFence
)
{...}

Remarks

WDDM synchronization class:

See also

DXGKARG_SIGNALMONITOREDFENCE