Bug 444492 - "Cairo _get_system_quality() function stubbed out in WinCE" (_get_system_quality() Returns DEFAULT_QUALITY on WinCE) [r=vlad]

This commit is contained in:
John Wolfe 2008-08-19 22:58:28 -05:00
Родитель 3f8d1c3762
Коммит 0fa9268767
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -218,6 +218,7 @@ _have_cleartype_quality (void)
static BYTE static BYTE
_get_system_quality (void) _get_system_quality (void)
{ {
#ifndef WINCE
BOOL font_smoothing; BOOL font_smoothing;
UINT smoothing_type; UINT smoothing_type;
@ -242,6 +243,9 @@ _get_system_quality (void)
} else { } else {
return DEFAULT_QUALITY; return DEFAULT_QUALITY;
} }
#else
return DEFAULT_QUALITY;
#endif
} }
/* If face_hfont is non-%NULL then font_matrix must be a simple scale by some /* If face_hfont is non-%NULL then font_matrix must be a simple scale by some