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: resources/slides_content.lua

Issue 643113005: parse outline to generate slides (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 2 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 | « resources/slides.lua ('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
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
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
OLDNEW
« no previous file with comments | « resources/slides.lua ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698