PixelFarm.Drawing.Fonts.NativeFontFace.BuildOutlineGlyph C# (CSharp) Method

BuildOutlineGlyph() private method

private BuildOutlineGlyph ( FontGlyph fontGlyph, int pxsize ) : void
fontGlyph FontGlyph
pxsize int
return void
        void BuildOutlineGlyph(FontGlyph fontGlyph, int pxsize)
        {
            NativeFontGlyphBuilder.BuildGlyphOutline(fontGlyph);
            Agg.VertexStore vxs = new Agg.VertexStore();
            NativeFontGlyphBuilder.FlattenVxs(fontGlyph.originalVxs, vxs);
            fontGlyph.flattenVxs = vxs;
        }
    }