OLD | NEW |
1 gSlideContent = { | |
2 { text="Skia 2.0", style="title" }, | |
3 { text="Skia 2.0", style="slide", | |
4 { text= | |
5 }, | |
6 | |
7 | |
8 } | |
9 | |
10 Skia Overview [Fall '13] | 1 Skia Overview [Fall '13] |
11 | 2 |
12 One API -- many backends | 3 One API -- many backends |
13 - Raster [8888, 565, A8] | 4 - Raster [8888, 565, A8] |
14 - GPU [opengl] | 5 - GPU [opengl] |
15 - PDF | 6 - PDF |
16 - XPS | 7 - XPS |
17 - Picture | 8 - Picture |
18 - Pipe | 9 - Pipe |
19 | 10 |
20 One Team -- many clients | 11 One Team -- many clients |
21 - Chrome | 12 - Chrome |
22 ChromeOS | 13 - ChromeOS |
23 - Clank | 14 - Clank |
24 - Android Framework | 15 - Android Framework |
25 - 3rd parties (e.g. FireFox) | 16 - 3rd parties (e.g. FireFox) |
26 | 17 |
27 Optimize for CPU variety | 18 Optimize for CPU variety |
28 - x86 - 32bit (SSE, SSE2, ...), 64bit | 19 - x86 - 32bit (SSE, SSE2, ...), 64bit |
29 - Arm - thumb, arm, NEON, ... 64bit? | 20 - Arm - thumb, arm, NEON, ... 64bit? |
30 - MIPS (just starting) | 21 - MIPS (just starting) |
31 | 22 |
32 Optimize for GPU variety | 23 Optimize for GPU variety |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 - DirectWrite on windows | 76 - DirectWrite on windows |
86 -- subpixel positioning! | 77 -- subpixel positioning! |
87 - new FontMgr -- extended styles | 78 - new FontMgr -- extended styles |
88 | 79 |
89 Roadmap : PDF | 80 Roadmap : PDF |
90 - Android | 81 - Android |
91 -- perspective, color-filters | 82 -- perspective, color-filters |
92 - New Viewer project | 83 - New Viewer project |
93 -- print-preview and more | 84 -- print-preview and more |
94 -- can output picture / gpu directly | 85 -- can output picture / gpu directly |
95 | |
96 function parse_file(file) | |
97 for line in file:lines() do | |
98 | |
99 end | |
OLD | NEW |