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

Side by Side Diff: site/user/tips.md

Issue 1439493003: Documentation: clean up (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-11-13 (Friday) 07:21:08 EST Created 5 years, 1 month 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 | « site/user/quick/windows.md ('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 Tips & FAQ 1 Tips & FAQ
2 ========== 2 ==========
3 3
4 Tips and Tricks 4 Tips and Tricks
5 --------------- 5 ---------------
6 6
7 <span id="bitmap-subsetting"></span> 7 <span id="bitmap-subsetting"></span>
8 8
9 ### Bitmap Subsetting 9 ### Bitmap Subsetting
10 10
(...skipping 26 matching lines...) Expand all
37 37
38 bin/sync-and-gyp 38 bin/sync-and-gyp
39 ninja -C out/Release debugger dm SampleApp 39 ninja -C out/Release debugger dm SampleApp
40 out/Release/debugger /tmp/layer_0.skp & 40 out/Release/debugger /tmp/layer_0.skp &
41 41
42 out/Release/dm --src skp --skps /tmp/layer_0.skp -w /tmp \ 42 out/Release/dm --src skp --skps /tmp/layer_0.skp -w /tmp \
43 --config 8888 gpu pdf --verbose 43 --config 8888 gpu pdf --verbose
44 ls -l /tmp/*/skp/layer_0.skp.* 44 ls -l /tmp/*/skp/layer_0.skp.*
45 45
46 out/Release/SampleApp --picture /tmp/layer_0.skp 46 out/Release/SampleApp --picture /tmp/layer_0.skp
47 # On MacOS, SampleApp is a bundle:
48 open out/Release/SampleApp.app --args --picture /tmp/layer_0.skp
49 47
50 * * * 48 * * *
51 49
52 FAQ 50 FAQ
53 --- 51 ---
54 52
55 <span id="hw-acceleration"></span> 53 <span id="hw-acceleration"></span>
56 54
57 ### Does Skia support HW acceleration? 55 ### Does Skia support HW acceleration?
58 56
(...skipping 18 matching lines...) Expand all
77 ### Does Skia support Font hinting? 75 ### Does Skia support Font hinting?
78 76
79 Skia has a built-in font cache, but it does not know how to actual render font 77 Skia has a built-in font cache, but it does not know how to actual render font
80 files like TrueType? into its cache. For that it relies on the platform to 78 files like TrueType? into its cache. For that it relies on the platform to
81 supply an instance of SkScalerContext?. This is Skia's abstract interface for 79 supply an instance of SkScalerContext?. This is Skia's abstract interface for
82 communicating with a font scaler engine. In src/ports you can see support 80 communicating with a font scaler engine. In src/ports you can see support
83 files for FreeType?, Mac OS X, and Windows GDI font engines. Other font 81 files for FreeType?, Mac OS X, and Windows GDI font engines. Other font
84 engines can easily be supported in a like manner. 82 engines can easily be supported in a like manner.
85 83
86 84
OLDNEW
« no previous file with comments | « site/user/quick/windows.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698