Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
compare/ | 03-May-2024 | - | 24 | 22 | ||
BaseContext.cpp | D | 03-May-2024 | 8.9 KiB | 287 | 232 | |
BaseContext.h | D | 03-May-2024 | 2.9 KiB | 85 | 56 | |
Global.cpp | D | 03-May-2024 | 7.8 KiB | 246 | 149 | |
Global.h | D | 03-May-2024 | 2 KiB | 86 | 50 | |
JsContext.cpp | D | 03-May-2024 | 4.4 KiB | 141 | 65 | |
JsContext.h | D | 03-May-2024 | 1.5 KiB | 66 | 27 | |
Path2D.cpp | D | 03-May-2024 | 8 KiB | 245 | 202 | |
Path2D.h | D | 03-May-2024 | 1.5 KiB | 53 | 29 | |
README | D | 03-May-2024 | 557 | 17 | 12 | |
SkV8Example.cpp | D | 03-May-2024 | 5.9 KiB | 226 | 173 | |
SkV8Example.h | D | 03-May-2024 | 1 KiB | 54 | 33 | |
gears.js | D | 03-May-2024 | 3.8 KiB | 184 | 162 | |
path.js | D | 03-May-2024 | 823 | 34 | 28 | |
sample.js | D | 03-May-2024 | 384 | 20 | 14 | |
snow.js | D | 03-May-2024 | 1.8 KiB | 96 | 83 | |
speed.js | D | 03-May-2024 | 436 | 24 | 16 |
README
1Build Instructions 2================== 3 4V8 gyp is not quite standard and Chromium uses a Python script 5to work around that, for now we have some manual steps to do 6before you can compile and run this sample: 7 81. Uncomment out the v8 dep in DEPS and re-run gclient sync. 92. Run 'make dependencies' in third_pary/externals/v8. 103. Run 'make native' in third_pary/externals/v8. 114. Uncomment SkV8Example in gyp/everything.gyp. 125. Run 'ninja -C out/Debug SkV8Example' 136. Run the sample as: 14 ./out/Debug/SkV8Example --infile experimental/SkV8Example/speed.js 15 16 17