EngPaint

BOOL EngPaint(

    IN SURFOBJ  *pso,
   IN CLIPOBJ  *pco,
   IN BRUSHOBJ  *pbo,
   IN POINTL  *pptlBrushOrg,
   IN MIX  mix
  );

EngPaint causes GDI to paint a specified region.

Parameters

pso

Points to a SURFOBJ that describes the surface on which to draw.

pco

Points to a CLIPOBJ that defines the area to be painted. The CLIPOBJ_Xxx service routines are provided to enumerate the clip region as a set of rectangles.

pbo

Points to a BRUSHOBJ that defines the pattern and colors with which to fill.

pptlBrushOrg

Points to a POINTL structure that defines the brush origin used to align the brush pattern on the device.

mix

Defines the foreground and background raster operations to use for the brush.

Return Value

The return value is TRUE if the function is successful. Otherwise, it is FALSE, and an error code is logged.

Comments

Vector device drivers can implement this function with the help of EngCreatePath and PATHOBJ_Xxx service routines.

The mix mode defines how the incoming pattern should be mixed with the data already on the device surface. The MIX data type consists of two ROP2 values packed into a single ULONG. The low-order byte defines the foreground raster operation; the next byte defines the background raster operation. For more information about raster operation codes, see the Win32 SDK.

See Also

BRUSHOBJ, CLIPOBJ, DrvPaint, EngCreatePath, PATHOBJ, SURFOBJ