gecko-dev/gfx/wr
Emilio Cobos Álvarez b151f69581 Bug 1587468 - Update serde and related crates. r=nical
We are no longer using a pinned version of serde, so update to avoid the
dependency on older syn / quote / etc.

Differential Revision: https://phabricator.services.mozilla.com/D53375

--HG--
extra : moz-landing-system : lando
2019-11-19 15:20:39 +00:00
..
ci-scripts Bug 1589512 - Part 2 - Add example DirectComposite webrender integration. r=kvark 2019-10-23 20:35:55 +00:00
debugger Bug 1566031 - Update vulnerable lodash version in WebRender Debugger. r=emilio 2019-10-02 19:52:48 +00:00
direct-composition Bug 1581549. Update to mozangle 0.3.1 to solve build time issues. r=kvark 2019-09-16 15:30:32 +00:00
example-compositor Bug 1591627 - Add support for specifying surface opacity to OS compositor interface. r=mstange,kvark 2019-10-30 20:49:44 +00:00
examples Bug 1595787: Move ExternalImageHandler and OutputImageHandler traits to webrender_api. r=kvark 2019-11-14 17:40:28 +00:00
peek-poke Bug 1590060 - Update unicode-xid in peek-poke-derive. r=jrmuizel 2019-10-21 13:04:54 +00:00
webrender Backed out changeset a3a7133456b4 (bug 1589198) for reftest at layout/reftests/svg/filters/filter-nested-filtering-02.svg. On a CLOSED TREE 2019-11-19 15:51:58 +02:00
webrender_api Bug 1587468 - Update serde and related crates. r=nical 2019-11-19 15:20:39 +00:00
webrender_build Bug 1525402 - Mark all gfx/wr crates as Rust 2018. r=kvark 2019-05-07 01:39:22 +00:00
wr_malloc_size_of Bug 1567241 - Update to euclid 0.20. r=kvark, emilio. 2019-07-18 22:54:16 +02:00
wrench Backed out changeset a3a7133456b4 (bug 1589198) for reftest at layout/reftests/svg/filters/filter-nested-filtering-02.svg. On a CLOSED TREE 2019-11-19 15:51:58 +02:00
.gitignore
.taskcluster.yml Bug 1575648 - don't set RUSTFLAGS='--deny warnings' (temporary fix) r=nical 2019-11-08 13:57:53 +00:00
Cargo.lock Bug 1594747. Update bitflags in WebRender to 1.2. r=kvark 2019-11-07 16:57:15 +00:00
Cargo.toml Bug 1589512 - Part 2 - Add example DirectComposite webrender integration. r=kvark 2019-10-23 20:35:55 +00:00
LICENSE
README.md Bug 1587650 - Update README.md with more informative intro r=gw 2019-10-18 01:04:50 +00:00
appveyor.yml Bug 1589661. Switch WebRender AppVeyor CI to rust 1.36. r=kvark 2019-10-18 14:28:15 +00:00
rustfmt.toml
servo-tidy.toml Bug 1590553 - Dedupe synstructure r=jrmuizel 2019-10-22 23:29:01 +00:00

README.md

WebRender

Version

WebRender is a GPU-based 2D rendering engine written in Rust. Firefox, the research web browser Servo, and other GUI frameworks draw with it. It currently uses the OpenGL API internally.

Note that the canonical home for this code is in gfx/wr folder of the mozilla-central repository at https://hg.mozilla.org/mozilla-central. The Github repository at https://github.com/servo/webrender should be considered a downstream mirror, although it contains additional metadata (such as Github wiki pages) that do not exist in mozilla-central. Pull requests against the Github repository are still being accepted, although once reviewed, they will be landed on mozilla-central first and then mirrored back. If you are familiar with the mozilla-central contribution workflow, filing bugs in Bugzilla and submitting patches there would be preferred.

Update as a Dependency

After updating shaders in WebRender, go to servo and:

  • Go to the servo directory and do ./mach update-cargo -p webrender
  • Create a pull request to servo

Use WebRender with Servo

To use a local copy of WebRender with servo, go to your servo build directory and:

  • Edit Cargo.toml
  • Add at the end of the file:
[patch."https://github.com/servo/webrender"]
"webrender" = { path = "<path>/webrender" }
"webrender_api" = { path = "<path>/webrender_api" }

where <path> is the path to your local copy of WebRender.

  • Build as normal

Documentation

The Wiki has a few pages describing the internals and conventions of WebRender.

Testing

Tests run using OSMesa to get consistent rendering across platforms.

Still there may be differences depending on font libraries on your system, for example.

See this gist for how to make the text tests useful in Fedora, for example.