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
|
|
|
|
|
2020-01-21 16:34:55 +00:00
|
|
|
#include "include/core/SkRefCnt.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2020-01-21 16:34:55 +00:00
|
|
|
|
2020-01-21 17:16:37 +00:00
|
|
|
class SkBBoxHierarchy : public SkRefCnt {
|
|
|
|
public:
|
|
|
|
SkBBoxHierarchy() {}
|
|
|
|
virtual ~SkBBoxHierarchy() {}
|
|
|
|
|
|
|
|
// Future public APIs may go here.
|
|
|
|
};
|
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.
|
|
|
|
*/
|
2020-01-21 16:34:55 +00:00
|
|
|
virtual sk_sp<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:
|
2020-01-21 16:34:55 +00:00
|
|
|
sk_sp<SkBBoxHierarchy> operator()() const override;
|
2014-04-18 18:04:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|