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

Unified Diff: cc/ipc/cc_serialization_perftest.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: cc/ipc/cc_serialization_perftest.cc
diff --git a/cc/ipc/cc_serialization_perftest.cc b/cc/ipc/cc_serialization_perftest.cc
index e903fa314047fcdb9d045d306e0bbe2e3fc36b5f..cf64a6c718d5742d1a27a46f67b687aeb09a7e19 100644
--- a/cc/ipc/cc_serialization_perftest.cc
+++ b/cc/ipc/cc_serialization_perftest.cc
@@ -202,7 +202,8 @@ class CCSerializationPerfTest : public testing::Test {
for (uint32_t i = 0; i < num_passes; ++i) {
std::unique_ptr<RenderPass> render_pass = RenderPass::Create();
render_pass->SetNew(RenderPassId(1, 1), gfx::Rect(), gfx::Rect(),
- gfx::Transform());
+ gfx::Transform(), FilterOperations(),
+ FilterOperations());
for (uint32_t j = 0; j < num_quads; ++j) {
if (j == 0 || single_sqs == UseSingleSharedQuadState::NO)
render_pass->CreateAndAppendSharedQuadState();

Powered by Google App Engine
This is Rietveld 408576698