Index: include/core/SkPaint.h |
diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h |
index a73a46a2c6d3b6e612cdbb0eb67fe826d2cce104..1be3f253810d5c1d31bb862947b5ebe495ff655e 100644 |
--- a/include/core/SkPaint.h |
+++ b/include/core/SkPaint.h |
@@ -386,8 +386,9 @@ public: |
kRound_Cap, //!< begin/end contours with a semi-circle extension |
kSquare_Cap, //!< begin/end contours with a half square extension |
+ kDefault_Cap = kButt_Cap, |
reed1
2013/03/28 13:13:07
kCapCount now has the wrong value.
|
+ |
kCapCount, |
- kDefault_Cap = kButt_Cap |
}; |
/** Join enum specifies the settings for the paint's strokejoin. This is |
@@ -398,8 +399,9 @@ public: |
kRound_Join, //!< connect path segments with a round join |
kBevel_Join, //!< connect path segments with a flat bevel join |
+ kDefault_Join = kMiter_Join, |
reed1
2013/03/28 13:13:07
kJoinCount now has the wrong value.
|
+ |
kJoinCount, |
- kDefault_Join = kMiter_Join |
}; |
/** Return the paint's stroke cap type, controlling how the start and end |