aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPath.cpp
diff options
context:
space:
mode:
authorGravatar kkinnunen <kkinnunen@nvidia.com>2015-11-26 01:51:44 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-26 01:51:44 -0800
commitf15246320cf69cd7bcd8882601c67eddc655d9ba (patch)
treeee74f117089e0e4c2890e34b8a8c2ac09b7af3d1 /src/gpu/GrPath.cpp
parent8444913d2c32ceca8a0f22c9dd7537c615c39af7 (diff)
Include conic weights in GrPath cache kSimpleVolatilePathDomain keys
Include conic weights in the keys when caching GrPath in kSimpleVolatilePathDomain. BUG=skia:4580 Review URL: https://codereview.chromium.org/1472733002
Diffstat (limited to 'src/gpu/GrPath.cpp')
-rw-r--r--src/gpu/GrPath.cpp35
1 files changed, 29 insertions, 6 deletions
diff --git a/src/gpu/GrPath.cpp b/src/gpu/GrPath.cpp
index 8ac356dd2d..71c13af306 100644
--- a/src/gpu/GrPath.cpp
+++ b/src/gpu/GrPath.cpp
@@ -78,6 +78,19 @@ inline static bool compute_key_for_simple_path(const SkPath& path, const GrStrok
SkASSERT(false);
return false;
}
+ SkSTArray<16, SkScalar, true> conicWeights(16);
+ if ((path.getSegmentMasks() & SkPath::kConic_SegmentMask) != 0) {
+ SkPath::RawIter iter(path);
+ SkPath::Verb verb;
+ SkPoint points[4];
+ while ((verb = iter.next(points)) != SkPath::kDone_Verb) {
+ if (verb == SkPath::kConic_Verb) {
+ conicWeights.push_back(iter.conicWeight());
+ }
+ }
+ }
+
+ const int conicWeightCnt = conicWeights.count();
// Construct counts that align as uint32_t counts.
#define ARRAY_DATA32_COUNT(array_type, count) \
@@ -85,16 +98,17 @@ inline static bool compute_key_for_simple_path(const SkPath& path, const GrStrok
const int verbData32Cnt = ARRAY_DATA32_COUNT(uint8_t, verbCnt);
const int pointData32Cnt = ARRAY_DATA32_COUNT(SkPoint, pointCnt);
+ const int conicWeightData32Cnt = ARRAY_DATA32_COUNT(SkScalar, conicWeightCnt);
#undef ARRAY_DATA32_COUNT
// The unique key data is a "message" with following fragments:
// 0) domain, key length, uint32_t for fill type and uint32_t for verbCnt
// (fragment 0, fixed size)
- // 1) verb and point data (varying size)
+ // 1) verb, point data and conic weights (varying size)
// 2) stroke data (varying size)
- const int baseData32Cnt = 2 + verbData32Cnt + pointData32Cnt;
+ const int baseData32Cnt = 2 + verbData32Cnt + pointData32Cnt + conicWeightData32Cnt;
const int strokeDataCnt = stroke.computeUniqueKeyFragmentData32Cnt();
static const GrUniqueKey::Domain kSimpleVolatilePathDomain = GrUniqueKey::GenerateDomain();
GrUniqueKey::Builder builder(key, kSimpleVolatilePathDomain, baseData32Cnt + strokeDataCnt);
@@ -103,11 +117,12 @@ inline static bool compute_key_for_simple_path(const SkPath& path, const GrStrok
// Serialize the verbCnt to make the whole message unambiguous.
// We serialize two variable length fragments to the message:
- // * verb and point data (fragment 1)
+ // * verbs, point data and conic weights (fragment 1)
// * stroke data (fragment 2)
// "Proof:"
// Verb count establishes unambiguous verb data.
- // Unambiguous verb data establishes unambiguous point data, making fragment 1 unambiguous.
+ // Verbs encode also point data size and conic weight size.
+ // Thus the fragment 1 is unambiguous.
// Unambiguous fragment 1 establishes unambiguous fragment 2, since the length of the message
// has been established.
@@ -127,8 +142,16 @@ inline static bool compute_key_for_simple_path(const SkPath& path, const GrStrok
// Here we assume getPoints does a memcpy, so that we do not need to worry about the alignment.
path.getPoints(reinterpret_cast<SkPoint*>(&builder[i]), pointCnt);
- SkDEBUGCODE(i += pointData32Cnt);
-
+ i += pointData32Cnt;
+
+ if (conicWeightCnt > 0) {
+ if (conicWeightData32Cnt != static_cast<int>(
+ (conicWeightCnt * sizeof(SkScalar) / sizeof(uint32_t)))) {
+ builder[i + conicWeightData32Cnt - 1] = 0;
+ }
+ memcpy(&builder[i], conicWeights.begin(), conicWeightCnt * sizeof(SkScalar));
+ SkDEBUGCODE(i += conicWeightData32Cnt);
+ }
SkASSERT(i == baseData32Cnt);
if (strokeDataCnt > 0) {
stroke.asUniqueKeyFragment(&builder[baseData32Cnt]);