Searched refs:chosenPPEM (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp819 FT_Pos chosenPPEM = 0; local
824 chosenPPEM = thisPPEM;
827 } else if (chosenPPEM < targetPPEM) {
828 // attempt to increase chosenPPEM
829 if (thisPPEM > chosenPPEM) {
830 chosenPPEM = thisPPEM;
834 // attempt to decrease chosenPPEM, but not below targetPPEM
835 if (thisPPEM < chosenPPEM && thisPPEM > targetPPEM) {
836 chosenPPEM = thisPPEM;
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp820 FT_Pos chosenPPEM = 0; local
825 chosenPPEM = thisPPEM;
828 } else if (chosenPPEM < targetPPEM) {
829 // attempt to increase chosenPPEM
830 if (thisPPEM > chosenPPEM) {
831 chosenPPEM = thisPPEM;
835 // attempt to decrease chosenPPEM, but not below targetPPEM
836 if (thisPPEM < chosenPPEM && thisPPEM > targetPPEM) {
837 chosenPPEM = thisPPEM;

Completed in 1701 milliseconds