1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

fallback for Webrender

This commit is contained in:
yokoffing
2020-12-19 13:04:42 -05:00
committed by GitHub
parent 7d78174831
commit f061d93ca3
+5 -5
View File
@@ -11,7 +11,7 @@
* FasterFox *
* "Non ducor duco." *
* priority: speedy browsing *
* version: 15 August 2020 *
* version: 19 December 2020 *
* url: https://github.com/yokoffing/Better-Fox *
***************************************************************************/
@@ -23,13 +23,13 @@
****************************************************************************/
// PREF: Activate Webrender, Firefox's new rendering engine
// ! Webrender is still under active development.
// BUG: Occasionally gives you "judder scroll" on sites with a lot of images.
// https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/
// https://wiki.mozilla.org/Platform/GFX/WebRender_Where
// https://www.reddit.com/r/firefox/comments/fo1jwz/make_firefox_faster/flhh5l2/
// default=false (blacklisted on some machines still, especially macOS)
user_pref("gfx.webrender.all", true);
user_pref("gfx.webrender.all", true); /* default */
// If your hardware doesn't support Webrender, you can fallback to Webrender's software renderer.
// https://www.ghacks.net/2020/12/14/how-to-find-out-if-webrender-is-enabled-in-firefox-and-how-to-enable-it-if-it-is-not/
// user_pref("gfx.webrender.software", true);
// PREF: Lazy Image Loading
// https://www.ghacks.net/2020/02/15/firefox-75-gets-lazy-loading-support-for-images/