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

Unified Diff: cc/quads/render_pass_unittest.cc

Issue 2297213003: Fix CSS reference filters with negative transformed children. (Closed)
Patch Set: Created 4 years, 4 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/quads/render_pass_draw_quad.cc ('k') | cc/surfaces/surface_aggregator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/render_pass_unittest.cc
diff --git a/cc/quads/render_pass_unittest.cc b/cc/quads/render_pass_unittest.cc
index 0a4e7221880ea9d734c0c13c69a0973df7b37917..4ac8cbddbd3484fd74ebc48ed26d13fc7db5b71b 100644
--- a/cc/quads/render_pass_unittest.cc
+++ b/cc/quads/render_pass_unittest.cc
@@ -209,16 +209,10 @@ TEST(RenderPassTest, CopyAllShouldBeIdentical) {
// And a RenderPassDrawQuad for the contributing pass.
std::unique_ptr<RenderPassDrawQuad> pass_quad =
base::WrapUnique(new RenderPassDrawQuad);
- pass_quad->SetNew(pass->shared_quad_state_list.back(),
- contrib_output_rect,
- contrib_output_rect,
- contrib_id,
- 0,
- gfx::Vector2dF(),
- gfx::Size(),
- FilterOperations(),
- gfx::Vector2dF(),
- FilterOperations());
+ pass_quad->SetNew(pass->shared_quad_state_list.back(), contrib_output_rect,
+ contrib_output_rect, contrib_id, 0, gfx::Vector2dF(),
+ gfx::Size(), FilterOperations(), gfx::Vector2dF(),
+ gfx::PointF(), FilterOperations());
pass_list.push_back(std::move(pass));
pass_list.push_back(std::move(contrib));
« no previous file with comments | « cc/quads/render_pass_draw_quad.cc ('k') | cc/surfaces/surface_aggregator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698