diff --git a/b2g/app/b2g.js b/b2g/app/b2g.js index bb7eccffc704..0e198f3e3d22 100644 --- a/b2g/app/b2g.js +++ b/b2g/app/b2g.js @@ -257,6 +257,8 @@ pref("layers.acceleration.disabled", false); pref("layers.offmainthreadcomposition.async-animations", true); pref("layers.async-video.enabled", true); pref("layers.async-pan-zoom.enabled", true); +pref("gfx.content.azure.enabled", true); +pref("gfx.content.azure.backends", "cairo"); #endif // Web Notifications diff --git a/gfx/thebes/gfxPlatform.cpp b/gfx/thebes/gfxPlatform.cpp index c79c869a2bc3..a3fc2bed1e2a 100644 --- a/gfx/thebes/gfxPlatform.cpp +++ b/gfx/thebes/gfxPlatform.cpp @@ -284,7 +284,7 @@ gfxPlatform::gfxPlatform() false); uint32_t canvasMask = (1 << BACKEND_CAIRO) | (1 << BACKEND_SKIA); - uint32_t contentMask = 0; + uint32_t contentMask = 1 << BACKEND_CAIRO; InitBackendPrefs(canvasMask, contentMask); }