Bug 895116: Use an ImageSurface in CanvasClient2DUpdate r=mattwoodrow

This commit is contained in:
David Zbarsky 2013-07-17 23:54:09 -07:00
Родитель d7fdf67911
Коммит 7ee9db63db
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -66,7 +66,7 @@ CanvasClient2D::Update(gfx::IntSize aSize, ClientCanvasLayer* aLayer)
: gfxASurface::CONTENT_COLOR_ALPHA;
mDeprecatedTextureClient->EnsureAllocated(aSize, contentType);
gfxASurface* surface = mDeprecatedTextureClient->LockSurface();
gfxASurface* surface = mDeprecatedTextureClient->LockImageSurface();
aLayer->UpdateSurface(surface);
mDeprecatedTextureClient->Unlock();
}