// dxgiddi.h
PFNDDXGIDDI_SUBMITPRESENTBLTTOHWQUEUECB PfnddxgiddiSubmitpresentblttohwqueuecb;
HRESULT PfnddxgiddiSubmitpresentblttohwqueuecb(
HANDLE hDevice,
DXGIDDICB_SUBMITPRESENTBLTTOHWQUEUE *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PFNDDXGIDDI_SUBMITPRESENTBLTTOHWQUEUECB callback function is implemented by a graphics client driver to submit a present Blt to the hardware queue.
hDeviceA handle to the device.
unnamedParam2Pointer to a DXGIDDICB_SUBMITPRESENTBLTTOHWQUEUE structure that contains information to submit a present Blt to hardware queue.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code.
//Declaration
PFNDDXGIDDI_SUBMITPRESENTBLTTOHWQUEUECB PfnddxgiddiSubmitpresentblttohwqueuecb;
// Definition
HRESULT PfnddxgiddiSubmitpresentblttohwqueuecb
(
HANDLE hDevice
DXGIDDICB_SUBMITPRESENTBLTTOHWQUEUE *
)
{...}
PFNDDXGIDDI_SUBMITPRESENTBLTTOHWQUEUECB