bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "GrStyle.h" |
bsalomon | 398e3f4 | 2016-06-13 10:22:48 -0700 | [diff] [blame] | 9 | #include "SkDashPathPriv.h" |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 10 | |
bsalomon | 0607756 | 2016-05-04 13:50:29 -0700 | [diff] [blame] | 11 | int GrStyle::KeySize(const GrStyle &style, Apply apply, uint32_t flags) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 12 | GR_STATIC_ASSERT(sizeof(uint32_t) == sizeof(SkScalar)); |
| 13 | int size = 0; |
| 14 | if (style.isDashed()) { |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 15 | // One scalar for scale, one for dash phase, and one for each dash value. |
| 16 | size += 2 + style.dashIntervalCnt(); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 17 | } else if (style.pathEffect()) { |
| 18 | // No key for a generic path effect. |
| 19 | return -1; |
| 20 | } |
| 21 | |
| 22 | if (Apply::kPathEffectOnly == apply) { |
| 23 | return size; |
| 24 | } |
| 25 | |
| 26 | if (style.strokeRec().needToApply()) { |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 27 | // One for res scale, one for style/cap/join, one for miter limit, and one for width. |
| 28 | size += 4; |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 29 | } |
| 30 | return size; |
| 31 | } |
| 32 | |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 33 | void GrStyle::WriteKey(uint32_t *key, const GrStyle &style, Apply apply, SkScalar scale, |
| 34 | uint32_t flags) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 35 | SkASSERT(key); |
| 36 | SkASSERT(KeySize(style, apply) >= 0); |
| 37 | GR_STATIC_ASSERT(sizeof(uint32_t) == sizeof(SkScalar)); |
| 38 | |
| 39 | int i = 0; |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 40 | // The scale can influence both the path effect and stroking. We want to preserve the |
| 41 | // property that the following two are equal: |
| 42 | // 1. WriteKey with apply == kPathEffectAndStrokeRec |
| 43 | // 2. WriteKey with apply == kPathEffectOnly followed by WriteKey of a GrStyle made |
| 44 | // from SkStrokeRec output by the the path effect (and no additional path effect). |
| 45 | // Since the scale can affect both parts of 2 we write it into the key twice. |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 46 | if (style.isDashed()) { |
| 47 | GR_STATIC_ASSERT(sizeof(style.dashPhase()) == sizeof(uint32_t)); |
| 48 | SkScalar phase = style.dashPhase(); |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 49 | memcpy(&key[i++], &scale, sizeof(SkScalar)); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 50 | memcpy(&key[i++], &phase, sizeof(SkScalar)); |
| 51 | |
| 52 | int32_t count = style.dashIntervalCnt(); |
| 53 | // Dash count should always be even. |
| 54 | SkASSERT(0 == (count & 0x1)); |
| 55 | const SkScalar *intervals = style.dashIntervals(); |
| 56 | int intervalByteCnt = count * sizeof(SkScalar); |
| 57 | memcpy(&key[i], intervals, intervalByteCnt); |
| 58 | i += count; |
| 59 | } else { |
| 60 | SkASSERT(!style.pathEffect()); |
| 61 | } |
| 62 | |
| 63 | if (Apply::kPathEffectAndStrokeRec == apply && style.strokeRec().needToApply()) { |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 64 | memcpy(&key[i++], &scale, sizeof(SkScalar)); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 65 | enum { |
| 66 | kStyleBits = 2, |
| 67 | kJoinBits = 2, |
| 68 | kCapBits = 32 - kStyleBits - kJoinBits, |
| 69 | |
| 70 | kJoinShift = kStyleBits, |
| 71 | kCapShift = kJoinShift + kJoinBits, |
| 72 | }; |
| 73 | GR_STATIC_ASSERT(SkStrokeRec::kStyleCount <= (1 << kStyleBits)); |
| 74 | GR_STATIC_ASSERT(SkPaint::kJoinCount <= (1 << kJoinBits)); |
| 75 | GR_STATIC_ASSERT(SkPaint::kCapCount <= (1 << kCapBits)); |
bsalomon | 0607756 | 2016-05-04 13:50:29 -0700 | [diff] [blame] | 76 | // The cap type only matters for unclosed shapes. However, a path effect could unclose |
| 77 | // the shape before it is stroked. |
bsalomon | 0ae36a2 | 2016-07-18 07:31:13 -0700 | [diff] [blame] | 78 | SkPaint::Cap cap = SkPaint::kDefault_Cap; |
| 79 | if (!(flags & kClosed_KeyFlag) || style.pathEffect()) { |
bsalomon | 0607756 | 2016-05-04 13:50:29 -0700 | [diff] [blame] | 80 | cap = style.strokeRec().getCap(); |
| 81 | } |
bsalomon | 0ae36a2 | 2016-07-18 07:31:13 -0700 | [diff] [blame] | 82 | SkScalar miter = -1.f; |
| 83 | SkPaint::Join join = SkPaint::kDefault_Join; |
| 84 | |
| 85 | // Dashing will not insert joins but other path effects may. |
| 86 | if (!(flags & kNoJoins_KeyFlag) || style.hasNonDashPathEffect()) { |
| 87 | join = style.strokeRec().getJoin(); |
| 88 | // Miter limit only affects miter joins |
| 89 | if (SkPaint::kMiter_Join == join) { |
| 90 | miter = style.strokeRec().getMiter(); |
| 91 | } |
| 92 | } |
| 93 | |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 94 | key[i++] = style.strokeRec().getStyle() | |
bsalomon | 0ae36a2 | 2016-07-18 07:31:13 -0700 | [diff] [blame] | 95 | join << kJoinShift | |
bsalomon | 0607756 | 2016-05-04 13:50:29 -0700 | [diff] [blame] | 96 | cap << kCapShift; |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 97 | |
bsalomon | 0ae36a2 | 2016-07-18 07:31:13 -0700 | [diff] [blame] | 98 | memcpy(&key[i++], &miter, sizeof(miter)); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 99 | |
bsalomon | 0ae36a2 | 2016-07-18 07:31:13 -0700 | [diff] [blame] | 100 | SkScalar width = style.strokeRec().getWidth(); |
| 101 | memcpy(&key[i++], &width, sizeof(width)); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 102 | } |
| 103 | SkASSERT(KeySize(style, apply) == i); |
| 104 | } |
| 105 | |
Robert Phillips | f809c1e | 2017-01-13 11:02:42 -0500 | [diff] [blame] | 106 | void GrStyle::initPathEffect(sk_sp<SkPathEffect> pe) { |
caryclark | d656200 | 2016-07-27 12:02:07 -0700 | [diff] [blame] | 107 | SkASSERT(!fPathEffect); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 108 | SkASSERT(SkPathEffect::kNone_DashType == fDashInfo.fType); |
| 109 | SkASSERT(0 == fDashInfo.fIntervals.count()); |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 110 | if (!pe) { |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 111 | return; |
| 112 | } |
| 113 | SkPathEffect::DashInfo info; |
| 114 | if (SkPathEffect::kDash_DashType == pe->asADash(&info)) { |
bsalomon | a058786 | 2016-06-09 06:03:38 -0700 | [diff] [blame] | 115 | SkStrokeRec::Style recStyle = fStrokeRec.getStyle(); |
| 116 | if (recStyle != SkStrokeRec::kFill_Style && recStyle != SkStrokeRec::kStrokeAndFill_Style) { |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 117 | fDashInfo.fType = SkPathEffect::kDash_DashType; |
| 118 | fDashInfo.fIntervals.reset(info.fCount); |
| 119 | fDashInfo.fPhase = info.fPhase; |
| 120 | info.fIntervals = fDashInfo.fIntervals.get(); |
| 121 | pe->asADash(&info); |
Robert Phillips | f809c1e | 2017-01-13 11:02:42 -0500 | [diff] [blame] | 122 | fPathEffect = std::move(pe); |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 123 | } |
| 124 | } else { |
Robert Phillips | f809c1e | 2017-01-13 11:02:42 -0500 | [diff] [blame] | 125 | fPathEffect = std::move(pe); |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 126 | } |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 127 | } |
| 128 | |
bsalomon | 398e3f4 | 2016-06-13 10:22:48 -0700 | [diff] [blame] | 129 | bool GrStyle::applyPathEffect(SkPath* dst, SkStrokeRec* strokeRec, const SkPath& src) const { |
| 130 | if (!fPathEffect) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 131 | return false; |
| 132 | } |
bsalomon | 398e3f4 | 2016-06-13 10:22:48 -0700 | [diff] [blame] | 133 | if (SkPathEffect::kDash_DashType == fDashInfo.fType) { |
| 134 | // We apply the dash ourselves here rather than using the path effect. This is so that |
| 135 | // we can control whether the dasher applies the strokeRec for special cases. Our keying |
| 136 | // depends on the strokeRec being applied separately. |
| 137 | SkScalar phase = fDashInfo.fPhase; |
| 138 | const SkScalar* intervals = fDashInfo.fIntervals.get(); |
| 139 | int intervalCnt = fDashInfo.fIntervals.count(); |
| 140 | SkScalar initialLength; |
| 141 | int initialIndex; |
| 142 | SkScalar intervalLength; |
| 143 | SkDashPath::CalcDashParameters(phase, intervals, intervalCnt, &initialLength, |
| 144 | &initialIndex, &intervalLength); |
| 145 | if (!SkDashPath::InternalFilter(dst, src, strokeRec, |
| 146 | nullptr, intervals, intervalCnt, |
| 147 | initialLength, initialIndex, intervalLength, |
| 148 | SkDashPath::StrokeRecApplication::kDisallow)) { |
| 149 | return false; |
| 150 | } |
| 151 | } else if (!fPathEffect->filterPath(dst, src, strokeRec, nullptr)) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 152 | return false; |
| 153 | } |
| 154 | dst->setIsVolatile(true); |
| 155 | return true; |
| 156 | } |
| 157 | |
| 158 | bool GrStyle::applyPathEffectToPath(SkPath *dst, SkStrokeRec *remainingStroke, |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 159 | const SkPath &src, SkScalar resScale) const { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 160 | SkASSERT(dst); |
| 161 | SkStrokeRec strokeRec = fStrokeRec; |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 162 | strokeRec.setResScale(resScale); |
bsalomon | 398e3f4 | 2016-06-13 10:22:48 -0700 | [diff] [blame] | 163 | if (!this->applyPathEffect(dst, &strokeRec, src)) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 164 | return false; |
| 165 | } |
| 166 | *remainingStroke = strokeRec; |
| 167 | return true; |
| 168 | } |
| 169 | |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 170 | bool GrStyle::applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src, |
| 171 | SkScalar resScale) const { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 172 | SkASSERT(style); |
| 173 | SkASSERT(dst); |
| 174 | SkStrokeRec strokeRec = fStrokeRec; |
bsalomon | 97fd2d4 | 2016-05-09 13:02:01 -0700 | [diff] [blame] | 175 | strokeRec.setResScale(resScale); |
bsalomon | 1a0b9ed | 2016-05-06 11:07:03 -0700 | [diff] [blame] | 176 | const SkPath* pathForStrokeRec = &src; |
bsalomon | 398e3f4 | 2016-06-13 10:22:48 -0700 | [diff] [blame] | 177 | if (this->applyPathEffect(dst, &strokeRec, src)) { |
bsalomon | 1a0b9ed | 2016-05-06 11:07:03 -0700 | [diff] [blame] | 178 | pathForStrokeRec = dst; |
| 179 | } else if (fPathEffect) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | if (strokeRec.needToApply()) { |
bsalomon | 1a0b9ed | 2016-05-06 11:07:03 -0700 | [diff] [blame] | 183 | if (!strokeRec.applyToPath(dst, *pathForStrokeRec)) { |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 184 | return false; |
| 185 | } |
bsalomon | b85e63d | 2016-06-27 07:59:12 -0700 | [diff] [blame] | 186 | dst->setIsVolatile(true); |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 187 | *style = SkStrokeRec::kFill_InitStyle; |
bsalomon | 1a0b9ed | 2016-05-06 11:07:03 -0700 | [diff] [blame] | 188 | } else if (!fPathEffect) { |
| 189 | // Nothing to do for path effect or stroke, fail. |
| 190 | return false; |
bsalomon | fb08327 | 2016-05-04 08:27:41 -0700 | [diff] [blame] | 191 | } else { |
| 192 | SkASSERT(SkStrokeRec::kFill_Style == strokeRec.getStyle() || |
| 193 | SkStrokeRec::kHairline_Style == strokeRec.getStyle()); |
| 194 | *style = strokeRec.getStyle() == SkStrokeRec::kFill_Style |
| 195 | ? SkStrokeRec::kFill_InitStyle |
| 196 | : SkStrokeRec::kHairline_InitStyle; |
| 197 | } |
| 198 | return true; |
bsalomon | 47cc769 | 2016-04-26 12:56:00 -0700 | [diff] [blame] | 199 | } |