aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRTree.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@google.com>2015-03-05 12:18:38 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-03-05 12:18:38 -0800
commita0865b4620cc614586a5c02f258da2436ed3ab2b (patch)
treecbba8cff17a70b6ba29cbb8b028ba26f2ba8b9fb /src/core/SkRTree.h
parentc1e97b372e21edf9c7e45cfea0eca7f1a52fe9e5 (diff)
Revert of Update SkPicture cull rects with RTree information (patchset #6 id:140001 of https://codereview.chromium.org/971803002/)
Reason for revert: Might be breaking deps roll Original issue's description: > Update SkPicture cull rects with RTree information > > When computed, the RTree for an SkPicture will have a root > bounds that reflects the best bounding information available, > rather than the best estimate at the time the picture recorder > is created. Given that creators frequently don't know ahead of > time what will be drawn, the RTree bound is often tighter. > > Perf testing on Chrome indicates a small raster performance > advantage. For upcoming painting changes in Chrome the > performance advantage is much larger. > > BUG= > > Committed: https://skia.googlesource.com/skia/+/2dd3b6647dc726f36fd8774b3d0d2e83b493aeac TBR=mtklein@google.com,schenney@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/977413003
Diffstat (limited to 'src/core/SkRTree.h')
-rw-r--r--src/core/SkRTree.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/SkRTree.h b/src/core/SkRTree.h
index 9a118d4897..320b0bd438 100644
--- a/src/core/SkRTree.h
+++ b/src/core/SkRTree.h
@@ -52,9 +52,6 @@ public:
// Insertion count (not overall node count, which may be greater).
int getCount() const { return fCount; }
- // Get the root bound.
- SkRect getRootBound() const SK_OVERRIDE;
-
// These values were empirically determined to produce reasonable performance in most cases.
static const int kMinChildren = 6,
kMaxChildren = 11;