#region usings using System; using OpenTK; #endregion namespace SM.Base.Drawing.Text { /// /// Contains information for a font character. /// [Serializable] public struct CharParameter { /// /// The advance on the X-axis. /// public int Advance; public float BearingX; /// /// The width of the character. /// public float Width; public Matrix3 TextureMatrix; public Vector2 Offset; public Vector2 Scale; } }