aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkBBHFactory.h
blob: 58bd754b2bd9e412d85121e013324f9baef9724c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright 2014 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkBBHFactory_DEFINED
#define SkBBHFactory_DEFINED

#include "SkTypes.h"
class SkBBoxHierarchy;
struct SkRect;

class SK_API SkBBHFactory {
public:
    /**
     *  Allocate a new SkBBoxHierarchy. Return NULL on failure.
     */
    virtual SkBBoxHierarchy* operator()(const SkRect& bounds) const = 0;
    virtual ~SkBBHFactory() {}
};

class SK_API SkRTreeFactory : public SkBBHFactory {
public:
    SkBBoxHierarchy* operator()(const SkRect& bounds) const override;
private:
    typedef SkBBHFactory INHERITED;
};

#endif