Revert "Clean up stale cache entries in Skia's GrContext (#6859)" (#6866)

This reverts commit 2c6be93fa98aeb0dd3c1efa2db201232eb8eefba.
This commit is contained in:
Dan Field 2018-11-15 11:41:53 -08:00 committed by GitHub
parent c0aa62f6f3
commit 699f328df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,10 +16,6 @@
namespace shell {
// The rasterizer will tell Skia to purge cached resources that have not been
// used within this interval.
static constexpr std::chrono::milliseconds kSkiaCleanupExpiration(15000);
Rasterizer::Rasterizer(blink::TaskRunners task_runners)
: Rasterizer(std::move(task_runners),
std::make_unique<flow::CompositorContext>()) {}
@ -190,9 +186,6 @@ bool Rasterizer::DrawToSurface(flow::LayerTree& layer_tree) {
external_view_embedder->SubmitFrame(surface_->GetContext());
}
FireNextFrameCallbackIfPresent();
surface_->GetContext()->performDeferredCleanup(kSkiaCleanupExpiration);
return true;
}