Bug 920847 - Remove gfxSize reference from Azure; r=kats

This commit is contained in:
Anthony Jones 2013-09-27 14:24:46 +12:00
parent bc73b3a3b6
commit 65fa5df03c

View File

@ -36,10 +36,6 @@ struct ScaleFactor {
MOZ_ASSERT(fabs(aX - aY) < 1e-6);
}
explicit ScaleFactor(gfxSize aScale) : scale(aScale.width) {
MOZ_ASSERT(fabs(aScale.width - aScale.height) < 1e-6);
}
ScaleFactor<dst, src> Inverse() {
return ScaleFactor<dst, src>(1 / scale);
}