Bug 1008573 - Simplify D3D10 invalid region before we clear the surface. r=Bas

This commit is contained in:
Matt Woodrow 2014-05-13 11:46:54 +12:00
Родитель 3f93856e12
Коммит e00ee174fb
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -404,6 +404,8 @@ ThebesLayerD3D10::DrawRegion(nsIntRegion &aRegion, SurfaceMode aMode)
return;
}
aRegion.SimplifyOutwardByArea(100 * 100);
nsRefPtr<gfxASurface> destinationSurface;
if (aMode == SurfaceMode::SURFACE_COMPONENT_ALPHA) {
@ -412,8 +414,6 @@ ThebesLayerD3D10::DrawRegion(nsIntRegion &aRegion, SurfaceMode aMode)
destinationSurface = mD2DSurface;
}
aRegion.SimplifyOutwardByArea(100 * 100);
MOZ_ASSERT(mDrawTarget);
nsRefPtr<gfxContext> context = new gfxContext(mDrawTarget);