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
);
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 |
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.
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.