Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4137)

Unified Diff: cc/output/overlay_processor.cc

Issue 1330563004: Avoid Copying damage rect when using Overlays (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove blending checks Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/overlay_processor.h ('k') | cc/output/overlay_strategy_all_or_nothing.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/overlay_processor.cc
diff --git a/cc/output/overlay_processor.cc b/cc/output/overlay_processor.cc
index 69368a1bd5d2f6ec8d9f9698e7d4f0df79701cda..a97623a4c2fa4917e36ea62440a6a6dd0dda4f4a 100644
--- a/cc/output/overlay_processor.cc
+++ b/cc/output/overlay_processor.cc
@@ -27,10 +27,13 @@ OverlayProcessor::~OverlayProcessor() {}
void OverlayProcessor::ProcessForOverlays(ResourceProvider* resource_provider,
RenderPassList* render_passes,
- OverlayCandidateList* candidates) {
+ OverlayCandidateList* candidates,
+ gfx::Rect* damage_rect) {
for (auto strategy : strategies_) {
- if (strategy->Attempt(resource_provider, render_passes, candidates))
+ if (strategy->Attempt(resource_provider, render_passes, candidates,
+ damage_rect)) {
return;
+ }
}
}
« no previous file with comments | « cc/output/overlay_processor.h ('k') | cc/output/overlay_strategy_all_or_nothing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698