IDirect3DDevice::AddViewport

The IDirect3DDevice::AddViewport method adds the specified viewport to the list of viewport objects associated with the device and increments the reference count of the viewport.

HRESULT AddViewport(
  LPDIRECT3DVIEWPORT lpDirect3DViewport  
);
 

Parameters

lpDirect3DViewport
Address of the IDirect3DViewport interface of the viewport that should be associated with this device.

Return Values

If the method succeeds, the return value is D3D_OK.

If the method fails, the return value may be one of the following values:

DDERR_INVALIDOBJECT
DDERR_INVALIDPARAMS

Remarks

In the IDirect3DDevice3 interface, this method accepts a pointer to an IDirect3DViewport3 interface.

This method will fail, returning DDERR_INVALIDPARAMS, if you attempt to add a viewport that has already been assigned to the device.

QuickInfo

  Windows NT/2000: Requires Windows NT 4.0 SP3 or later.
  Windows 95/98: Requires Windows 95 or later. Available as a redistributable for Windows 95.
  Header: Declared in d3d.h.
  Import Library: Use ddraw.lib.