}
public GlyphVector createGlyphVector(FontRenderContext frc, int[] glyphCodes){
int length = glyphCodes.length;
char[] chars = new char[length];
FontPeerImpl peer = (FontPeerImpl) getPeer();
for (int i = 0; i < length; i ++) {
chars[i] = peer.getUnicodeByIndex(glyphCodes[i]);
}
return new CommonGlyphVector(chars, frc, this, 0);
}