gecko-dev/gfx/wr/wrench
Dzmitry Malyshau 1240a7a135 Bug 1629776 - Handle WR case of an empty inner transformed rectangle r=gw
Differential Revision: https://phabricator.services.mozilla.com/D71229
2020-04-16 23:20:48 +00:00
..
benchmarks
examples
reftests Bug 1629776 - Handle WR case of an empty inner transformed rectangle r=gw 2020-04-16 23:20:48 +00:00
res
script Bug 1620642 - reftest-analyzer improvements for analyzing test failures r=jgilbert 2020-03-09 19:45:11 +00:00
src Bug 1630212 - Remove non-tiled blob images. r=jrmuizel 2020-04-16 20:13:24 +00:00
.gitignore
Cargo.toml Bug 1630480 - Update gleam GL bindings to 0.11.0 r=lsalzman 2020-04-16 02:13:31 +00:00
README.md
android.txt
build.rs

README.md

wrench

wrench is a tool for debugging webrender outside of a browser engine.

headless

wrench has an optional headless mode for use in continuous integration. To run in headless mode, instead of using cargo run -- args, use ./headless.py args.

replay and show

Binary recordings can be generated by webrender and replayed with wrench replay. Enable binary recording in RendererOptions.

RendererOptions {
    ...
    recorder: Some(Box::new(BinaryRecorder::new("wr-frame.bin"))),
    ...
}

If you are working on gecko integration you can enable recording in webrender_bindings/src/bindings.rs by setting

static ENABLE_RECORDING: bool = true;

wrench replay --save yaml will convert the recording into frames described in yaml. Frames can then be replayed with wrench show.

reftest

Wrench also has a reftest system for catching regressions.

  • To run all reftests, run script/headless.py reftest
  • To run specific reftests, run script/headless.py reftest path/to/test/or/dir
  • To examine test failures, use the reftest analyzer
  • To add a new reftest, create an example frame and a reference frame in reftests/ and then add an entry to reftests/reftest.list