jdk/src/java.desktop/share/classes/sun/font/GlyphList.java
changeset 26037 508779ce6619
parent 26004 7507a1b93f67
parent 25859 3317bb8137f4
child 39870 55d674017343
equal deleted inserted replaced
25992:e9b05e933ddd 26037:508779ce6619
   260         ensureCapacity(len);
   260         ensureCapacity(len);
   261         System.arraycopy(chars, off, chData, 0, len);
   261         System.arraycopy(chars, off, chData, 0, len);
   262         return mapChars(info, len);
   262         return mapChars(info, len);
   263     }
   263     }
   264 
   264 
   265     private final boolean mapChars(FontInfo info, int len) {
   265     private boolean mapChars(FontInfo info, int len) {
   266         /* REMIND.Is it worthwhile for the iteration to convert
   266         /* REMIND.Is it worthwhile for the iteration to convert
   267          * chars to glyph ids to directly map to images?
   267          * chars to glyph ids to directly map to images?
   268          */
   268          */
   269         if (info.font2D.getMapper().charsToGlyphsNS(len, chData, glyphData)) {
   269         if (info.font2D.getMapper().charsToGlyphsNS(len, chData, glyphData)) {
   270             return false;
   270             return false;