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

Side by Side Diff: sky/examples/raw/paint_element_into_displaylist.sky

Issue 1144673002: Make it possible to Paint elements into a display list. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add example Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/painting/Canvas.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script>
2 import "dart:sky";
3
4 void main() {
5 var root = document.createElement('div');
6 root.style['display'] = 'paragraph';
7 root.appendChild(new Text('Hello World'));
8 document.appendChild(root);
9 root.offsetWidth; // force layout.
10
11 double width = window.innerWidth.toDouble();
12 double height = window.innerHeight.toDouble();
13 PictureRecorder recorder = new PictureRecorder(width, height);
14 Paint paint = new Paint()..setARGB(255, 0, 255, 0);
15 recorder.drawCircle(50.0, 50.0, 50.0, paint);
16 recorder.translate(10.0, 10.0);
17 root.paint(recorder);
18 recorder.translate(10.0, 10.0);
19 root.paint(recorder);
20 recorder.translate(10.0, 10.0);
21 root.paint(recorder);
22 document.rootPicture = recorder.endRecording();
23 }
24 </script>
OLDNEW
« no previous file with comments | « sky/engine/core/painting/Canvas.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698