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

Unified Diff: cc/quads/draw_quad_unittest.cc

Issue 332873005: Rendering context information added to SharedQuadState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rendering context now in Layers, removed is_3d_sorted Created 6 years, 6 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
Index: cc/quads/draw_quad_unittest.cc
diff --git a/cc/quads/draw_quad_unittest.cc b/cc/quads/draw_quad_unittest.cc
index c038214d47bed42c6812770e82937cc2a1d95426..dcde7167082c2bd6790e84ef46374b7d5e9b799f 100644
--- a/cc/quads/draw_quad_unittest.cc
+++ b/cc/quads/draw_quad_unittest.cc
@@ -46,7 +46,8 @@ TEST(DrawQuadTest, CopySharedQuadState) {
clip_rect,
is_clipped,
opacity,
- blend_mode);
+ blend_mode,
+ 0);
danakj 2014/06/15 18:15:36 please give this a name with a temp var here and b
troyhildebrandt 2014/06/17 00:29:43 Done.
scoped_ptr<SharedQuadState> copy(new SharedQuadState);
copy->CopyFrom(state.get());
@@ -74,7 +75,8 @@ scoped_ptr<SharedQuadState> CreateSharedQuadState() {
clip_rect,
is_clipped,
opacity,
- blend_mode);
+ blend_mode,
+ 0);
return state.Pass();
}

Powered by Google App Engine
This is Rietveld 408576698