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

Side by Side Diff: sky/sdk/lib/README.md

Issue 1206373002: Implement ClipRRect (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: cr feedback Created 5 years, 6 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 | « no previous file | sky/sdk/lib/rendering/box.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 SKY SDK 1 SKY SDK
2 ======== 2 ========
3 3
4 Sky and Sky's SDK are designed as layered frameworks, where each layer 4 Sky and Sky's SDK are designed as layered frameworks, where each layer
5 depends on the ones below it but could be replaced wholesale. 5 depends on the ones below it but could be replaced wholesale.
6 6
7 The bottom-most layer is the Sky Platform, which is exposed to Dart 7 The bottom-most layer is the Sky Platform, which is exposed to Dart
8 code as [various ```dart:``` packages](https://api.dartlang.org/), 8 code as [various ```dart:``` packages](https://api.dartlang.org/),
9 including ```dart:sky```. 9 including ```dart:sky```.
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 | dart:sky | | | Host | 56 | dart:sky | | | Host |
57 +--------+---+ | | APIs | C++ 57 +--------+---+ | | APIs | C++
58 | Skia | Dart | +------+ ObjC 58 | Skia | Dart | +------+ ObjC
59 +--------+--------+ | Java 59 +--------+--------+ | Java
60 | Mojo | 60 | Mojo |
61 +-----------------------------+ ------- 61 +-----------------------------+ -------
62 | Host Operating System | C/C++ 62 | Host Operating System | C/C++
63 +-----------------------------+ ------- 63 +-----------------------------+ -------
64 64
65 TODO(ianh): document dart:sky and the Host APIs somewhere 65 TODO(ianh): document dart:sky and the Host APIs somewhere
66
67 Sky Engine API
68 --------------
69
70 The Sky engine API provides efficient, immutable wrappers
71 for common Skia C++ types, notably Color, Point, and Rect.
72 Because these wrappers are immutable, they are suitable
73 for storage in final member variables of widget classes.
74 More complex Skia wrappers such as Paint and RRect are
75 mutable, to more closely match the Skia APIs. We recommend
76 constructing wrappers for complex Skia classes dynamically
77 during the painting phase based on the underlying state of
78 the widget.
OLDNEW
« no previous file with comments | « no previous file | sky/sdk/lib/rendering/box.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698