blob: a76899ee29dd2cbc31994cf12321e0d694bc9295 [file] [log] [blame]
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +00001/*
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
robertphillips@google.com770963f2014-04-18 18:04:41 +00008#ifdef SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES
9
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +000010#include "SkQuadTreePicture.h"
11
12#include "SkQuadTree.h"
13
14SkBBoxHierarchy* SkQuadTreePicture::createBBoxHierarchy() const {
commit-bot@chromium.org949b9982014-03-17 10:38:34 +000015 return SkNEW_ARGS(SkQuadTree, (fBounds));
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +000016}
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +000017
18#endif