gecko-dev/gfx/wr
Glenn Watson acad28be56 Bug 1592891 - Disable picture caching when picture caches have complex transforms. r=kvark,nical
With the recent changes to compositing in WR, the scene must either
only produce produce cache tiles, or disable picture caching and
rasterize directly.

This patch removes the (currently broken) path where WR would attempt
to disable only the picture cache slice(s) that have a complex
transform.

In future, we should disable creating picture cache slices with
complex transforms at the API level, and remove this path completely.

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

--HG--
extra : moz-landing-system : lando
2019-10-31 19:53:44 +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 Backed out changeset 42d3ccf69629 (bug 1583879) for causing reftest failures on sort-startSame-1b.svg CLOSED TREE 2019-10-11 18:27:52 +03:00
peek-poke Bug 1590060 - Update unicode-xid in peek-poke-derive. r=jrmuizel 2019-10-21 13:04:54 +00:00
webrender Bug 1592891 - Disable picture caching when picture caches have complex transforms. r=kvark,nical 2019-10-31 19:53:44 +00:00
webrender_api Bug 1592810 - Add support for dynamically disabling picture caching, for pinch zoom cases. r=nical 2019-10-31 08:38:01 +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 Bug 1592891 - Disable picture caching when picture caches have complex transforms. r=kvark,nical 2019-10-31 19:53:44 +00:00
.gitignore
.taskcluster.yml Bug 1575648 - update webrender tc.yml to v1; r=jrmuizel 2019-09-17 13:54:56 +00:00
appveyor.yml Bug 1589661. Switch WebRender AppVeyor CI to rust 1.36. r=kvark 2019-10-18 14:28:15 +00:00
Cargo.lock Bug 1589512 - Part 2 - Add example DirectComposite webrender integration. r=kvark 2019-10-23 20:35:55 +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
rustfmt.toml
servo-tidy.toml Bug 1590553 - Dedupe synstructure r=jrmuizel 2019-10-22 23:29:01 +00:00

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.