OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import 'dart:sky'; | 5 import 'dart:sky'; |
6 | 6 |
7 import 'package:sky/rendering/object.dart'; | |
abarth-chromium
2015/06/23 02:28:45
ditto
iansf
2015/06/23 22:46:09
Done.
| |
8 | |
7 void beginFrame(double timeStamp) { | 9 void beginFrame(double timeStamp) { |
8 var size = 100.0; | 10 var size = 100.0; |
9 PictureRecorder canvas = new PictureRecorder(view.width, view.height); | 11 PictureRecorder recorder = new PictureRecorder(); |
12 RenderCanvas canvas = new RenderCanvas(recorder, view.width, view.height); | |
10 canvas.translate(size + 10.0, size + 10.0); | 13 canvas.translate(size + 10.0, size + 10.0); |
11 | 14 |
12 Paint paint = new Paint(); | 15 Paint paint = new Paint(); |
13 paint.color = const Color.fromARGB(255, 0, 255, 0); | 16 paint.color = const Color.fromARGB(255, 0, 255, 0); |
14 var builder = new LayerDrawLooperBuilder() | 17 var builder = new LayerDrawLooperBuilder() |
15 // Shadow layer. | 18 // Shadow layer. |
16 ..addLayerOnTop( | 19 ..addLayerOnTop( |
17 new DrawLooperLayerInfo() | 20 new DrawLooperLayerInfo() |
18 ..setPaintBits(PaintBits.all) | 21 ..setPaintBits(PaintBits.all) |
19 ..setOffset(const Point(5.0, 5.0)) | 22 ..setOffset(const Point(5.0, 5.0)) |
20 ..setColorMode(TransferMode.src), | 23 ..setColorMode(TransferMode.src), |
21 (Paint layerPaint) { | 24 (Paint layerPaint) { |
22 layerPaint.color = const Color.fromARGB(128, 55, 55, 55); | 25 layerPaint.color = const Color.fromARGB(128, 55, 55, 55); |
23 layerPaint.setMaskFilter( | 26 layerPaint.setMaskFilter( |
24 new MaskFilter.blur(BlurStyle.normal, 5.0, highQuality: true)); | 27 new MaskFilter.blur(BlurStyle.normal, 5.0, highQuality: true)); |
25 }) | 28 }) |
26 // Main layer. | 29 // Main layer. |
27 ..addLayerOnTop(new DrawLooperLayerInfo(), (Paint) {}); | 30 ..addLayerOnTop(new DrawLooperLayerInfo(), (Paint) {}); |
28 paint.setDrawLooper(builder.build()); | 31 paint.setDrawLooper(builder.build()); |
29 | 32 |
30 canvas.drawPaint( | 33 canvas.drawPaint( |
31 new Paint()..color = const Color.fromARGB(255, 255, 255, 255)); | 34 new Paint()..color = const Color.fromARGB(255, 255, 255, 255)); |
32 canvas.drawRect(new Rect.fromLTRB(-size, -size, size, size), paint); | 35 canvas.drawRect(new Rect.fromLTRB(-size, -size, size, size), paint); |
33 view.picture = canvas.endRecording(); | 36 view.picture = recorder.endRecording(); |
34 } | 37 } |
35 | 38 |
36 void main() { | 39 void main() { |
37 view.setBeginFrameCallback(beginFrame); | 40 view.setBeginFrameCallback(beginFrame); |
38 view.scheduleFrame(); | 41 view.scheduleFrame(); |
39 } | 42 } |
OLD | NEW |