PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB - NtDoc

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

PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB Pfnd3dddiSubmitpresentblttohwqueuecb;

HRESULT Pfnd3dddiSubmitpresentblttohwqueuecb(
  HANDLE hDevice,
  D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dumddi-pfnd3dddi_submitpresentblttohwqueuecb)

PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB callback function

Description

Implemented by the client driver to submit a present blt to the hardware queue.

Parameters

hDevice

A handle to the device.

unnamedParam2

A pointer to the D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE structure that holds information on submitting a present blt to the hardware queue.

Return value

Return code Description
S_OK The call was completed successfully.

This function might also return other HRESULT values.

Prototype

//Declaration

PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB Pfnd3dddiSubmitpresentblttohwqueuecb;

// Definition

HRESULT Pfnd3dddiSubmitpresentblttohwqueuecb
(
    HANDLE hDevice
    D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE *
)
{...}

PFND3DDDI_SUBMITPRESENTBLTTOHWQUEUECB

Remarks

Register your implementation of this callback function by setting the appropriate member of D3DDDICB_SUBMITPRESENTBLTTOHWQUEUE and then calling Pfnd3dddiSubmitpresentblttohwqueuecb.