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

Unified Diff: cc/quads/render_pass.h

Issue 2873593002: Force use of and cache render surface. (Closed)
Patch Set: Rebased to resolve conflict. Created 3 years, 5 months 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/direct_renderer.cc ('k') | cc/quads/render_pass.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/render_pass.h
diff --git a/cc/quads/render_pass.h b/cc/quads/render_pass.h
index ea179cdde7822fa8080afb1700a36687e5fa3785..7df06aac3b06bba9516994f2840a73dd1a7253b9 100644
--- a/cc/quads/render_pass.h
+++ b/cc/quads/render_pass.h
@@ -90,7 +90,9 @@ class CC_EXPORT RenderPass {
const FilterOperations& filters,
const FilterOperations& background_filters,
const gfx::ColorSpace& color_space,
- bool has_transparent_background);
+ bool has_transparent_background,
+ bool cache_render_pass,
+ bool has_damage_from_contributing_content);
void AsValueInto(base::trace_event::TracedValue* dict) const;
@@ -132,6 +134,12 @@ class CC_EXPORT RenderPass {
// If false, the pixels in the render pass' texture are all opaque.
bool has_transparent_background = true;
+ // If true we might reuse the texture if there is no damage.
+ bool cache_render_pass = false;
+ // Indicates whether there is accumulated damage from contributing render
+ // surface or layer or surface quad. Not including property changes on itself.
+ bool has_damage_from_contributing_content = false;
+
// If non-empty, the renderer should produce a copy of the render pass'
// contents as a bitmap, and give a copy of the bitmap to each callback in
// this list. This property should not be serialized between compositors, as
« no previous file with comments | « cc/output/direct_renderer.cc ('k') | cc/quads/render_pass.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698