| OLD | NEW |
| 1 Windows | 1 Windows |
| 2 ======= | 2 ======= |
| 3 | 3 |
| 4 Prerequisites | 4 Prerequisites |
| 5 ------------- | 5 ------------- |
| 6 | 6 |
| 7 Make sure the following have been installed: | 7 Make sure the following have been installed: |
| 8 | 8 |
| 9 * Visual C++ 2013 Express or later, available for free | 9 * Visual C++ 2013 Express or later, available for free |
| 10 * http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-
windows-8 | 10 * http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-
windows-8 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * to fix arrows in insert, copy /usr/share/vim/vim73/vimrc_example.vim t
o ~/.vimrc | 27 * to fix arrows in insert, copy /usr/share/vim/vim73/vimrc_example.vim t
o ~/.vimrc |
| 28 * Net ca-certificates | 28 * Net ca-certificates |
| 29 * Python python | 29 * Python python |
| 30 * Utils patch | 30 * Utils patch |
| 31 * Utils util-linux | 31 * Utils util-linux |
| 32 * set the windows envionment variable CYGWIN to nodosfilewarning | 32 * set the windows envionment variable CYGWIN to nodosfilewarning |
| 33 | 33 |
| 34 Check out the source code | 34 Check out the source code |
| 35 ------------------------- | 35 ------------------------- |
| 36 | 36 |
| 37 see https://sites.google.com/site/skiadocs/developer-documentation/contributing-
code/downloading | 37 see https://skia.org/user/download |
| 38 | 38 |
| 39 Generate Visual Studio projects | 39 Generate Visual Studio projects |
| 40 ------------------------------- | 40 ------------------------------- |
| 41 | 41 |
| 42 We use the open-source gyp tool to generate Visual Studio projects (and | 42 We use the open-source gyp tool to generate Visual Studio projects (and |
| 43 analogous build scripts on other platforms) from our multi-platform "gyp" | 43 analogous build scripts on other platforms) from our multi-platform "gyp" |
| 44 files. | 44 files. |
| 45 | 45 |
| 46 You can generate the Visual Studio projects by running gyp_skia, as follows: | 46 You can generate the Visual Studio projects by running gyp_skia, as follows: |
| 47 | 47 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 * left-arrow key: cycle through rendering methods for each test page | 87 * left-arrow key: cycle through rendering methods for each test page |
| 88 * other keys are defined in SampleApp.cpp’s SampleWindow::onHandleKey() and
SampleWindow::onHandleChar() methods | 88 * other keys are defined in SampleApp.cpp’s SampleWindow::onHandleKey() and
SampleWindow::onHandleChar() methods |
| 89 | 89 |
| 90 Build and run nanobench (performance testbench) from the command line | 90 Build and run nanobench (performance testbench) from the command line |
| 91 --------------------------------------------------------------------- | 91 --------------------------------------------------------------------- |
| 92 | 92 |
| 93 Since nanobench tests performance, it usually makes more sense to run it in Rele
ase mode. | 93 Since nanobench tests performance, it usually makes more sense to run it in Rele
ase mode. |
| 94 | 94 |
| 95 ninja -C out\Release nanobench | 95 ninja -C out\Release nanobench |
| 96 out\Release\nanobench | 96 out\Release\nanobench |
| OLD | NEW |