ReloadGlyphFromIndex() 개인적인 메소드

private ReloadGlyphFromIndex ( uint glyphIndex, int pixelSize ) : FontGlyph
glyphIndex uint
pixelSize int
리턴 FontGlyph
예제 #1
0
        public override FontGlyph GetGlyphByIndex(uint glyphIndex)
        {
            FontGlyph found;

            if (!dicGlyphs2.TryGetValue(glyphIndex, out found))
            {
                //not found glyph
                found = ownerFace.ReloadGlyphFromIndex(glyphIndex, fontSizeInPixelUnit);
                this.dicGlyphs2.Add(glyphIndex, found);
            }
            return(found);
        }