// d3dumddi.h
PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB Pfnd3dddiSubmitpresentblttohwqueuecb;
HRESULT Pfnd3dddiSubmitpresentblttohwqueuecb(
HANDLE hDevice,
D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Implemented by the client driver to submit a present blt to the hardware queue.
hDeviceA handle to the device.
unnamedParam2A pointer to the D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE structure that holds information on submitting a present blt to the hardware queue.
| Return code | Description |
|---|---|
| S_OK | The call was completed successfully. |
This function might also return other HRESULT values.
//Declaration
PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB Pfnd3dddiSubmitpresentblttohwqueuecb;
// Definition
HRESULT Pfnd3dddiSubmitpresentblttohwqueuecb
(
HANDLE hDevice
D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE *
)
{...}
PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB
Register your implementation of this callback function by setting the appropriate member of D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE and then calling Pfnd3dddiSubmitpresentblttohwqueuecb.