Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit cfdab61

Browse files
authored
Disable WebRender until it works with FxR (#1861)
1 parent f764298 commit cfdab61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/common/shared/org/mozilla/vrbrowser/browser/engine/SessionUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public static void vrPrefsWorkAround(Context aContext, Bundle aExtras) {
4040
out.write("pref(\"media.webspeech.synth.enabled\", false);\n".getBytes());
4141
// Prevent autozoom when giving a form field focus.
4242
out.write("pref(\"formhelper.autozoom\", false);\n".getBytes());
43-
// Uncomment this to enable WebRender. WARNING NOT READY FOR USAGE.
44-
// out.write("pref(\"gfx.webrender.all\", true);\n".getBytes());
43+
// Disable WebRender until it works with FxR
44+
out.write("pref(\"gfx.webrender.force-disabled\", true);\n".getBytes());
4545
int msaa = SettingsStore.getInstance(aContext).getMSAALevel();
4646
if (msaa > 0) {
4747
int msaaLevel = msaa == 2 ? 4 : 2;

0 commit comments

Comments
 (0)