From ed881c2704bc81fe46a68c0cf9e292287313baa6 Mon Sep 17 00:00:00 2001 From: "reed@android.com" Date: Tue, 15 Sep 2009 14:10:42 +0000 Subject: add neon opts for matrix procs git-svn-id: http://skia.googlecode.com/svn/trunk@353 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkPaint.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h index ed60a20f61..659d8753e7 100644 --- a/include/core/SkPaint.h +++ b/include/core/SkPaint.h @@ -256,11 +256,16 @@ public: /** Styles apply to rect, oval, path, and text. Bitmaps are always drawn in "fill", and lines are always drawn in "stroke". + + Note: strokeandfill implicitly draws the result with + SkPath::kWinding_FillType, so if the original path is even-odd, the + results may not appear the same as if it was drawn twice, filled and + then stroked. */ enum Style { - kFill_Style, //!< fill with the paint's color - kStroke_Style, //!< stroke with the paint's color - kStrokeAndFill_Style, //!< fill and stroke with the paint's color + kFill_Style, //!< fill the geometry + kStroke_Style, //!< stroke the geometry + kStrokeAndFill_Style, //!< fill and stroke the geometry kStyleCount, }; -- cgit v1.2.3