blob: f46fe8ed42f0d01a069f8d97abde26f379f0844c [file] [log] [blame]
robertphillips@google.com56bf6e42014-01-13 13:33:26 +00001/*
2 * Copyright 2014 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 "SkGatherPixelRefsAndRects.h"
9#include "SkNoSaveLayerCanvas.h"
10#include "SkPictureUtils.h"
11
12void SkPictureUtils::GatherPixelRefsAndRects(SkPicture* pict,
13 SkPictureUtils::SkPixelRefContainer* prCont) {
14 if (0 == pict->width() || 0 == pict->height()) {
15 return ;
16 }
17
18 SkGatherPixelRefsAndRectsDevice device(pict->width(), pict->height(), prCont);
19 SkNoSaveLayerCanvas canvas(&device);
20
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +000021 canvas.clipRect(SkRect::MakeWH(SkIntToScalar(pict->width()),
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000022 SkIntToScalar(pict->height())),
23 SkRegion::kIntersect_Op, false);
robertphillips9b14f262014-06-04 05:40:44 -070024 canvas.drawPicture(pict);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000025}