2014-04-18 18:04:41 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2014-04-18 18:04:41 +00:00
|
|
|
class SkBBoxHierarchy;
|
2015-08-05 20:57:49 +00:00
|
|
|
struct SkRect;
|
2014-04-18 18:04:41 +00:00
|
|
|
|
2014-04-22 13:33:16 +00:00
|
|
|
class SK_API SkBBHFactory {
|
2014-04-18 18:04:41 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Allocate a new SkBBoxHierarchy. Return NULL on failure.
|
|
|
|
*/
|
2019-05-15 13:08:15 +00:00
|
|
|
virtual SkBBoxHierarchy* operator()() const = 0;
|
2016-09-27 13:34:10 +00:00
|
|
|
virtual ~SkBBHFactory() {}
|
2014-04-18 18:04:41 +00:00
|
|
|
};
|
|
|
|
|
2014-04-22 13:33:16 +00:00
|
|
|
class SK_API SkRTreeFactory : public SkBBHFactory {
|
2014-04-18 18:04:41 +00:00
|
|
|
public:
|
2019-05-15 13:08:15 +00:00
|
|
|
SkBBoxHierarchy* operator()() const override;
|
2014-04-18 18:04:41 +00:00
|
|
|
private:
|
|
|
|
typedef SkBBHFactory INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|