// d3dumddi.h
PFND3DDDI_PRESENT1 Pfnd3dddiPresent1;
HRESULT Pfnd3dddiPresent1(
HANDLE hDevice,
D3DDDIARG_PRESENT1 *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Notifies the user-mode display driver that an application finished rendering and that all ownership of the shared resource is released, and requests that the driver display to the destination surface.
hDeviceA handle to the display device (graphics context).
unnamedParam2pPresentData [in]
A pointer to a D3DDDIARG_PRESENT1 structure that describes how to display to the destination surface.
Returns S_OK or an appropriate error result if the function does not complete successfully.
The user-mode display driver must submit all partially built render data (command buffers) by calling the pfnRenderCb function. The driver must make only a single call to pfnRenderCb.