Bug 899785: Switch on OMTC and async video on windows. r=BenWa

This commit is contained in:
Bas Schouten 2014-05-19 20:11:07 +02:00
parent 50096d4cd3
commit 1d32fa3d7c

View File

@ -3734,10 +3734,14 @@ pref("layers.offmainthreadcomposition.frame-rate", -1);
#ifndef XP_WIN
// Asynchonous video compositing using the ImageBridge IPDL protocol.
// requires off-main-thread compositing.
// Never works on Windows, so no point pref'ing it on.
pref("layers.async-video.enabled",false);
#endif
#ifdef XP_WIN
pref("layers.offmainthreadcomposition.enabled", true);
pref("layers.async-video.enabled", true);
#endif
#ifdef MOZ_X11
// OMTC off by default on Linux, but if activated, use new textures and async-video.
pref("layers.async-video.enabled", true);