Interface IGlyphRenderer

IGlyphRenderer interface

Interface used to render glyphs.

public interface IGlyphRenderer

Methods

NameDescription
RenderGlyph(IFont, GlyphId)Renders glyph.
RenderGlyph(IFont, uint)Renders glyph.
RenderGlyph(IFont, GlyphId, TransformationMatrix)Renders glyph.
RenderGlyph(IFont, uint, TransformationMatrix)Renders glyph.
RenderGlyph(IFont, GlyphId, Glyph, TransformationMatrix)Renders glyph, an objective of this overloaded version - to be used with cache for glyphs.
RenderIndependentGlyphPath(IFont, GlyphId, Glyph, TransformationMatrix)Renders glyph using independent glyph path. RenderGlyph() function family changes glyph path on rendering. It then leads to necessity reload this glyph again. This function uses copy of glyph path and doesn’t changes original glyph path, so the same glyph could be reused multiple times. This version of function is intended for use with cache of glyphs.

See Also