Share via


IDirectDrawSurface5::SetPalette (Windows CE 5.0)

Send Feedback

This method attaches a palette object to or detaches one from a surface. The surface uses this palette for all subsequent operations. The palette change takes place immediately, without regard to refresh timing.

HRESULT SetPalette(LPDIRECTDRAWPALETTE lpDDPalette);

Parameters

  • lpDDPalette
    Address of the IDirectDrawPalette interface for the palette object to be used with this surface. If this parameter is NULL, the current palette will be detached.

Return Values

If the method succeeds, the return value is DD_OK.

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

DDERR_GENERIC
DDERR_INVALIDOBJECT
DDERR_INVALIDPARAMS
DDERR_INVALIDPIXELFORMAT
DDERR_INVALIDSURFACETYPE
DDERR_NOEXCLUSIVEMODE
DDERR_NOPALETTEATTACHED
DDERR_NOPALETTEHW
DDERR_NOT8BITCOLOR
DDERR_SURFACELOST
DDERR_UNSUPPORTED

Remarks

When setting a palette to a surface for the first time, this method increments the palette's reference count; subsequent calls do not affect the palette's reference count.

If you pass NULL as the lpDDPalette parameter, the palette is removed from the surface, and the palette's reference count is decremented.

If you do not delete the palette, the surface will automatically release its reference to the palette when the surface itself is released.

According to COM rules, your application is responsible for releasing any references it holds to the palette when the object is no longer needed.

It is not currently possible to set a palette to a primary surface in Windows CE.

Requirements

OS Versions: Windows CE 2.12 and later. Version 2.12 requires DXPAK 1.0 or later.
Header: Ddraw.h.
Link Library: Ddraw.lib.

See Also

IDirectDrawSurface5::GetPalette | IDirectDraw4::CreatePalette

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.