OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkStrokeRec.h" | 8 #include "SkStrokeRec.h" |
9 #include "SkPaintDefaults.h" | 9 #include "SkPaintDefaults.h" |
10 | 10 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 bool gDebugStrokerErrorSet = false; | 101 bool gDebugStrokerErrorSet = false; |
102 SkScalar gDebugStrokerError; | 102 SkScalar gDebugStrokerError; |
103 #endif | 103 #endif |
104 | 104 |
105 bool SkStrokeRec::applyToPath(SkPath* dst, const SkPath& src) const { | 105 bool SkStrokeRec::applyToPath(SkPath* dst, const SkPath& src) const { |
106 if (fWidth <= 0) { // hairline or fill | 106 if (fWidth <= 0) { // hairline or fill |
107 return false; | 107 return false; |
108 } | 108 } |
109 | 109 |
110 SkStroke stroker; | 110 SkStroke stroker; |
111 stroker.setCap(fCap); | 111 stroker.setCap((SkPaint::Cap)fCap); |
112 stroker.setJoin(fJoin); | 112 stroker.setJoin((SkPaint::Join)fJoin); |
113 stroker.setMiterLimit(fMiterLimit); | 113 stroker.setMiterLimit(fMiterLimit); |
114 stroker.setWidth(fWidth); | 114 stroker.setWidth(fWidth); |
115 stroker.setDoFill(fStrokeAndFill); | 115 stroker.setDoFill(fStrokeAndFill); |
116 #ifdef SK_DEBUG | 116 #ifdef SK_DEBUG |
117 stroker.setResScale(gDebugStrokerErrorSet ? gDebugStrokerError : fResScale); | 117 stroker.setResScale(gDebugStrokerErrorSet ? gDebugStrokerError : fResScale); |
118 #else | 118 #else |
119 stroker.setResScale(fResScale); | 119 stroker.setResScale(fResScale); |
120 #endif | 120 #endif |
121 stroker.strokePath(src, dst); | 121 stroker.strokePath(src, dst); |
122 return true; | 122 return true; |
123 } | 123 } |
124 | 124 |
125 void SkStrokeRec::applyToPaint(SkPaint* paint) const { | 125 void SkStrokeRec::applyToPaint(SkPaint* paint) const { |
126 if (fWidth < 0) { // fill | 126 if (fWidth < 0) { // fill |
127 paint->setStyle(SkPaint::kFill_Style); | 127 paint->setStyle(SkPaint::kFill_Style); |
128 return; | 128 return; |
129 } | 129 } |
130 | 130 |
131 paint->setStyle(fStrokeAndFill ? SkPaint::kStrokeAndFill_Style : SkPaint::kS
troke_Style); | 131 paint->setStyle(fStrokeAndFill ? SkPaint::kStrokeAndFill_Style : SkPaint::kS
troke_Style); |
132 paint->setStrokeWidth(fWidth); | 132 paint->setStrokeWidth(fWidth); |
133 paint->setStrokeMiter(fMiterLimit); | 133 paint->setStrokeMiter(fMiterLimit); |
134 paint->setStrokeCap(fCap); | 134 paint->setStrokeCap((SkPaint::Cap)fCap); |
135 paint->setStrokeJoin(fJoin); | 135 paint->setStrokeJoin((SkPaint::Join)fJoin); |
136 } | 136 } |
OLD | NEW |