Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: src/core/SkQuadTreePicture.cpp

Issue 187233002: Fast implementation of QuadTree (Closed) Base URL: https://skia.googlesource.com/skia.git@bbh_select
Patch Set: I give up, stoopid compiler Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkQuadTree.cpp ('k') | src/core/SkTInternalSList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkQuadTreePicture.cpp
diff --git a/src/core/SkQuadTreePicture.cpp b/src/core/SkQuadTreePicture.cpp
index 354b904b56a5b0da70df4b359ef1d0746b091614..091f4406216dd8f9ec0b6f5bd1801b12107496b4 100644
--- a/src/core/SkQuadTreePicture.cpp
+++ b/src/core/SkQuadTreePicture.cpp
@@ -10,5 +10,5 @@
#include "SkQuadTree.h"
SkBBoxHierarchy* SkQuadTreePicture::createBBoxHierarchy() const {
- return SkQuadTree::Create(fBounds);
+ return SkNEW_ARGS(SkQuadTree, (fBounds));
}
« no previous file with comments | « src/core/SkQuadTree.cpp ('k') | src/core/SkTInternalSList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698