зеркало из https://github.com/mozilla/moz-skia.git
Compare scalars to scalars (fixes fixed point).
git-svn-id: http://skia.googlecode.com/svn/trunk@3570 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
8cf322666f
Коммит
5582e63606
|
@ -634,8 +634,8 @@ void SkFontHost::FilterRec(SkScalerContext::Rec* rec) {
|
|||
//BOGUS: http://code.google.com/p/chromium/issues/detail?id=121119
|
||||
//Cap the requested size as larger sizes give bogus values.
|
||||
//Remove when http://code.google.com/p/skia/issues/detail?id=554 is fixed.
|
||||
if (rec->fTextSize > (1 << 14)) {
|
||||
rec->fTextSize = (1 << 14);
|
||||
if (rec->fTextSize > SkIntToScalar(1 << 14)) {
|
||||
rec->fTextSize = SkIntToScalar(1 << 14);
|
||||
}
|
||||
|
||||
if (!gLCDSupportValid) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче