// d3dkmddi.h
DXGKCB_UNMAPFRAMEBUFFERPOINTER DxgkcbUnmapframebufferpointer;
NTSTATUS DxgkcbUnmapframebufferpointer(
[in] IN_CONST_HANDLE hAdapter,
[in] IN_CONST_PDXGKARGCB_UNMAPFRAMEBUFFERPOINTER pUnmapFrameBufferPointer
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
DXGKCB_UNMAPFRAMEBUFFERPOINTER releases the mapping that was set by DXGKCB_MAPFRAMEBUFFERPOINTER.
hAdapter [in]A handle to a display adapter. The driver provides this handle for the master/lead device in the LDA chain.
pUnmapFrameBufferPointer [in]A pointer to the DXGKARGCB_UNMAPFRAMEBUFFERPOINTER structure that contains a handle to the memory to be unmapped.
DXGKCB_UNMAPFRAMEBUFFERPOINTER returns STATUS_SUCCESS if the operation succeeds. Otherwise, it returns one of the error codes defined in Ntstatus.h.
DXGKCB_XXX functions are implemented by Dxgkrnl. To use this callback function, set the members of DXGKARGCB_UNMAPFRAMEBUFFERPOINTER and then call DXGKCB_UNMAPFRAMEBUFFERPOINTER via the DXGKRNL_INTERFACE.
See IOMMU-based GPU isolation for more information.
DXGKARGCB_UNMAPFRAMEBUFFERPOINTER