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

Unified Diff: components/exo/surface.cc

Issue 2543473004: cc: Move filters from RenderPassDrawQuad to RenderPass (Closed)
Patch Set: Created 4 years 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
Index: components/exo/surface.cc
diff --git a/components/exo/surface.cc b/components/exo/surface.cc
index 187e1e79a4bff8b63565270db63af7b495286fa0..86772e04348faf74c9219d781234a81011510e46 100644
--- a/components/exo/surface.cc
+++ b/components/exo/surface.cc
@@ -803,7 +803,8 @@ void Surface::UpdateSurface(bool full_damage) {
std::unique_ptr<cc::RenderPass> render_pass = cc::RenderPass::Create();
render_pass->SetAll(cc::RenderPassId(1, 1), gfx::Rect(contents_surface_size),
- damage_rect, gfx::Transform(), true);
+ damage_rect, gfx::Transform(), cc::FilterOperations(),
+ cc::FilterOperations(), true);
gfx::Rect quad_rect = gfx::Rect(contents_surface_size);
cc::SharedQuadState* quad_state =

Powered by Google App Engine
This is Rietveld 408576698