1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-28 23:51:18 +05:30

Compare commits

..

4 Commits

Author SHA1 Message Date
yokoffing d1a9db6667 reset pref 2026-01-16 15:18:02 -05:00
yokoffing 1c4596431e keep gfx.webrender.layer-compositor 2026-01-16 15:14:17 -05:00
yokoffing c8f119803f Update Fastfox.js 2026-01-16 15:13:19 -05:00
yokoffing 3ef60c0988 gfx.canvas.accelerated.cache-size too large 2026-01-16 15:12:33 -05:00
2 changed files with 11 additions and 3 deletions
+3 -3
View File
@@ -121,7 +121,7 @@
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1945683 // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1945683
// [2] https://www.reddit.com/r/firefox/comments/1p58qre/firefox_is_getting_ready_to_make_youtube_fast/ // [2] https://www.reddit.com/r/firefox/comments/1p58qre/firefox_is_getting_ready_to_make_youtube_fast/
// [3] https://www.ghacks.net/2025/11/24/these-two-tweaks-should-improve-firefoxs-performance-on-youtube-significantly/ // [3] https://www.ghacks.net/2025/11/24/these-two-tweaks-should-improve-firefoxs-performance-on-youtube-significantly/
//user_pref("gfx.webrender.layer-compositor", true); user_pref("gfx.webrender.layer-compositor", true);
// If your PC uses an AMD GPU, you might want to make a second change. // If your PC uses an AMD GPU, you might want to make a second change.
// This one improves CPU usage on AMD systems. // This one improves CPU usage on AMD systems.
//user_pref("media.wmf.zero-copy-nv12-textures-force-enabled", true); //user_pref("media.wmf.zero-copy-nv12-textures-force-enabled", true);
@@ -142,8 +142,8 @@
// [2] https://github.com/yokoffing/Betterfox/issues/153 // [2] https://github.com/yokoffing/Betterfox/issues/153
// [3] https://github.com/yokoffing/Betterfox/issues/198 // [3] https://github.com/yokoffing/Betterfox/issues/198
//user_pref("gfx.canvas.accelerated", true); // [DEFAULT FF133+] //user_pref("gfx.canvas.accelerated", true); // [DEFAULT FF133+]
//user_pref("gfx.canvas.accelerated.cache-items", 32768); // [default=8192 FF135+]; Chrome=4096 //user_pref("gfx.canvas.accelerated.cache-items", 4096); // [default=8192 FF135+]; Chrome=4096
//user_pref("gfx.canvas.accelerated.cache-size", 4096); // default=256; Chrome=512 //user_pref("gfx.canvas.accelerated.cache-size", 512); // default=256; Chrome=512
//user_pref("gfx.canvas.max-size", 32767); // DEFAULT=32767 //user_pref("gfx.canvas.max-size", 32767); // DEFAULT=32767
// PREF: WebGL // PREF: WebGL
+8
View File
@@ -14,6 +14,12 @@
* url: https://github.com/yokoffing/Betterfox * * url: https://github.com/yokoffing/Betterfox *
****************************************************************************/ ****************************************************************************/
/****************************************************************************
* SECTION: FASTFOX *
****************************************************************************/
user_pref("gfx.canvas.accelerated.cache-size", 256); // reset pref
user_pref("gfx.webrender.layer-compositor", true);
/**************************************************************************** /****************************************************************************
* SECTION: SECUREFOX * * SECTION: SECUREFOX *
****************************************************************************/ ****************************************************************************/
@@ -195,3 +201,5 @@ user_pref("layout.word_select.eat_space_to_next_word", false);
/**************************************************************************** /****************************************************************************
* END: BETTERFOX * * END: BETTERFOX *
****************************************************************************/ ****************************************************************************/