NtGdiD3DDrawPrimitives2 function

[This function is subject to change with each operating system revision. Instead, use the Microsoft DirectDraw and Microsoft Direct3DAPIs; these APIs insulate applications from such operating system changes, and hide many other difficulties involved in interacting directly with display drivers.]

Renders primitives and returns the updated render state.

Syntax

DWORD APIENTRY NtGdiD3DDrawPrimitives2(
  _In_    HANDLE                         hCmdBuf,
  _In_    HANDLE                         hVBuf,
  _Inout_ LPD3DNTHAL_DRAWPRIMITIVES2DATA pded,
  _Inout_ FLATPTR                        *pfpVidMemCmd,
  _Inout_ DWORD                          *pdwSizeCmd,
  _Inout_ FLATPTR                        *pfpVidMemVtx,
  _Inout_ DWORD                          *pdwSizeVtx
);

Parameters

hCmdBuf [in]

Handle to the DD_SURFACE_LOCAL structure that identifies the DirectDraw surface containing the command data.

hVBuf [in]

Handle to the DD_SURFACE_LOCAL structure that identifies the DirectDraw surface containing the vertex data.

pded [in, out]

Pointer to a D3DNTHAL_DRAWPRIMITIVES2DATA structure that contains the information required for the driver to render one or more primitives.

pfpVidMemCmd [in, out]

New pointer to video memory if the driver swapped the command buffer.

pdwSizeCmd [in, out]

Specifies the minimum number of bytes that the driver must increase the swap command buffer by.

pfpVidMemVtx [in, out]

New pointer to video memory if the driver swapped the vertex buffer.

pdwSizeVtx [in, out]

Specifies the minimum number of bytes that the driver must allocate for the swap vertex buffer.

Return value

NtGdiD3DDrawPrimitives2 returns one of the following callback codes.

Return code Description
DDHAL_DRIVER_HANDLED
The driver has performed the operation and returned a valid return code for that operation. If this code is DD_OK, DirectDraw or Direct3D proceeds with the function. Otherwise, DirectDraw or Direct3D returns the error code provided by the driver and aborts the function.
DDHAL_DRIVER_NOTHANDLED
The driver has no comment on the requested operation. If the driver is required to have implemented a particular callback, DirectDraw or Direct3D reports an error condition. Otherwise, DirectDraw or Direct3D handles the operation as if the driver callback had not been defined by executing the DirectDraw or Direct3D device-independent implementation.

 

Requirements

Requirement Value
Minimum supported client
Windows 2000 Professional [desktop apps only]
Minimum supported server
Windows 2000 Server [desktop apps only]
Header
Ntgdi.h

See also

Graphics Low Level Client Support