Previous Next

DrvStrokeAndFillPath

The DrvStrokeAndFillPath function strokes (outlines) and fills a path concurrently.

BOOL
  DrvStrokeAndFillPath(
    IN SURFOBJ  *pso,
    IN PATHOBJ  *ppo,
    IN CLIPOBJ  *pco,
    IN XFORMOBJ  *pxo,
    IN BRUSHOBJ  *pboStroke,
    IN LINEATTRS  *plineattrs,
    IN BRUSHOBJ  *pboFill,
    IN POINTL  *pptlBrushOrg,
    IN MIX  mixFill,
    IN FLONG  flOptions
    );

Parameters

pso
Pointer to a SURFOBJ structure that describes the surface on which to draw.
ppo
Pointer to a PATHOBJ structure that describes the path to be filled. The PATHOBJ_Xxx service routines are provided to enumerate the lines, Bezier curves, and other data that make up the path.
pco
Pointer to a CLIPOBJ structure. The CLIPOBJ_Xxx service routines are provided to enumerate the clip region as a set of rectangles.
pxo
Pointer to a XFORMOBJ structure that is required when a geometric wide line is drawn. It specifies the transform that takes world coordinates to device coordinates. This is needed because the path is provided in device coordinates but a geometric wide line is actually widened in world coordinates. The XFORMOBJ can be queried to find out what the transform is.
pboStroke
Pointer to a BRUSHOBJ structure that specifies the brush to use when stroking the path.
plineattrs
Pointer to the LINEATTRS structure that describes the attributes of the line to be drawn.
pboFill
Pointer to a BRUSHOBJ structure that specifies the brush to use when filling the path.
pptlBrushOrg
Pointer to a POINTL structure that specifies the brush origin for both brushes.
mixFill
Specifies a MIX structure (defined in the Platform SDK documentation) that defines the foreground and background raster operations to use for the brush.
flOptions
Specifies either FP_WINDINGMODE, meaning that a winding mode fill should be performed, or FP_ALTERNATEMODE, meaning that an alternating mode fill should be performed. All other flags should be ignored. For more information on these modes, see Path Fill Modes.

Return Value

The return value is TRUE if the driver is able to fill the path. Otherwise, if GDI should instead fill the path, the return value is FALSE. If an error occurs, the return value is DDI_ERROR, and an error code is logged.

Headers

Declared in winddi.h. Include winddi.h.

Comments

If a wide line is used for stroking, the filled area must be reduced to compensate.

The driver can return FALSE if the path or the clipping is too complex for the device to handle; in that case, GDI converts to a simpler call. For example, if the device driver has set the GCAPS_BEZIERS flag in the flGraphicsCaps member of the DEVINFO structure and then receives a path with Bezier curves, it can return FALSE; GDI will then convert the Bezier curves to lines and call DrvStrokeAndFillPath again. If the device driver returns FALSE again, GDI will further simplify the call, making calls to DrvStrokePath and DrvFillPath, or to DrvBitBlt, depending on the mix and width of the lines making up the path.

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 high-order byte defines the background raster operation. For more information about raster operation codes, see the Platform SDK documentation.

See Also

CLIPOBJ, DrvFillPath, DrvStrokePath, DrvBitBlt, LINEATTRS, PATHOBJ, SURFOBJ, XFORMOBJ