Bug 1158120 - Replace gfxIntSize by mozilla::gfx::IntSize in gfx/layers. r=nical

This commit is contained in:
Amanda Sambath
2015-05-28 11:59:15 +02:00
parent 6d44bfe24c
commit 0d488979b7
4 changed files with 6 additions and 8 deletions

View File

@@ -773,8 +773,8 @@ Transform3D(RefPtr<SourceSurface> aSource,
// Create a surface the size of the transformed object.
nsRefPtr<gfxASurface> dest = aDest->CurrentSurface();
nsRefPtr<gfxImageSurface> destImage = new gfxImageSurface(gfxIntSize(aDestRect.width,
aDestRect.height),
nsRefPtr<gfxImageSurface> destImage = new gfxImageSurface(IntSize(aDestRect.width,
aDestRect.height),
gfxImageFormat::ARGB32);
gfxPoint offset = aDestRect.TopLeft();