mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Change all child.paint calls to canvas.paintChild and update the test results.
R=abarth@chromium.org, abarth@google.com, ianh@google.com Review URL: https://codereview.chromium.org/1208993020 .
This commit is contained in:
parent
294497b044
commit
caafb616dc
@ -489,7 +489,7 @@ class RenderProxyBox extends RenderBox with RenderObjectWithChildMixin<RenderBox
|
||||
|
||||
void paint(PaintingCanvas canvas, Offset offset) {
|
||||
if (child != null)
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
}
|
||||
|
||||
}
|
||||
@ -662,7 +662,7 @@ class RenderOpacity extends RenderProxyBox {
|
||||
return;
|
||||
|
||||
if (a == 255) {
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
return;
|
||||
}
|
||||
|
||||
@ -670,7 +670,7 @@ class RenderOpacity extends RenderProxyBox {
|
||||
..color = new Color.fromARGB(a, 0, 0, 0)
|
||||
..setTransferMode(sky.TransferMode.srcOver);
|
||||
canvas.saveLayer(null, paint);
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
@ -706,7 +706,7 @@ class RenderColorFilter extends RenderProxyBox {
|
||||
Paint paint = new Paint()
|
||||
..setColorFilter(new sky.ColorFilter.mode(_color, _transferMode));
|
||||
canvas.saveLayer(null, paint);
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
@ -719,7 +719,7 @@ class RenderClipRect extends RenderProxyBox {
|
||||
if (child != null) {
|
||||
canvas.save();
|
||||
canvas.clipRect(offset & size);
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
@ -758,7 +758,7 @@ class RenderClipRRect extends RenderProxyBox {
|
||||
canvas.saveLayer(rect, new Paint());
|
||||
sky.RRect rrect = new sky.RRect()..setRectXY(rect, xRadius, yRadius);
|
||||
canvas.clipRRect(rrect);
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
@ -774,7 +774,7 @@ class RenderClipOval extends RenderProxyBox {
|
||||
Path path = new Path();
|
||||
path.addOval(rect);
|
||||
canvas.clipPath(path);
|
||||
child.paint(canvas, offset);
|
||||
canvas.paintChild(child, offset.toPoint());
|
||||
canvas.restore();
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -15,73 +15,109 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | | | paintChild RenderDecoratedBox at Point(0.0, 56.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 56.0, 800.0, 104.0), Paint(color:Color(0xfffafafa)))
|
||||
2 | | | | | save
|
||||
2 | | | | | translate(0.0, 56.0)
|
||||
2 | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff9c27b0)))
|
||||
2 | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | | paintChild RenderTransform at Point(0.0, 56.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
2 | | | | | | save
|
||||
2 | | | | | | translate(0.0, 56.0)
|
||||
2 | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | | paintChild RenderTabBar at Point(0.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderOpacity at Point(171.0, 14.0)
|
||||
2 | | | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff9c27b0)))
|
||||
2 | | | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | translate(171.0, 14.0)
|
||||
2 | | | | | | | | translate(-171.0, -14.0)
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 400.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderOpacity at Point(560.0, 14.0)
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | paintChild RenderOpacity at Point(171.0, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | paintChild RenderParagraph at Point(171.0, 14.0)
|
||||
2 | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | translate(171.0, 14.0)
|
||||
2 | | | | | | | | | | | | | translate(-171.0, -14.0)
|
||||
2 | | | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 400.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | translate(560.0, 14.0)
|
||||
2 | | | | | | | | translate(-560.0, -14.0)
|
||||
2 | | | | | | | | restore
|
||||
2 | | | | | restore
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(400.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPadding at Point(400.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | paintChild RenderOpacity at Point(560.0, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | | paintChild RenderParagraph at Point(560.0, 14.0)
|
||||
2 | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | translate(560.0, 14.0)
|
||||
2 | | | | | | | | | | | | | translate(-560.0, -14.0)
|
||||
2 | | | | | | | | | | | | restore
|
||||
2 | | | | | | restore
|
||||
2 | | | | paintChild RenderDecoratedBox at Point(0.0, 104.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0), Paint(color:Color(0xfffafafa)))
|
||||
2 | | | | | save
|
||||
2 | | | | | clipRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0))
|
||||
2 | | | | | save
|
||||
2 | | | | | translate(0.0, 104.0)
|
||||
2 | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | restore
|
||||
2 | | | | | restore
|
||||
2 | | | | | paintChild RenderSizeObserver at Point(0.0, 104.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderClipRect at Point(0.0, 104.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | save
|
||||
2 | | | | | | | clipRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0))
|
||||
2 | | | | | | | paintChild RenderTransform at Point(0.0, 104.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | save
|
||||
2 | | | | | | | | translate(0.0, 104.0)
|
||||
2 | | | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | | | | paintChild RenderBlock at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | restore
|
||||
2 | | | | | | | restore
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 56.0), Paint(color:Color(0xff9c27b0), drawLooper:true))
|
||||
2 | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderPadding at Point(8.0, 8.0)
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderImage at Point(16.0, 16.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderPadding at Point(48.0, 14.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderParagraph at Point(72.0, 14.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | translate(72.0, 14.0)
|
||||
2 | | | | | | | | translate(-72.0, -14.0)
|
||||
2 | | | | | | paintChild RenderPadding at Point(712.0, 8.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderImage at Point(720.0, 16.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderPadding at Point(752.0, 8.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderImage at Point(760.0, 16.0)
|
||||
2 | | | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(8.0, 8.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderImage at Point(16.0, 16.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(48.0, 14.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderParagraph at Point(72.0, 14.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | translate(72.0, 14.0)
|
||||
2 | | | | | | | | | | translate(-72.0, -14.0)
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(712.0, 8.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderImage at Point(720.0, 16.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(752.0, 8.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderImage at Point(760.0, 16.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | paintChild RenderDecoratedBox at Point(728.0, 528.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawCircle(Point(756.0, 556.0), 28.0, Paint(color:Color(0xffff5252), drawLooper:true))
|
||||
2 | | | | saveLayer(Rect.fromLTRB(728.0, 528.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
2 | | | | clipPath(Instance of 'Path')
|
||||
2 | | | | paintChild RenderImage at Point(744.0, 544.0)
|
||||
2 | | | | paintChild RenderClipOval at Point(728.0, 528.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | restore
|
||||
2 | | | | | saveLayer(Rect.fromLTRB(728.0, 528.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
2 | | | | | clipPath(Instance of 'Path')
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(728.0, 528.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderInkWell at Point(728.0, 528.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderPositionedBox at Point(728.0, 528.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderImage at Point(744.0, 544.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | restore
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE:
|
||||
PAINT FOR FRAME #3 ----------------------------------------------
|
||||
@ -95,72 +131,108 @@ PAINT FOR FRAME #3 ----------------------------------------------
|
||||
3 | | | | paintChild RenderDecoratedBox at Point(0.0, 56.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 56.0, 800.0, 104.0), Paint(color:Color(0xfffafafa)))
|
||||
3 | | | | | save
|
||||
3 | | | | | translate(0.0, 56.0)
|
||||
3 | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff9c27b0)))
|
||||
3 | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
3 | | | | | paintChild RenderTransform at Point(0.0, 56.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
3 | | | | | | save
|
||||
3 | | | | | | translate(0.0, 56.0)
|
||||
3 | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
3 | | | | | | paintChild RenderTabBar at Point(0.0, 0.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderOpacity at Point(171.0, 14.0)
|
||||
3 | | | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff9c27b0)))
|
||||
3 | | | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | translate(171.0, 14.0)
|
||||
3 | | | | | | | | translate(-171.0, -14.0)
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 400.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
3 | | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderOpacity at Point(560.0, 14.0)
|
||||
3 | | | | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
3 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | paintChild RenderOpacity at Point(171.0, 14.0)
|
||||
3 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | paintChild RenderParagraph at Point(171.0, 14.0)
|
||||
3 | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | | translate(171.0, 14.0)
|
||||
3 | | | | | | | | | | | | | translate(-171.0, -14.0)
|
||||
3 | | | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 400.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
3 | | | | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
3 | | | | | | | | translate(560.0, 14.0)
|
||||
3 | | | | | | | | translate(-560.0, -14.0)
|
||||
3 | | | | | | | | restore
|
||||
3 | | | | | restore
|
||||
3 | | | | | | | | paintChild RenderConstrainedBox at Point(400.0, 0.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderPadding at Point(400.0, 0.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
3 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | paintChild RenderOpacity at Point(560.0, 14.0)
|
||||
3 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
3 | | | | | | | | | | | | paintChild RenderParagraph at Point(560.0, 14.0)
|
||||
3 | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | | translate(560.0, 14.0)
|
||||
3 | | | | | | | | | | | | | translate(-560.0, -14.0)
|
||||
3 | | | | | | | | | | | | restore
|
||||
3 | | | | | | restore
|
||||
3 | | | | paintChild RenderDecoratedBox at Point(0.0, 104.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0), Paint(color:Color(0xfffafafa)))
|
||||
3 | | | | | save
|
||||
3 | | | | | clipRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0))
|
||||
3 | | | | | save
|
||||
3 | | | | | translate(0.0, 104.0)
|
||||
3 | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
3 | | | | | restore
|
||||
3 | | | | | restore
|
||||
3 | | | | | paintChild RenderSizeObserver at Point(0.0, 104.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderClipRect at Point(0.0, 104.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | save
|
||||
3 | | | | | | | clipRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0))
|
||||
3 | | | | | | | paintChild RenderTransform at Point(0.0, 104.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | save
|
||||
3 | | | | | | | | translate(0.0, 104.0)
|
||||
3 | | | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
3 | | | | | | | | paintChild RenderBlock at Point(0.0, 0.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | restore
|
||||
3 | | | | | | | restore
|
||||
3 | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 56.0), Paint(color:Color(0xff9c27b0), drawLooper:true))
|
||||
3 | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
3 | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
3 | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderPadding at Point(8.0, 8.0)
|
||||
3 | | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderImage at Point(16.0, 16.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderPadding at Point(48.0, 14.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderParagraph at Point(72.0, 14.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | translate(72.0, 14.0)
|
||||
3 | | | | | | | | translate(-72.0, -14.0)
|
||||
3 | | | | | | paintChild RenderPadding at Point(712.0, 8.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderImage at Point(720.0, 16.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderPadding at Point(752.0, 8.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderImage at Point(760.0, 16.0)
|
||||
3 | | | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | paintChild RenderPadding at Point(8.0, 8.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderImage at Point(16.0, 16.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | paintChild RenderPadding at Point(48.0, 14.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderParagraph at Point(72.0, 14.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | translate(72.0, 14.0)
|
||||
3 | | | | | | | | | | translate(-72.0, -14.0)
|
||||
3 | | | | | | | | paintChild RenderPadding at Point(712.0, 8.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderImage at Point(720.0, 16.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | paintChild RenderPadding at Point(752.0, 8.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderImage at Point(760.0, 16.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | paintChild RenderDecoratedBox at Point(728.0, 528.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | drawCircle(Point(756.0, 556.0), 28.0, Paint(color:Color(0xffff5252), drawLooper:true))
|
||||
3 | | | | saveLayer(Rect.fromLTRB(728.0, 528.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
3 | | | | clipPath(Instance of 'Path')
|
||||
3 | | | | paintChild RenderImage at Point(744.0, 544.0)
|
||||
3 | | | | paintChild RenderClipOval at Point(728.0, 528.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | restore
|
||||
3 | | | | | saveLayer(Rect.fromLTRB(728.0, 528.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
3 | | | | | clipPath(Instance of 'Path')
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(728.0, 528.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderInkWell at Point(728.0, 528.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderPositionedBox at Point(728.0, 528.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | paintChild RenderImage at Point(744.0, 544.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | restore
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 3 FRAMES
|
||||
|
||||
@ -11,108 +11,142 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | paintChild RenderDecoratedBox at Point(0.0, 56.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xfffafafa)))
|
||||
2 | | | paintChild RenderFlex at Point(8.0, 56.0)
|
||||
2 | | | paintChild RenderPadding at Point(0.0, 56.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 163.5)
|
||||
2 | | | | paintChild RenderFlex at Point(8.0, 56.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 163.5)
|
||||
2 | | | | | translate(-8.0, -163.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 213.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 223.5)
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 163.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 233.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 233.5)
|
||||
2 | | | | | translate(-8.0, -233.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 249.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 259.5)
|
||||
2 | | | | | | translate(8.0, 163.5)
|
||||
2 | | | | | | translate(-8.0, -163.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 213.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 269.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 269.5)
|
||||
2 | | | | | translate(-8.0, -269.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 294.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 304.5)
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 223.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 223.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 223.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 233.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 314.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 314.5)
|
||||
2 | | | | | translate(-8.0, -314.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 330.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 340.5)
|
||||
2 | | | | | | translate(8.0, 233.5)
|
||||
2 | | | | | | translate(-8.0, -233.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 249.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 350.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 350.5)
|
||||
2 | | | | | translate(-8.0, -350.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 375.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 385.5)
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 259.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 259.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 259.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 269.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 395.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 395.5)
|
||||
2 | | | | | translate(-8.0, -395.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 411.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 421.5)
|
||||
2 | | | | | | translate(8.0, 269.5)
|
||||
2 | | | | | | translate(-8.0, -269.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 294.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 431.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 431.5)
|
||||
2 | | | | | translate(-8.0, -431.5)
|
||||
2 | | | | paintChild RenderPadding at Point(8.0, 456.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(72.0, 466.5)
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 304.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 304.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 304.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 314.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | paintChild RenderParagraph at Point(8.0, 476.5)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | translate(8.0, 476.5)
|
||||
2 | | | | | translate(-8.0, -476.5)
|
||||
2 | | | | | | translate(8.0, 314.5)
|
||||
2 | | | | | | translate(-8.0, -314.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 330.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 340.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 340.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 340.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 350.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | translate(8.0, 350.5)
|
||||
2 | | | | | | translate(-8.0, -350.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 375.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 385.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 385.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 385.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 395.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | translate(8.0, 395.5)
|
||||
2 | | | | | | translate(-8.0, -395.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 411.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 421.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 421.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 421.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 431.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | translate(8.0, 431.5)
|
||||
2 | | | | | | translate(-8.0, -431.5)
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 456.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(72.0, 466.5)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(72.0, 466.5)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0x18000000)))
|
||||
2 | | | | | | | | drawPath(Instance of 'Path', Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | paintChild RenderConstrainedBox at Point(72.0, 466.5)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(8.0, 476.5)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | translate(8.0, 476.5)
|
||||
2 | | | | | | translate(-8.0, -476.5)
|
||||
2 | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 56.0), Paint(color:Color(0xff2196f3), drawLooper:true))
|
||||
2 | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 14.0)
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(32.0, 14.0)
|
||||
2 | | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(32.0, 14.0)
|
||||
2 | | | | | | | translate(-32.0, -14.0)
|
||||
2 | | | | | | | paintChild RenderPadding at Point(8.0, 14.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderParagraph at Point(32.0, 14.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | translate(32.0, 14.0)
|
||||
2 | | | | | | | | | translate(-32.0, -14.0)
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 2 FRAMES
|
||||
|
||||
@ -13,128 +13,194 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 56.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 56.0, 800.0, 104.0), Paint(color:Color(0xfffafafa)))
|
||||
2 | | | | save
|
||||
2 | | | | translate(0.0, 56.0)
|
||||
2 | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff2196f3)))
|
||||
2 | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | paintChild RenderTransform at Point(0.0, 56.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
2 | | | | | save
|
||||
2 | | | | | translate(0.0, 56.0)
|
||||
2 | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | paintChild RenderTabBar at Point(0.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderOpacity at Point(82.0, 14.0)
|
||||
2 | | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 48.0), Paint(color:Color(0xff2196f3)))
|
||||
2 | | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(82.0, 14.0)
|
||||
2 | | | | | | | translate(-82.0, -14.0)
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 200.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | paintChild RenderInkWell at Point(200.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(212.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderOpacity at Point(277.5, 14.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | translate(277.5, 14.0)
|
||||
2 | | | | | | | translate(-277.5, -14.0)
|
||||
2 | | | | | | | restore
|
||||
2 | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderOpacity at Point(480.0, 14.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | translate(480.0, 14.0)
|
||||
2 | | | | | | | translate(-480.0, -14.0)
|
||||
2 | | | | | | | restore
|
||||
2 | | | | paintChild RenderInkWell at Point(600.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(612.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderOpacity at Point(672.0, 14.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | translate(672.0, 14.0)
|
||||
2 | | | | | | | translate(-672.0, -14.0)
|
||||
2 | | | | | | | restore
|
||||
2 | | | | restore
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 104.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0), Paint(color:Color(0xffe3f2fd)))
|
||||
2 | | | | paintChild RenderPadding at Point(12.0, 116.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderDecoratedBox at Point(16.0, 120.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffffffff), drawLooper:true))
|
||||
2 | | | | | | saveLayer(Rect.fromLTRB(16.0, 120.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | clipRRect()
|
||||
2 | | | | | | paintChild RenderFlex at Point(24.0, 128.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(24.0, 128.0)
|
||||
2 | | | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawRect(Rect.fromLTRB(24.0, 128.0, 776.0, 176.0), Paint(color:Color(0xfffafafa)))
|
||||
2 | | | | | | | | save
|
||||
2 | | | | | | | | translate(24.0, 128.0)
|
||||
2 | | | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 752.0, 48.0), Paint(color:Color(0xff2196f3)))
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(78.5, 14.0)
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(82.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | translate(78.5, 14.0)
|
||||
2 | | | | | | | | | | | translate(-78.5, -14.0)
|
||||
2 | | | | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 188.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(188.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(200.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(265.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | translate(265.0, 14.0)
|
||||
2 | | | | | | | | | | | translate(-265.0, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(376.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(388.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(452.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | translate(452.0, 14.0)
|
||||
2 | | | | | | | | | | | translate(-452.0, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(564.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(576.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(638.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | translate(638.0, 14.0)
|
||||
2 | | | | | | | | | | | translate(-638.0, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | | | | restore
|
||||
2 | | | | | | | paintChild RenderPositionedBox at Point(343.0, 176.0)
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(82.0, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(82.0, 14.0)
|
||||
2 | | | | | | | | | | | | translate(-82.0, -14.0)
|
||||
2 | | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 200.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | | | paintChild RenderInkWell at Point(200.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderConstrainedBox at Point(200.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderParagraph at Point(343.0, 342.0)
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(200.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | translate(343.0, 342.0)
|
||||
2 | | | | | | | | | translate(-343.0, -342.0)
|
||||
2 | | | | | | restore
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(212.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(277.5, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(277.5, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(277.5, 14.0)
|
||||
2 | | | | | | | | | | | | translate(-277.5, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | | paintChild RenderInkWell at Point(400.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderConstrainedBox at Point(400.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(400.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(412.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(480.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(480.0, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(480.0, 14.0)
|
||||
2 | | | | | | | | | | | | translate(-480.0, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | | paintChild RenderInkWell at Point(600.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderConstrainedBox at Point(600.0, 0.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(600.0, 0.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPositionedBox at Point(612.0, 0.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderOpacity at Point(672.0, 14.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(672.0, 14.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(672.0, 14.0)
|
||||
2 | | | | | | | | | | | | translate(-672.0, -14.0)
|
||||
2 | | | | | | | | | | | restore
|
||||
2 | | | | | restore
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 104.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 104.0, 800.0, 600.0), Paint(color:Color(0xffe3f2fd)))
|
||||
2 | | | | paintChild RenderPadding at Point(0.0, 104.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPadding at Point(12.0, 116.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderDecoratedBox at Point(16.0, 120.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffffffff), drawLooper:true))
|
||||
2 | | | | | | | paintChild RenderClipRRect at Point(16.0, 120.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | saveLayer(Rect.fromLTRB(16.0, 120.0, 784.0, 584.0), Paint(color:Color(0xff000000)))
|
||||
2 | | | | | | | | clipRRect()
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(16.0, 120.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderFlex at Point(24.0, 128.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderDecoratedBox at Point(24.0, 128.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | drawRect(Rect.fromLTRB(24.0, 128.0, 776.0, 176.0), Paint(color:Color(0xfffafafa)))
|
||||
2 | | | | | | | | | | | paintChild RenderTransform at Point(24.0, 128.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | save
|
||||
2 | | | | | | | | | | | | translate(24.0, 128.0)
|
||||
2 | | | | | | | | | | | | concat([1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0])
|
||||
2 | | | | | | | | | | | | paintChild RenderTabBar at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 752.0, 48.0), Paint(color:Color(0xff2196f3)))
|
||||
2 | | | | | | | | | | | | | paintChild RenderInkWell at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | paintChild RenderPositionedBox at Point(12.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | paintChild RenderOpacity at Point(78.5, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | paintChild RenderParagraph at Point(78.5, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(78.5, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(-78.5, -14.0)
|
||||
2 | | | | | | | | | | | | | drawRect(Rect.fromLTRB(0.0, 46.0, 188.0, 48.0), Paint(color:Color(0xffffffff)))
|
||||
2 | | | | | | | | | | | | | paintChild RenderInkWell at Point(188.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | paintChild RenderConstrainedBox at Point(188.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | paintChild RenderPadding at Point(188.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | paintChild RenderPositionedBox at Point(200.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | paintChild RenderOpacity at Point(265.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | | | | | | | | paintChild RenderParagraph at Point(265.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(265.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(-265.0, -14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | restore
|
||||
2 | | | | | | | | | | | | | paintChild RenderInkWell at Point(376.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | paintChild RenderConstrainedBox at Point(376.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | paintChild RenderPadding at Point(376.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | paintChild RenderPositionedBox at Point(388.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | paintChild RenderOpacity at Point(452.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | | | | | | | | paintChild RenderParagraph at Point(452.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(452.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(-452.0, -14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | restore
|
||||
2 | | | | | | | | | | | | | paintChild RenderInkWell at Point(564.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | paintChild RenderConstrainedBox at Point(564.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | paintChild RenderPadding at Point(564.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | paintChild RenderPositionedBox at Point(576.0, 0.0)
|
||||
2 | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | paintChild RenderOpacity at Point(638.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | saveLayer(null, Paint(color:Color(0xb3000000)))
|
||||
2 | | | | | | | | | | | | | | | | | | paintChild RenderParagraph at Point(638.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(638.0, 14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | | translate(-638.0, -14.0)
|
||||
2 | | | | | | | | | | | | | | | | | | restore
|
||||
2 | | | | | | | | | | | | restore
|
||||
2 | | | | | | | | | | paintChild RenderPositionedBox at Point(343.0, 176.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(343.0, 342.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(343.0, 342.0)
|
||||
2 | | | | | | | | | | | | translate(-343.0, -342.0)
|
||||
2 | | | | | | | | restore
|
||||
2 | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 56.0), Paint(color:Color(0xff2196f3), drawLooper:true))
|
||||
2 | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderPadding at Point(8.0, 14.0)
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(8.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(32.0, 14.0)
|
||||
2 | | | | | | paintChild RenderFlex at Point(8.0, 0.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(32.0, 14.0)
|
||||
2 | | | | | | | translate(-32.0, -14.0)
|
||||
2 | | | | | | | paintChild RenderPadding at Point(8.0, 14.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderParagraph at Point(32.0, 14.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | translate(32.0, 14.0)
|
||||
2 | | | | | | | | | translate(-32.0, -14.0)
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 2 FRAMES
|
||||
|
||||
@ -5,10 +5,14 @@ PAINT FOR FRAME #1 ----------------------------------------------
|
||||
1 | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
1 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 600.0), Paint(color:Color(0xff0000ff)))
|
||||
1 | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
1 | | paintChild RenderBlock at Point(0.0, 0.0)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | paintChild RenderDecoratedBox at Point(50.0, 50.0)
|
||||
1 | | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(50.0, 50.0, 750.0, 150.0), Paint(color:Color(0xff00ff00)))
|
||||
1 | | | | paintChild RenderDecoratedBox at Point(50.0, 50.0)
|
||||
1 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | drawRect(Rect.fromLTRB(50.0, 50.0, 750.0, 150.0), Paint(color:Color(0xff00ff00)))
|
||||
1 | | | | | paintChild RenderConstrainedBox at Point(50.0, 50.0)
|
||||
1 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 1 FRAMES
|
||||
|
||||
@ -5,8 +5,10 @@ PAINT FOR FRAME #1 ----------------------------------------------
|
||||
1 | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
1 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | paintChild RenderDecoratedBox at Point(10.0, 10.0)
|
||||
1 | | paintChild RenderPadding at Point(0.0, 0.0)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | paintChild RenderDecoratedBox at Point(10.0, 10.0)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE: PASS: should not have a 0 sized colored Box
|
||||
CONSOLE:
|
||||
|
||||
@ -6,32 +6,38 @@ PAINT FOR FRAME #1 ----------------------------------------------
|
||||
1 | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
1 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 600.0), Paint(color:Color(0xff000000)))
|
||||
1 | | paintChild RenderSolidColor at Point(0.0, 0.0)
|
||||
1 | | paintChild RenderFlex at Point(0.0, 0.0)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 82.5), Paint(color:Color(0xffffff00)))
|
||||
1 | | paintChild RenderSolidColor at Point(350.0, 82.5)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | drawRect(Rect.fromLTRB(350.0, 82.5, 450.0, 182.5), Paint(color:Color(0x7700ffff)))
|
||||
1 | | paintChild RenderPadding at Point(0.0, 182.5)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | paintChild RenderDecoratedBox at Point(10.0, 192.5)
|
||||
1 | | | paintChild RenderSolidColor at Point(0.0, 0.0)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(10.0, 192.5, 790.0, 342.5), Paint(color:Color(0xffffffff)))
|
||||
1 | | | | paintChild RenderSolidColor at Point(10.0, 192.5)
|
||||
1 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 82.5), Paint(color:Color(0xffffff00)))
|
||||
1 | | | paintChild RenderSolidColor at Point(350.0, 82.5)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(350.0, 82.5, 450.0, 182.5), Paint(color:Color(0x7700ffff)))
|
||||
1 | | | paintChild RenderPadding at Point(0.0, 182.5)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | paintChild RenderDecoratedBox at Point(10.0, 192.5)
|
||||
1 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | drawRect(Rect.fromLTRB(10.0, 192.5, 790.0, 242.5), Paint(color:Color(0xff00ff00)))
|
||||
1 | | | | paintChild RenderSolidColor at Point(10.0, 242.5)
|
||||
1 | | | | | drawRect(Rect.fromLTRB(10.0, 192.5, 790.0, 342.5), Paint(color:Color(0xffffffff)))
|
||||
1 | | | | | paintChild RenderBlock at Point(10.0, 192.5)
|
||||
1 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | | paintChild RenderSolidColor at Point(10.0, 192.5)
|
||||
1 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | | | drawRect(Rect.fromLTRB(10.0, 192.5, 790.0, 242.5), Paint(color:Color(0xff00ff00)))
|
||||
1 | | | | | | paintChild RenderSolidColor at Point(10.0, 242.5)
|
||||
1 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | | | drawRect(Rect.fromLTRB(10.0, 242.5, 790.0, 342.5), Paint(color:Color(0x7700ffff)))
|
||||
1 | | | paintChild RenderDecoratedBox at Point(0.0, 352.5)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(0.0, 352.5, 800.0, 600.0), Paint(color:Color(0xff333333)))
|
||||
1 | | | | paintChild RenderFlex at Point(0.0, 352.5)
|
||||
1 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | drawRect(Rect.fromLTRB(10.0, 242.5, 790.0, 342.5), Paint(color:Color(0x7700ffff)))
|
||||
1 | | paintChild RenderDecoratedBox at Point(0.0, 352.5)
|
||||
1 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | drawRect(Rect.fromLTRB(0.0, 352.5, 800.0, 600.0), Paint(color:Color(0xff333333)))
|
||||
1 | | | paintChild RenderSolidColor at Point(0.0, 352.5)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(0.0, 352.5, 266.6666564941406, 600.0), Paint(color:Color(0x77ff00ff)))
|
||||
1 | | | paintChild RenderSolidColor at Point(266.6666666666667, 352.5)
|
||||
1 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | drawRect(Rect.fromLTRB(266.6666564941406, 352.5, 800.0, 600.0), Paint(color:Color(0xff0000ff)))
|
||||
1 | | | | | paintChild RenderSolidColor at Point(0.0, 352.5)
|
||||
1 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | | drawRect(Rect.fromLTRB(0.0, 352.5, 266.6666564941406, 600.0), Paint(color:Color(0x77ff00ff)))
|
||||
1 | | | | | paintChild RenderSolidColor at Point(266.6666666666667, 352.5)
|
||||
1 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
1 | | | | | | drawRect(Rect.fromLTRB(266.6666564941406, 352.5, 800.0, 600.0), Paint(color:Color(0xff0000ff)))
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE: PASS: should flex
|
||||
CONSOLE:
|
||||
|
||||
@ -12,13 +12,21 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | paintChild RenderConstrainedBox at Point(356.0, 282.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | paintChild RenderPositionedBox at Point(364.0, 282.0)
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(356.0, 282.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderParagraph at Point(370.0, 290.0)
|
||||
2 | | | | | paintChild RenderDecoratedBox at Point(356.0, 282.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | translate(370.0, 290.0)
|
||||
2 | | | | | | translate(-370.0, -290.0)
|
||||
2 | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | | | paintChild RenderInkWell at Point(356.0, 282.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | paintChild RenderPadding at Point(356.0, 282.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPositionedBox at Point(364.0, 282.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderParagraph at Point(370.0, 290.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | translate(370.0, 290.0)
|
||||
2 | | | | | | | | | | translate(-370.0, -290.0)
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE:
|
||||
PAINT FOR FRAME #3 ----------------------------------------------
|
||||
@ -29,12 +37,20 @@ PAINT FOR FRAME #3 ----------------------------------------------
|
||||
3 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | paintChild RenderConstrainedBox at Point(356.0, 282.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | paintChild RenderPositionedBox at Point(364.0, 282.0)
|
||||
3 | | | | paintChild RenderConstrainedBox at Point(356.0, 282.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | paintChild RenderParagraph at Point(370.0, 290.0)
|
||||
3 | | | | | paintChild RenderDecoratedBox at Point(356.0, 282.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | translate(370.0, 290.0)
|
||||
3 | | | | | | translate(-370.0, -290.0)
|
||||
3 | | | | | | paintChild RenderInkWell at Point(356.0, 282.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | paintChild RenderPadding at Point(356.0, 282.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | paintChild RenderPositionedBox at Point(364.0, 282.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderParagraph at Point(370.0, 290.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | translate(370.0, 290.0)
|
||||
3 | | | | | | | | | | translate(-370.0, -290.0)
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE:
|
||||
PAINT FOR FRAME #4 ----------------------------------------------
|
||||
@ -44,12 +60,20 @@ PAINT FOR FRAME #4 ----------------------------------------------
|
||||
4 | | paintChild RenderDecoratedBox at Point(372.0, 272.0)
|
||||
4 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | drawCircle(Point(400.0, 300.0), 28.0, Paint(color:Color(0xffff4081), drawLooper:true))
|
||||
4 | | | saveLayer(Rect.fromLTRB(372.0, 272.0, 428.0, 328.0), Paint(color:Color(0xff000000)))
|
||||
4 | | | clipPath(Instance of 'Path')
|
||||
4 | | | paintChild RenderParagraph at Point(394.0, 290.0)
|
||||
4 | | | paintChild RenderClipOval at Point(372.0, 272.0)
|
||||
4 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | translate(394.0, 290.0)
|
||||
4 | | | | translate(-394.0, -290.0)
|
||||
4 | | | restore
|
||||
4 | | | | saveLayer(Rect.fromLTRB(372.0, 272.0, 428.0, 328.0), Paint(color:Color(0xff000000)))
|
||||
4 | | | | clipPath(Instance of 'Path')
|
||||
4 | | | | paintChild RenderConstrainedBox at Point(372.0, 272.0)
|
||||
4 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | paintChild RenderInkWell at Point(372.0, 272.0)
|
||||
4 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | paintChild RenderPositionedBox at Point(372.0, 272.0)
|
||||
4 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | paintChild RenderParagraph at Point(394.0, 290.0)
|
||||
4 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | translate(394.0, 290.0)
|
||||
4 | | | | | | | | translate(-394.0, -290.0)
|
||||
4 | | | | restore
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 4 FRAMES
|
||||
|
||||
@ -11,30 +11,38 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | drawRect(Rect.fromLTRB(0.0, 0.0, 800.0, 600.0), Paint(color:Color(0x7f000000)))
|
||||
2 | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | paintChild RenderPositionedBox at Point(0.0, 0.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | paintChild RenderPadding at Point(220.0, 194.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(260.0, 218.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffffffff), drawLooper:true))
|
||||
2 | | | | | paintChild RenderPadding at Point(260.0, 218.0)
|
||||
2 | | | | | paintChild RenderDecoratedBox at Point(260.0, 218.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(284.0, 242.0)
|
||||
2 | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffffffff), drawLooper:true))
|
||||
2 | | | | | | paintChild RenderShrinkWrapWidth at Point(260.0, 218.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(284.0, 242.0)
|
||||
2 | | | | | | | translate(-284.0, -242.0)
|
||||
2 | | | | | paintChild RenderPadding at Point(260.0, 270.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(284.0, 290.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(284.0, 290.0)
|
||||
2 | | | | | | | translate(-284.0, -290.0)
|
||||
2 | | | | | paintChild RenderFlex at Point(260.0, 362.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(411.0, 362.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(411.0, 362.0)
|
||||
2 | | | | | | | translate(-411.0, -362.0)
|
||||
2 | | | | | | | paintChild RenderBlock at Point(260.0, 218.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(260.0, 218.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderParagraph at Point(284.0, 242.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | translate(284.0, 242.0)
|
||||
2 | | | | | | | | | | translate(-284.0, -242.0)
|
||||
2 | | | | | | | | paintChild RenderPadding at Point(260.0, 270.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderParagraph at Point(284.0, 290.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | translate(284.0, 290.0)
|
||||
2 | | | | | | | | | | translate(-284.0, -290.0)
|
||||
2 | | | | | | | | paintChild RenderFlex at Point(260.0, 362.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderParagraph at Point(411.0, 362.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | translate(411.0, 362.0)
|
||||
2 | | | | | | | | | | translate(-411.0, -362.0)
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 2 FRAMES
|
||||
|
||||
@ -10,36 +10,60 @@ PAINT FOR FRAME #2 ----------------------------------------------
|
||||
2 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | paintChild RenderFlex at Point(0.0, 0.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 425.0, 250.0), Paint(color:Color(0xff00ffff)))
|
||||
2 | | | paintChild RenderPadding at Point(425.0, 99.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
2 | | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(441.0, 107.0)
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 425.0, 250.0), Paint(color:Color(0xff00ffff)))
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(441.0, 115.0)
|
||||
2 | | | | paintChild RenderPadding at Point(425.0, 99.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(441.0, 115.0)
|
||||
2 | | | | | | | translate(-441.0, -115.0)
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(433.0, 107.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(433.0, 107.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPadding at Point(433.0, 107.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderPositionedBox at Point(441.0, 107.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(441.0, 115.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(441.0, 115.0)
|
||||
2 | | | | | | | | | | | | translate(-441.0, -115.0)
|
||||
2 | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
2 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
2 | | | paintChild RenderStack at Point(0.0, 250.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xff00ffff)))
|
||||
2 | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
2 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
2 | | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
2 | | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xff00ffff)))
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderParagraph at Point(228.5, 365.0)
|
||||
2 | | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
2 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
2 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
2 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | translate(228.5, 365.0)
|
||||
2 | | | | | | | translate(-228.5, -365.0)
|
||||
2 | | | | | | | paintChild RenderDecoratedBox at Point(8.0, 258.0)
|
||||
2 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
2 | | | | | | | | paintChild RenderInkWell at Point(8.0, 258.0)
|
||||
2 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | paintChild RenderPadding at Point(8.0, 258.0)
|
||||
2 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
2 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | paintChild RenderParagraph at Point(228.5, 365.0)
|
||||
2 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
2 | | | | | | | | | | | | translate(228.5, 365.0)
|
||||
2 | | | | | | | | | | | | translate(-228.5, -365.0)
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE:
|
||||
PAINT FOR FRAME #3 ----------------------------------------------
|
||||
@ -48,36 +72,60 @@ PAINT FOR FRAME #3 ----------------------------------------------
|
||||
3 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
3 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
3 | | | paintChild RenderFlex at Point(0.0, 0.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 549.0, 250.0), Paint(color:Color(0xefff9f00)))
|
||||
3 | | | paintChild RenderPadding at Point(549.0, 99.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | paintChild RenderConstrainedBox at Point(557.0, 107.0)
|
||||
3 | | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
3 | | | | | paintChild RenderPositionedBox at Point(565.0, 107.0)
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 549.0, 250.0), Paint(color:Color(0xefff9f00)))
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderParagraph at Point(565.0, 115.0)
|
||||
3 | | | | paintChild RenderPadding at Point(549.0, 99.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(557.0, 107.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderConstrainedBox at Point(557.0, 107.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | translate(565.0, 115.0)
|
||||
3 | | | | | | | translate(-565.0, -115.0)
|
||||
3 | | | | | | | paintChild RenderDecoratedBox at Point(557.0, 107.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
3 | | | | | | | | paintChild RenderInkWell at Point(557.0, 107.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderPadding at Point(557.0, 107.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | paintChild RenderPositionedBox at Point(565.0, 107.0)
|
||||
3 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | paintChild RenderParagraph at Point(565.0, 115.0)
|
||||
3 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | translate(565.0, 115.0)
|
||||
3 | | | | | | | | | | | | translate(-565.0, -115.0)
|
||||
3 | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
3 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
3 | | | paintChild RenderStack at Point(0.0, 250.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xefff9f00)))
|
||||
3 | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
3 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
3 | | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
3 | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
3 | | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xefff9f00)))
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderParagraph at Point(290.5, 365.0)
|
||||
3 | | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
3 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
3 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
3 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | translate(290.5, 365.0)
|
||||
3 | | | | | | | translate(-290.5, -365.0)
|
||||
3 | | | | | | | paintChild RenderDecoratedBox at Point(8.0, 258.0)
|
||||
3 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
3 | | | | | | | | paintChild RenderInkWell at Point(8.0, 258.0)
|
||||
3 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | paintChild RenderPadding at Point(8.0, 258.0)
|
||||
3 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
3 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | paintChild RenderParagraph at Point(290.5, 365.0)
|
||||
3 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
3 | | | | | | | | | | | | translate(290.5, 365.0)
|
||||
3 | | | | | | | | | | | | translate(-290.5, -365.0)
|
||||
------------------------------------------------------------------------
|
||||
CONSOLE:
|
||||
PAINT FOR FRAME #4 ----------------------------------------------
|
||||
@ -86,35 +134,59 @@ PAINT FOR FRAME #4 ----------------------------------------------
|
||||
4 | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
4 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
4 | | | paintChild RenderFlex at Point(0.0, 0.0)
|
||||
4 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 425.0, 250.0), Paint(color:Color(0xff00ffff)))
|
||||
4 | | | paintChild RenderPadding at Point(425.0, 99.0)
|
||||
4 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
4 | | | | paintChild RenderDecoratedBox at Point(0.0, 0.0)
|
||||
4 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
4 | | | | | paintChild RenderPositionedBox at Point(441.0, 107.0)
|
||||
4 | | | | | drawRect(Rect.fromLTRB(0.0, 0.0, 425.0, 250.0), Paint(color:Color(0xff00ffff)))
|
||||
4 | | | | | paintChild RenderConstrainedBox at Point(0.0, 0.0)
|
||||
4 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | paintChild RenderParagraph at Point(441.0, 115.0)
|
||||
4 | | | | paintChild RenderPadding at Point(425.0, 99.0)
|
||||
4 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
4 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | paintChild RenderConstrainedBox at Point(433.0, 107.0)
|
||||
4 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | translate(441.0, 115.0)
|
||||
4 | | | | | | | translate(-441.0, -115.0)
|
||||
4 | | | | | | | paintChild RenderDecoratedBox at Point(433.0, 107.0)
|
||||
4 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
4 | | | | | | | | paintChild RenderInkWell at Point(433.0, 107.0)
|
||||
4 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | paintChild RenderPadding at Point(433.0, 107.0)
|
||||
4 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | paintChild RenderPositionedBox at Point(441.0, 107.0)
|
||||
4 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | | paintChild RenderParagraph at Point(441.0, 115.0)
|
||||
4 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | | | translate(441.0, 115.0)
|
||||
4 | | | | | | | | | | | | translate(-441.0, -115.0)
|
||||
4 | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
4 | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
4 | | | paintChild RenderStack at Point(0.0, 250.0)
|
||||
4 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xff00ffff)))
|
||||
4 | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
4 | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
4 | | | | paintChild RenderDecoratedBox at Point(0.0, 250.0)
|
||||
4 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
4 | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
4 | | | | | drawRect(Rect.fromLTRB(0.0, 250.0, 800.0, 500.0), Paint(color:Color(0xff00ffff)))
|
||||
4 | | | | | paintChild RenderConstrainedBox at Point(0.0, 250.0)
|
||||
4 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | paintChild RenderParagraph at Point(228.5, 365.0)
|
||||
4 | | | | paintChild RenderPadding at Point(0.0, 250.0)
|
||||
4 | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
4 | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | paintChild RenderConstrainedBox at Point(8.0, 258.0)
|
||||
4 | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | translate(228.5, 365.0)
|
||||
4 | | | | | | | translate(-228.5, -365.0)
|
||||
4 | | | | | | | paintChild RenderDecoratedBox at Point(8.0, 258.0)
|
||||
4 | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | drawRRect(Instance of 'RRect', Paint(color:Color(0xffe0e0e0), drawLooper:true))
|
||||
4 | | | | | | | | paintChild RenderInkWell at Point(8.0, 258.0)
|
||||
4 | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | paintChild RenderPadding at Point(8.0, 258.0)
|
||||
4 | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | paintChild RenderPositionedBox at Point(16.0, 258.0)
|
||||
4 | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | | paintChild RenderParagraph at Point(228.5, 365.0)
|
||||
4 | | | | | | | | | | | | TestPaintingCanvas() constructor: 800.0 x 600.0
|
||||
4 | | | | | | | | | | | | translate(228.5, 365.0)
|
||||
4 | | | | | | | | | | | | translate(-228.5, -365.0)
|
||||
------------------------------------------------------------------------
|
||||
PAINTED 4 FRAMES
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user