| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // hairline+fill == fill | 89 // hairline+fill == fill |
| 90 this->setFillStyle(); | 90 this->setFillStyle(); |
| 91 } else { | 91 } else { |
| 92 fWidth = width; | 92 fWidth = width; |
| 93 fStrokeAndFill = strokeAndFill; | 93 fStrokeAndFill = strokeAndFill; |
| 94 } | 94 } |
| 95 } | 95 } |
| 96 | 96 |
| 97 #include "SkStroke.h" | 97 #include "SkStroke.h" |
| 98 | 98 |
| 99 #ifdef SK_DEBUG | 99 #ifdef SK_DEBUG |
| 100 // enables tweaking these values at runtime from SampleApp | 100 // enables tweaking these values at runtime from SampleApp |
| 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 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 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((SkPaint::Cap)fCap); | 134 paint->setStrokeCap((SkPaint::Cap)fCap); |
| 135 paint->setStrokeJoin((SkPaint::Join)fJoin); | 135 paint->setStrokeJoin((SkPaint::Join)fJoin); |
| 136 } | 136 } |
| OLD | NEW |