Platform/GFX/Quantum Render: Difference between revisions

Update given WR was moved.
m (→‎Captures: the bug landed)
(Update given WR was moved.)
Line 67: Line 67:
You can hack on WebRender either via a checkout of mozilla-central or via a checkout of the webrender repository. Using mozilla-central allows you to easily build/test Firefox and trigger try pushes, especially when you have interdependent changes across Firefox and WebRender. You can also build standalone WebRender from within mozilla-central, via i.e.
You can hack on WebRender either via a checkout of mozilla-central or via a checkout of the webrender repository. Using mozilla-central allows you to easily build/test Firefox and trigger try pushes, especially when you have interdependent changes across Firefox and WebRender. You can also build standalone WebRender from within mozilla-central, via i.e.


   cd gfx/webrender
   cd gfx/wr
   cargo build --features=capture,replay,pathfinder
   cargo build --features=capture,replay,pathfinder


Line 73: Line 73:


   cd /path/to/m-c
   cd /path/to/m-c
   # Before {{bug|1507524}} lands
   git format-patch -pk --relative=gfx/wr BASE_REVISION
    git format-patch -pk --relative=gfx BASE_REVISION gfx/webrender gfx/webrender_api
  # After {{bug|1507524}} lands
    git format-patch -pk --relative=gfx/wr BASE_REVISION
   cd /path/to/webrender
   cd /path/to/webrender
   git checkout -b my_branch
   git checkout -b my_branch
18

edits