-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a RendererOption to configure if picture caching is enabled. #3367
Conversation
Although not hooked up internally yet, this provides a hook so that the gecko pref can be added. We'll use this to provide a temporary way to compare performance and also to allow picture caching to be disabled temporarily if we encounter any bad regressions.
r? @jrmuizel |
(or @kvark or anyone really) |
@gw3583 it would be great to have 3 options here: force-enabled, force-disabled, and manual (specified per-SC). Your words got stuck in my head about the fact that picture caching is going to hide some of our performance issues, and this is worrying me. So I'd like to be able to constantly run without it to see how good our baseline is. |
Discussed on IRC a bit. Anyhow, this is harmless. |
📌 Commit d2e4f4c has been approved by |
Add a RendererOption to configure if picture caching is enabled. Although not hooked up internally yet, this provides a hook so that the gecko pref can be added. We'll use this to provide a temporary way to compare performance and also to allow picture caching to be disabled temporarily if we encounter any bad regressions. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/3367) <!-- Reviewable:end -->
☀️ Test successful - status-appveyor, status-taskcluster |
…344a29b18678 (WR PR #3367). r=kats servo/webrender#3367 Differential Revision: https://phabricator.services.mozilla.com/D13554 --HG-- extra : moz-landing-system : lando
…344a29b18678 (WR PR #3367). r=kats servo/webrender#3367 Differential Revision: https://phabricator.services.mozilla.com/D13554
…344a29b18678 (WR PR #3367). r=kats servo/webrender#3367 Differential Revision: https://phabricator.services.mozilla.com/D13554 UltraBlame original commit: 5a212090eeecc702a8c3461e6926d9c83abb7c09
…344a29b18678 (WR PR #3367). r=kats servo/webrender#3367 Differential Revision: https://phabricator.services.mozilla.com/D13554 UltraBlame original commit: 5a212090eeecc702a8c3461e6926d9c83abb7c09
…344a29b18678 (WR PR #3367). r=kats servo/webrender#3367 Differential Revision: https://phabricator.services.mozilla.com/D13554 UltraBlame original commit: 5a212090eeecc702a8c3461e6926d9c83abb7c09
Although not hooked up internally yet, this provides a hook so
that the gecko pref can be added.
We'll use this to provide a temporary way to compare performance
and also to allow picture caching to be disabled temporarily if
we encounter any bad regressions.
This change is