Bug 952721 - Don't crash if our surface allocation fails in TiledContentClient. r=Bas

This commit is contained in:
Matt Woodrow 2014-05-02 14:28:52 +12:00
Родитель 268fc162e7
Коммит 73b28ad5c7
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -665,6 +665,10 @@ ClientTiledLayerBuffer::PaintThebes(const nsIntRegion& aNewValidRegion,
ceilf(bounds.height * mResolution)),
gfx::ImageFormatToSurfaceFormat(format));
if (!mSinglePaintDrawTarget) {
return;
}
ctxt = new gfxContext(mSinglePaintDrawTarget);
mSinglePaintBufferOffset = nsIntPoint(bounds.x, bounds.y);