mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Backed out changeset b5705fbed44f (bug 1070722) for reftest orange on a CLOSED TREE
This commit is contained in:
parent
26fa99e043
commit
e0a5dea92a
@ -136,7 +136,7 @@ InterpolationQualityFromFilter(Filter aFilter)
|
||||
case Filter::POINT:
|
||||
return kCGInterpolationNone;
|
||||
case Filter::GOOD:
|
||||
return kCGInterpolationLow;
|
||||
return kCGInterpolationDefault;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3669,7 +3669,13 @@ pref("image.cache.timeweight", 500);
|
||||
// The default Accept header sent for images loaded over HTTP(S)
|
||||
pref("image.http.accept", "image/png,image/*;q=0.8,*/*;q=0.5");
|
||||
|
||||
// Whether we do high-quality image downscaling. OS X natively supports
|
||||
// high-quality image scaling.
|
||||
#ifdef XP_MACOSX
|
||||
pref("image.high_quality_downscaling.enabled", false);
|
||||
#else
|
||||
pref("image.high_quality_downscaling.enabled", true);
|
||||
#endif
|
||||
|
||||
// The minimum percent downscaling we'll use high-quality downscaling on,
|
||||
// interpreted as a floating-point number / 1000.
|
||||
|
Loading…
Reference in New Issue
Block a user