9d524f22bf
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1842753002 Review URL: https://codereview.chromium.org/1842753002
24 lines
642 B
C++
24 lines
642 B
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "GrPathRenderer.h"
|
|
|
|
GrPathRenderer::GrPathRenderer() {
|
|
}
|
|
|
|
void GrPathRenderer::GetPathDevBounds(const SkPath& path,
|
|
int devW, int devH,
|
|
const SkMatrix& matrix,
|
|
SkRect* bounds) {
|
|
if (path.isInverseFillType()) {
|
|
*bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
|
|
return;
|
|
}
|
|
*bounds = path.getBounds();
|
|
matrix.mapRect(bounds);
|
|
}
|