Bug 914984 - Enable Azure content for b2g. r=nrc

This commit is contained in:
Matt Woodrow 2013-08-15 10:49:45 +12:00
Родитель 781dbbedd2
Коммит 10d608653c
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -257,6 +257,8 @@ pref("layers.acceleration.disabled", false);
pref("layers.offmainthreadcomposition.async-animations", true); pref("layers.offmainthreadcomposition.async-animations", true);
pref("layers.async-video.enabled", true); pref("layers.async-video.enabled", true);
pref("layers.async-pan-zoom.enabled", true); pref("layers.async-pan-zoom.enabled", true);
pref("gfx.content.azure.enabled", true);
pref("gfx.content.azure.backends", "cairo");
#endif #endif
// Web Notifications // Web Notifications

Просмотреть файл

@ -284,7 +284,7 @@ gfxPlatform::gfxPlatform()
false); false);
uint32_t canvasMask = (1 << BACKEND_CAIRO) | (1 << BACKEND_SKIA); uint32_t canvasMask = (1 << BACKEND_CAIRO) | (1 << BACKEND_SKIA);
uint32_t contentMask = 0; uint32_t contentMask = 1 << BACKEND_CAIRO;
InitBackendPrefs(canvasMask, contentMask); InitBackendPrefs(canvasMask, contentMask);
} }