skia2/experimental/wasm-skp-debugger
Nathaniel Nifong 98f78232ae Add a method to search for the command that shades a pixel.
Supports a streamlined breakpoint workflow in the new debugger.
not used in the current debugger.

Change-Id: I9f30c92357c24e145a19c794e935e2c05594d883
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/332256
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Commit-Queue: Nathaniel Nifong <nifong@google.com>
2020-11-05 19:44:22 +00:00
..
debugger Upgrade to emscripten 1.39.16 2020-05-21 18:31:21 +00:00
fonts Initial wasm debugger 2019-03-05 16:10:15 +00:00
tests Upgrade to emscripten 1.39.16 2020-05-21 18:31:21 +00:00
.gitignore Initial wasm debugger 2019-03-05 16:10:15 +00:00
compile.sh Fix debugger to work with new emsdk 2020-10-08 18:08:06 +00:00
cpu.js Debugger changes to make layer inspection interactive 2019-12-20 14:32:28 +00:00
debugger_bindings.cpp Add a method to search for the command that shades a pixel. 2020-11-05 19:44:22 +00:00
externs.js Add a method of returning the list of commands that use an image 2020-09-16 15:57:40 +00:00
gpu.js [canvaskit] Bump GPU resource cache to 256MB 2019-04-05 18:06:18 +00:00
helper.js missed minification bug 2020-08-14 17:06:05 +00:00
karma.conf.js Add tests that loads mskp and changes frame. 2019-09-25 18:13:00 +00:00
Makefile Make move-assets obey SKIA_INFRA_ROOT 2019-09-27 17:48:35 +00:00
package.json Basic wasm skp debugger unit test 2019-03-06 14:41:17 +00:00
README.md Make move-assets obey SKIA_INFRA_ROOT 2019-09-27 17:48:35 +00:00
serve.py Initial wasm debugger 2019-03-05 16:10:15 +00:00

WASM SKP Debugger

The wasm skp debugger is a wasm binary that uses DebugCanvas to show SKP and MSKP files. It is embedded in the javascript code in debugger-assets from the infra buildbot repository.

The live version is available at debugger.skia.org

Build

make debug
make move-assets

note that make move-assets just copies the two output files over to the infra repo where they can be served locally. This requires SKIA_INFRA_ROOT to be set to the root of your checkout of that repo.

For more information on running the debugger locally, see infra/debugger-assets/README.md in the buildbot repo.

Test

tests are run with

make test-continuous

tests are defined by files in tests/*.spec.js