Share via


DDBLTFX

Send Feedback

This structure passes raster operations, effects, and override information to the IDirectDrawSurface::Blt method.

typedef struct _DDBLTFX{ 
  DWORD dwSize; 
  DWORD dwROP; 
  DWORD dwFillColor; 
  DDCOLORKEY ddckDestColorkey; 
  DDCOLORKEY ddckSrcColorkey; 
} DDBLTFX,FAR* LPDDBLTFX; 

Members

  • dwSize
    Size of the structure, in bytes.

    This member must be initialized before the structure is used.

  • dwROP
    Microsoft® Win32® raster operations. You can retrieve a list of supported raster operations by calling the IDirectDraw::GetCaps method.

  • dwFillColor
    Color used to fill a surface when DDBLT_COLORFILL is specified. This value must be a pixel appropriate to the pixel format of the destination surface. For a palletized surface it would be a palette index, and for a 16-bit RGB surface it would be a 16-bit pixel value.

  • ddckDestColorkey
    Destination color key override.

  • ddckSrcColorkey
    Source color key override.

Requirements

Pocket PC: Windows Mobile 5.0 and later
Smartphone: Windows Mobile 5.0 and later
OS Versions: Windows CE 5.01 and later
Header: Ddraw.h.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.