blob: 9693f1e75474af6986afaa4b3a50464f4b1bc371 [file] [log] [blame]
Florin Malita4aa44412017-12-19 12:21:02 -05001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkSGInvalidationController.h"
9
10#include "SkRect.h"
11
12namespace sksg {
13
14InvalidationController::InvalidationController() {}
15
16void InvalidationController::inval(const SkRect& r) {
17 fRects.push(r);
18}
19
20} // namespace sksg