816817818819820821822
} char[] out = new char[count]; System.arraycopy(chars, start, out, 0, count); return new CommonGlyphVector(out, frc, this, flags); }
295296297298299300301
return canDisplayUpTo(chars, 0, chars.length); } public GlyphVector createGlyphVector(FontRenderContext frc, char[] chars) { return new CommonGlyphVector(chars, frc, this, 0); }
324325326327328329330
for (int i = 0; i < length; i ++) { chars[i] = peer.getUnicodeByIndex(glyphCodes[i]); } return new CommonGlyphVector(chars, frc, this, 0); }
329330331332333334335
return new CommonGlyphVector(chars, frc, this, 0); } public GlyphVector createGlyphVector(FontRenderContext frc, String str) { return new CommonGlyphVector(str.toCharArray(), frc, this, 0); }
296297298299300301302
330331332333334335336
335336337338339340341
818819820821822823824
294295296297298299300