Location:
GraphicsAccelerator.h
class TGopFilledPolygonWithPattern : public TGraphicsOperation;
An accelerated graphics operation that fills a polygon with a pattern held in another bitmap.
AddPoints()
must be called to specify the polygon to be filled. Objects of this class can be passed to a graphics accelerator's Operation()
function either individually, or in a buffer.
TGraphicsOperation
- Abstract base class for all graphics operations
TGopFilledPolygonWithPattern
- An accelerated graphics operation that fills a polygon with a pattern held in another bitmap
Defined in TGopFilledPolygonWithPattern
:
AddPoints()
, TGopFilledPolygonWithPattern()
, iFillRule
, iNumPoints
, iPattern
Inherited from TGraphicsOperation
:
Append()
,
EAlphaBlendOneBitmap
,
EAlphaBlendTwoBitmaps
,
EBitBlt
,
EBitBltAlphaBitmap
,
EBitBltAlphaChannel
,
EBitBltMasked
,
EBitBltTransparent
,
EFadeRect
,
EFilledPolygon
,
EFilledPolygonWithPattern
,
EFilledRect
,
EFilledRectUsingDrawMode
,
EFilledRectWithPattern
,
EInvertRect
,
EScaledBitBlt
,
EScaledBitBltAlphaBitmap
,
EScaledBitBltAlphaChannel
,
EScaledBitBltMasked
,
EScaledBitBltTransparent
,
Function()
,
Next()
,
Size()
,
TGopFunction
,
iFunction
,
iSize
inline TGopFilledPolygonWithPattern(TGopFillPattern aPattern, CGraphicsContext::TFillRule aFillRule);
Constructor with a fill pattern and a fill rule. The number of points is initialised to zero.
|
inline void AddPoints(TInt aNumPoints, TPoint *aPoints);
Specifies the polygon to be filled as a number of 2D point coordinates.
AddPoints()
should only be called once the TGopFilledPolygonWithPattern object has been stored into a buffer. There must be enough room
in the buffer after the TGopFilledPolygonWithPattern object to hold aNumPoints TPoint
sized structures. This is because the points are copied into the memory space directly following the TGopFilledPolygonWithPattern
object.
|
CGraphicsContext::TFillRule iFillRule;
Bit flags for how self-crossing polygons are filled.
TInt iNumPoints;
The number of points in the polygon.