aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2014-10-09 12:47:08 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-09 12:47:08 -0700
commit00878a1f36a28082fe2370e9f05ea931c7d5fed4 (patch)
treeddb518260bab9efba9591cf238fd9e85be5fb802 /src
parenta32c6bce1b726b6038b97bb64daf8b1fb1eb94e0 (diff)
Revert of Refactor GrLayerHoister::FindLayersToHoist to prep for adding clip to cache key (patchset #1 id:1 of https://codereview.chromium.org/640373002/)
Reason for revert: Failing unit tests Original issue's description: > Refactor GrLayerHoister::FindLayersToHoist to prep for adding clip to cache key > > NOTRY=true > > Committed: https://skia.googlesource.com/skia/+/27415b71bd529456165945e19b5b7efbebf6fb51 TBR=jvanverth@google.com NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/644823003
Diffstat (limited to 'src')
-rw-r--r--src/gpu/GrLayerHoister.cpp126
1 files changed, 65 insertions, 61 deletions
diff --git a/src/gpu/GrLayerHoister.cpp b/src/gpu/GrLayerHoister.cpp
index 6c5398b902..8b0079369d 100644
--- a/src/gpu/GrLayerHoister.cpp
+++ b/src/gpu/GrLayerHoister.cpp
@@ -13,53 +13,6 @@
#include "SkGrPixelRef.h"
#include "SkSurface.h"
-// Create the layer information for the hoisted layer and secure the
-// required texture/render target resources.
-static void prepare_for_hoisting(GrLayerCache* layerCache,
- const SkPicture* topLevelPicture,
- const GrAccelData::SaveLayerInfo& info,
- SkTDArray<GrHoistedLayer>* atlased,
- SkTDArray<GrHoistedLayer>* nonAtlased,
- SkTDArray<GrHoistedLayer>* recycled) {
- const SkPicture* pict = info.fPicture ? info.fPicture : topLevelPicture;
-
- GrCachedLayer* layer = layerCache->findLayerOrCreate(pict->uniqueID(),
- info.fSaveLayerOpID,
- info.fRestoreOpID,
- info.fOriginXform,
- info.fPaint);
-
- GrTextureDesc desc;
- desc.fFlags = kRenderTarget_GrTextureFlagBit;
- desc.fWidth = info.fSize.fWidth;
- desc.fHeight = info.fSize.fHeight;
- desc.fConfig = kSkia8888_GrPixelConfig;
- // TODO: need to deal with sample count
-
- bool needsRendering = layerCache->lock(layer, desc, info.fHasNestedLayers || info.fIsNested);
- if (NULL == layer->texture()) {
- // GPU resources could not be secured for the hoisting of this layer
- return;
- }
-
- GrHoistedLayer* hl;
-
- if (needsRendering) {
- if (layer->isAtlased()) {
- hl = atlased->append();
- } else {
- hl = nonAtlased->append();
- }
- } else {
- hl = recycled->append();
- }
-
- hl->fLayer = layer;
- hl->fPicture = pict;
- hl->fOffset = info.fOffset;
- hl->fCTM = info.fOriginXform;
-}
-
// Return true if any layers are suitable for hoisting
bool GrLayerHoister::FindLayersToHoist(GrContext* context,
const SkPicture* topLevelPicture,
@@ -67,6 +20,7 @@ bool GrLayerHoister::FindLayersToHoist(GrContext* context,
SkTDArray<GrHoistedLayer>* atlased,
SkTDArray<GrHoistedLayer>* nonAtlased,
SkTDArray<GrHoistedLayer>* recycled) {
+ bool anyHoisted = false;
GrLayerCache* layerCache = context->getLayerCache();
@@ -75,7 +29,7 @@ bool GrLayerHoister::FindLayersToHoist(GrContext* context,
SkPicture::AccelData::Key key = GrAccelData::ComputeAccelDataKey();
const SkPicture::AccelData* topLevelData = topLevelPicture->EXPERIMENTAL_getAccelData(key);
- if (!topLevelData) {
+ if (NULL == topLevelData) {
return false;
}
@@ -84,20 +38,17 @@ bool GrLayerHoister::FindLayersToHoist(GrContext* context,
return false;
}
- bool anyHoisted = false;
-
- // The layer hoisting code will pre-render and cache an entire layer if most
- // of it is being used (~70%) and it will fit in a texture. This is to allow
- // such layers to be re-used for different clips/tiles.
- // Small layers will additionally be atlased.
- // The only limitation right now is that nested layers are currently not hoisted.
- // Parent layers are hoisted but are never atlased (so that we never swap
- // away from the atlas rendertarget when generating the hoisted layers).
+ // Layer hoisting pre-renders the entire layer since it will be cached and potentially
+ // reused with different clips (e.g., in different tiles). Because of this the
+ // clip will not be limiting the size of the pre-rendered layer. kSaveLayerMaxSize
+ // is used to limit which clips are pre-rendered.
+ static const int kSaveLayerMaxSize = 256;
- atlased->setReserve(atlased->count() + topLevelGPUData->numSaveLayers());
+ SkAutoTArray<bool> pullForward(topLevelGPUData->numSaveLayers());
- // Find and prepare for hoisting all the layers that intersect the query rect
+ // Pre-render all the layers that intersect the query rect
for (int i = 0; i < topLevelGPUData->numSaveLayers(); ++i) {
+ pullForward[i] = false;
const GrAccelData::SaveLayerInfo& info = topLevelGPUData->saveLayerInfo(i);
@@ -113,14 +64,67 @@ bool GrLayerHoister::FindLayersToHoist(GrContext* context,
// TODO: ignore perspective projected layers here!
// TODO: once this code is more stable unsuitable layers can
// just be omitted during the optimization stage
- if (!info.fValid || info.fIsNested) {
+ if (!info.fValid ||
+ kSaveLayerMaxSize < info.fSize.fWidth ||
+ kSaveLayerMaxSize < info.fSize.fHeight ||
+ info.fIsNested) {
continue;
}
- prepare_for_hoisting(layerCache, topLevelPicture, info, atlased, nonAtlased, recycled);
+ pullForward[i] = true;
anyHoisted = true;
}
+ if (!anyHoisted) {
+ return false;
+ }
+
+ atlased->setReserve(atlased->reserved() + topLevelGPUData->numSaveLayers());
+
+ // Generate the layer and/or ensure it is locked
+ for (int i = 0; i < topLevelGPUData->numSaveLayers(); ++i) {
+ if (pullForward[i]) {
+ const GrAccelData::SaveLayerInfo& info = topLevelGPUData->saveLayerInfo(i);
+ const SkPicture* pict = info.fPicture ? info.fPicture : topLevelPicture;
+
+ GrCachedLayer* layer = layerCache->findLayerOrCreate(pict->uniqueID(),
+ info.fSaveLayerOpID,
+ info.fRestoreOpID,
+ info.fOriginXform,
+ info.fPaint);
+
+ GrTextureDesc desc;
+ desc.fFlags = kRenderTarget_GrTextureFlagBit;
+ desc.fWidth = info.fSize.fWidth;
+ desc.fHeight = info.fSize.fHeight;
+ desc.fConfig = kSkia8888_GrPixelConfig;
+ // TODO: need to deal with sample count
+
+ bool needsRendering = layerCache->lock(layer, desc,
+ info.fHasNestedLayers || info.fIsNested);
+ if (NULL == layer->texture()) {
+ continue;
+ }
+
+ GrHoistedLayer* hl;
+
+ if (needsRendering) {
+ if (layer->isAtlased()) {
+ hl = atlased->append();
+ } else {
+ hl = nonAtlased->append();
+ }
+ } else {
+ hl = recycled->append();
+ }
+
+ hl->fLayer = layer;
+ hl->fPicture = pict;
+ hl->fOffset = info.fOffset;
+ hl->fCTM = info.fOriginXform;
+ }
+ }
+
return anyHoisted;
}