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

Unified Diff: sky/tests/resources/display_list.dart

Issue 1216833003: Make rendering use PaintingNodes for increased efficiency. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Different approach to calling markNeedsPaint with unattached nodes Created 5 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 | « sky/sdk/lib/rendering/sky_binding.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/resources/display_list.dart
diff --git a/sky/tests/resources/display_list.dart b/sky/tests/resources/display_list.dart
index 248cb1269dd9acfecbc1cb029c81d3c8fb7d42ac..a22fe980a9d482b480d3e268e7b37f80846897c3 100644
--- a/sky/tests/resources/display_list.dart
+++ b/sky/tests/resources/display_list.dart
@@ -14,7 +14,7 @@ typedef void Logger (String s);
class TestPaintingCanvas extends PaintingCanvas {
TestPaintingCanvas(sky.PictureRecorder recorder, Size size, this.logger, { this.indent: '' })
: size = size,
- super(recorder, size) {
+ super(recorder, Point.origin & size) {
log("TestPaintingCanvas() constructor: ${size.width} x ${size.height}");
}
« no previous file with comments | « sky/sdk/lib/rendering/sky_binding.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698