HomeSort by relevance Sort by last modified time
    Searched refs:paintModes (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 100 void drawRect(const FloatRect&, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
101 void drawRoundedRect(const FloatRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
103 void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
104 void drawEllipse(const IntRect& bounds, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
105 void drawPolygon(size_t numPoints, const FloatPoint* points, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
115 void drawPath(const Path&, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH), WindRule fillRule = RULE_NONZERO);
PainterOpenVG.cpp 721 VGbitfield paintModes = 0;
723 paintModes |= VG_STROKE_PATH;
725 paintModes |= VG_FILL_PATH;
727 paintModes &= specifiedPaintModes;
729 if (!paintModes)
735 vgDrawPath(path.platformPath()->vgPath(), paintModes);
824 VGbitfield paintModes = 0;
826 paintModes |= VG_STROKE_PATH;
828 paintModes |= VG_FILL_PATH;
830 paintModes &= specifiedPaintModes
    [all...]

Completed in 167 milliseconds