From 2bb0c5bd833f0148de7954fb680fe62711b6a5aa Mon Sep 17 00:00:00 2001 From: Nicholas Cameron Date: Mon, 25 Nov 2013 20:07:34 +1300 Subject: [PATCH] Bug 914584. Pref on OMTC for b2g desktop builds. r=fabrice --- b2g/app/b2g.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/b2g/app/b2g.js b/b2g/app/b2g.js index 9541815b2d69..66534abc00b8 100644 --- a/b2g/app/b2g.js +++ b/b2g/app/b2g.js @@ -256,14 +256,13 @@ pref("ui.dragThresholdY", 25); // Layers Acceleration. We can only have nice things on gonk, because // they're not maintained anywhere else. +pref("layers.offmainthreadcomposition.enabled", true); #ifndef MOZ_WIDGET_GONK pref("dom.ipc.tabs.disabled", true); -pref("layers.offmainthreadcomposition.enabled", false); pref("layers.offmainthreadcomposition.async-animations", false); pref("layers.async-video.enabled", false); #else pref("dom.ipc.tabs.disabled", false); -pref("layers.offmainthreadcomposition.enabled", true); pref("layers.acceleration.disabled", false); pref("layers.offmainthreadcomposition.async-animations", true); pref("layers.async-video.enabled", true);