aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkQuadTreePicture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkQuadTreePicture.cpp')
-rw-r--r--src/core/SkQuadTreePicture.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/SkQuadTreePicture.cpp b/src/core/SkQuadTreePicture.cpp
new file mode 100644
index 0000000000..d05e40f4b3
--- /dev/null
+++ b/src/core/SkQuadTreePicture.cpp
@@ -0,0 +1,15 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkQuadTreePicture.h"
+
+#include "SkQuadTree.h"
+
+SkBBoxHierarchy* SkQuadTreePicture::createBBoxHierarchy() const {
+ return SkQuadTree::Create(fBounds);
+}
+