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:
bungeman@google.com 2012-04-02 14:51:54 +00:00
Родитель 8cf322666f
Коммит 5582e63606
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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) {