gfx/skia/trunk/src/core/SkQuadTreePicture.cpp

branch
TOR_BUG_9701
changeset 8
97036ab72558
equal deleted inserted replaced
-1:000000000000 0:d903cb867ba0
1 /*
2 * Copyright 2014 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 "SkQuadTreePicture.h"
9
10 #include "SkQuadTree.h"
11
12 SkBBoxHierarchy* SkQuadTreePicture::createBBoxHierarchy() const {
13 return SkNEW_ARGS(SkQuadTree, (fBounds));
14 }

mercurial