Pass the correct moz2d backend in CanvasClients. (bug 1212499, r=mattwoodrow)

This commit is contained in:
David Anderson 2015-10-07 16:34:41 -07:00
Родитель e5a7882380
Коммит 3b183cc62a
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -131,8 +131,9 @@ CanvasClient2D::CreateTextureClientForCanvas(gfx::SurfaceFormat aFormat,
#else
// XXX - We should use CreateTextureClientForDrawing, but we first need
// to use double buffering.
gfx::BackendType backend = gfxPlatform::GetPlatform()->GetPreferredCanvasBackend();
return TextureClient::CreateForRawBufferAccess(GetForwarder(),
aFormat, aSize, gfx::BackendType::NONE,
aFormat, aSize, backend,
mTextureFlags | aFlags);
#endif
}