07f26976f7
Chromium no longer uses TileGridInfo as of CL 856853003 and remove this from skia. BUG=chromium:447662 Review URL: https://codereview.chromium.org/828503004
32 lines
663 B
C++
32 lines
663 B
C++
/*
|
|
* 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 "SkRect.h"
|
|
|
|
class SkBBoxHierarchy;
|
|
|
|
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 SK_OVERRIDE;
|
|
private:
|
|
typedef SkBBHFactory INHERITED;
|
|
};
|
|
|
|
#endif
|