DXGKDDI_GETSCANLINE - NtDoc

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

DXGKDDI_GETSCANLINE DxgkddiGetscanline;

NTSTATUS DxgkddiGetscanline(
  [in]     IN_CONST_HANDLE hAdapter,
  [in/out] INOUT_PDXGKARG_GETSCANLINE pGetScanLine
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DXGKDDI_GETSCANLINE callback function

Description

The DxgkDdiGetScanLine function determines whether the specified video present target of a video present network (VidPN) is in vertical blanking mode and retrieves the current scan line.

Parameters

hAdapter [in]

A handle to a context block that is associated with a display adapter. The display miniport driver previously provided this handle to the Microsoft DirectX graphics kernel subsystem in the MiniportDeviceContext output parameter of the DxgkDdiAddDevice function.

pGetScanLine [in/out]

A pointer to a DXGKARG_GETSCANLINE structure that contains the vertical blanking status of a video present target.

Return value

DxgkDdiGetScanLine returns STATUS_SUCCESS if it succeeds; otherwise, it returns one of the error codes defined in Ntstatus.h.

Remarks

DxgkDdiGetScanLine should be made pageable.

See also

DXGKARG_GETSCANLINE

DxgkDdiAddDevice