OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "GrLayerCache.h" | 8 #include "GrLayerCache.h" |
9 #include "GrLayerHoister.h" | 9 #include "GrLayerHoister.h" |
10 #include "GrRecordReplaceDraw.h" | 10 #include "GrRecordReplaceDraw.h" |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 | 315 |
316 SkImageFilter::DeviceProxy proxy(device); | 316 SkImageFilter::DeviceProxy proxy(device); |
317 const SkBitmap src = wrap_texture(layer->texture()); | 317 const SkBitmap src = wrap_texture(layer->texture()); |
318 | 318 |
319 if (!layer->filter()->filterImage(&proxy, src, filterContext, &filteredBitma
p, &offset)) { | 319 if (!layer->filter()->filterImage(&proxy, src, filterContext, &filteredBitma
p, &offset)) { |
320 // Filtering failed. Press on with the unfiltered version. | 320 // Filtering failed. Press on with the unfiltered version. |
321 return; | 321 return; |
322 } | 322 } |
323 | 323 |
324 SkIRect newRect = SkIRect::MakeWH(filteredBitmap.width(), filteredBitmap.hei
ght()); | 324 SkIRect newRect = SkIRect::MakeWH(filteredBitmap.width(), filteredBitmap.hei
ght()); |
325 layer->setTexture(filteredBitmap.getTexture(), newRect, false); | 325 layer->setTexture(filteredBitmap.getTexture(), newRect); |
326 layer->setOffset(offset); | 326 layer->setOffset(offset); |
327 } | 327 } |
328 | 328 |
329 void GrLayerHoister::DrawLayers(GrContext* context, const SkTDArray<GrHoistedLay
er>& layers) { | 329 void GrLayerHoister::DrawLayers(GrContext* context, const SkTDArray<GrHoistedLay
er>& layers) { |
330 for (int i = 0; i < layers.count(); ++i) { | 330 for (int i = 0; i < layers.count(); ++i) { |
331 GrCachedLayer* layer = layers[i].fLayer; | 331 GrCachedLayer* layer = layers[i].fLayer; |
332 const SkBigPicture* pict = layers[i].fPicture->asSkBigPicture(); | 332 const SkBigPicture* pict = layers[i].fPicture->asSkBigPicture(); |
333 if (!pict) { | 333 if (!pict) { |
334 // TODO: can we assume / assert this? | 334 // TODO: can we assume / assert this? |
335 continue; | 335 continue; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 const SkTDArray<GrHoistedLayer>& layers) { | 373 const SkTDArray<GrHoistedLayer>& layers) { |
374 GrLayerCache* layerCache = context->getLayerCache(); | 374 GrLayerCache* layerCache = context->getLayerCache(); |
375 | 375 |
376 for (int i = 0; i < layers.count(); ++i) { | 376 for (int i = 0; i < layers.count(); ++i) { |
377 layerCache->removeUse(layers[i].fLayer); | 377 layerCache->removeUse(layers[i].fLayer); |
378 } | 378 } |
379 | 379 |
380 SkDEBUGCODE(layerCache->validate();) | 380 SkDEBUGCODE(layerCache->validate();) |
381 } | 381 } |
382 | 382 |
383 void GrLayerHoister::Begin(GrContext* context) { | 383 void GrLayerHoister::PurgeCache(GrContext* context) { |
| 384 #if !GR_CACHE_HOISTED_LAYERS |
384 GrLayerCache* layerCache = context->getLayerCache(); | 385 GrLayerCache* layerCache = context->getLayerCache(); |
385 | 386 |
386 layerCache->begin(); | |
387 } | |
388 | |
389 void GrLayerHoister::End(GrContext* context) { | |
390 GrLayerCache* layerCache = context->getLayerCache(); | |
391 | |
392 #if !GR_CACHE_HOISTED_LAYERS | |
393 | |
394 // This code completely clears out the atlas. It is required when | 387 // This code completely clears out the atlas. It is required when |
395 // caching is disabled so the atlas doesn't fill up and force more | 388 // caching is disabled so the atlas doesn't fill up and force more |
396 // free floating layers | 389 // free floating layers |
397 layerCache->purgeAll(); | 390 layerCache->purgeAll(); |
398 #endif | 391 #endif |
399 | |
400 layerCache->end(); | |
401 } | 392 } |
OLD | NEW |