You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkSGInvalidationController_DEFINED
|
|
#define SkSGInvalidationController_DEFINED
|
|
|
|
#include "SkMatrix.h"
|
|
#include "SkTDArray.h"
|
|
#include "SkTypes.h"
|
|
|
|
struct SkRect;
|
|
|
|
namespace sksg {
|
|
|
|
/**
|
|
* Receiver for invalidation events.
|
|
*
|
|
* Tracks dirty regions for repaint.
|
|
*/
|
|
class InvalidationController {
|
|
public:
|
|
InvalidationController();
|
|
InvalidationController(const InvalidationController&) = delete;
|
|
InvalidationController& operator=(const InvalidationController&) = delete;
|
|
|
|
void inval(const SkRect&, const SkMatrix& ctm = SkMatrix::I());
|
|
|
|
const SkRect& bounds() const { return fBounds; }
|
|
const SkRect* begin() const { return fRects.begin(); }
|
|
const SkRect* end() const { return fRects.end(); }
|
|
|
|
private:
|
|
SkTDArray<SkRect> fRects;
|
|
SkRect fBounds;
|
|
};
|
|
|
|
} // namespace sksg
|
|
|
|
#endif // SkSGInvalidationController_DEFINED
|