| Index: src/gpu/GrLayerHoister.cpp
|
| diff --git a/src/gpu/GrLayerHoister.cpp b/src/gpu/GrLayerHoister.cpp
|
| index 00576710cdaaf7ec466e6c99a3160701139996a7..5d3a383b474e9ff6f61b193fe13709e5f48e472b 100644
|
| --- a/src/gpu/GrLayerHoister.cpp
|
| +++ b/src/gpu/GrLayerHoister.cpp
|
| @@ -111,7 +111,7 @@ void GrLayerHoister::FindLayersToAtlas(GrContext* context,
|
| continue;
|
| }
|
|
|
| - SkRect layerRect = SkRect::Make(info.fBounds);
|
| + SkRect layerRect = info.fBounds;
|
| if (!layerRect.intersect(query)) {
|
| continue;
|
| }
|
| @@ -157,7 +157,7 @@ void GrLayerHoister::FindLayersToHoist(GrContext* context,
|
| continue;
|
| }
|
|
|
| - SkRect layerRect = SkRect::Make(info.fBounds);
|
| + SkRect layerRect = info.fBounds;
|
| if (!layerRect.intersect(query)) {
|
| continue;
|
| }
|
|
|