diff options
Diffstat (limited to 'src/gpu/GrLayerHoister.cpp')
-rw-r--r-- | src/gpu/GrLayerHoister.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/gpu/GrLayerHoister.cpp b/src/gpu/GrLayerHoister.cpp index a17c7ddf97..5d2d5493b4 100644 --- a/src/gpu/GrLayerHoister.cpp +++ b/src/gpu/GrLayerHoister.cpp @@ -193,10 +193,6 @@ void GrLayerHoister::DrawLayersToAtlas(GrContext* context, SkCanvas* atlasCanvas = surface->getCanvas(); - SkPaint clearPaint; - clearPaint.setColor(SK_ColorTRANSPARENT); - clearPaint.setXfermode(SkXfermode::Create(SkXfermode::kSrc_Mode))->unref(); - for (int i = 0; i < atlased.count(); ++i) { const GrCachedLayer* layer = atlased[i].fLayer; const SkPicture* pict = atlased[i].fPicture; @@ -211,9 +207,7 @@ void GrLayerHoister::DrawLayersToAtlas(GrContext* context, // extend beyond the boundaries of the atlased sub-rect const SkRect bound = SkRect::Make(layer->rect()); atlasCanvas->clipRect(bound); - - // Since 'clear' doesn't respect the clip we need to draw a rect - atlasCanvas->drawRect(bound, clearPaint); + atlasCanvas->clear(0); // '-offset' maps the layer's top/left to the origin. // Since this layer is atlased, the top/left corner needs @@ -228,7 +222,7 @@ void GrLayerHoister::DrawLayersToAtlas(GrContext* context, SkRecordPartialDraw(*pict->fRecord.get(), atlasCanvas, pict->drawablePicts(), pict->drawableCount(), - bound, layer->start() + 1, layer->stop(), initialCTM); + layer->start() + 1, layer->stop(), initialCTM); atlasCanvas->restore(); } @@ -255,7 +249,6 @@ void GrLayerHoister::DrawLayers(GrContext* context, const SkTDArray<GrHoistedLay // extend beyond the boundaries of the layer const SkRect bound = SkRect::Make(layer->rect()); layerCanvas->clipRect(bound); - layerCanvas->clear(SK_ColorTRANSPARENT); SkMatrix initialCTM; @@ -267,7 +260,7 @@ void GrLayerHoister::DrawLayers(GrContext* context, const SkTDArray<GrHoistedLay SkRecordPartialDraw(*pict->fRecord.get(), layerCanvas, pict->drawablePicts(), pict->drawableCount(), - bound, layer->start()+1, layer->stop(), initialCTM); + layer->start()+1, layer->stop(), initialCTM); layerCanvas->flush(); } |