Chromium Code Reviews| Index: sky/examples/raw/painting.sky |
| diff --git a/sky/examples/raw/painting.sky b/sky/examples/raw/painting.sky |
| index fcfa3d56b36c118e1bfa33384f64c37b5c44cbe1..622d5823a84e68408501f5c87f93a91e8fa5ce91 100644 |
| --- a/sky/examples/raw/painting.sky |
| +++ b/sky/examples/raw/painting.sky |
| @@ -22,7 +22,8 @@ void main() { |
| context.clipRect(new Rect.fromLTRB(0.0, 0.0, context.width, radius)); |
| context.translate(mid.x, mid.y); |
| - paint.setARGB(128, 255, 0, 255); |
| + paint.color = const Color.fromARGB(128, 255, 0, 255); |
| + print("color: ${paint.color.value}"); |
|
eseidel
2015/06/01 20:34:23
Intentional?
Matt Perry
2015/06/01 20:38:50
Done.
|
| context.rotateDegrees(45.0); |
| context.drawRect(new Rect.fromLTRB(-radius, -radius, radius, radius), |
| @@ -35,7 +36,7 @@ void main() { |
| 0.0, 0.0, 1.0 |
| ]; |
| context.concat(scaleMatrix); |
| - paint.setARGB(128, 0, 255, 0); |
| + paint.color = const Color.fromARGB(128, 0, 255, 0); |
| context.drawCircle(0.0, 0.0, radius, paint); |
| context.restore(); |
| @@ -46,19 +47,19 @@ void main() { |
| new DrawLooperLayerInfo() |
| ..setOffset(150.0, 0.0)..setPaintBits(-1)..setColorMode(1), |
| (Paint layerPaint) { |
| - layerPaint.setARGB(128, 255, 255, 0); |
| + layerPaint.color = const Color.fromARGB(128, 255, 255, 0); |
| layerPaint.setColorFilter(new ColorFilter(0x770000ff, 5)); |
| }) |
| ..addLayerOnTop( |
| new DrawLooperLayerInfo()..setOffset(75.0, 75.0)..setColorMode(1), |
| (Paint layerPaint) { |
| - layerPaint.setARGB(128, 255, 0, 0); |
| + layerPaint.color = const Color.fromARGB(128, 255, 0, 0); |
| }) |
| ..addLayerOnTop( |
| new DrawLooperLayerInfo()..setOffset(225.0, 75.0), |
| (Paint layerPaint) { |
| // Since this layer uses a DST color mode, this has no effect. |
| - layerPaint.setARGB(128, 255, 0, 0); |
| + layerPaint.color = const Color.fromARGB(128, 255, 0, 0); |
| }); |
| paint.setDrawLooper(builder.build()); |
| context.drawCircle(0.0, 0.0, radius, paint); |