using System; using System.Collections.Generic; using System.Text; namespace OpenTK.Graphics { /// /// Defines available options for the TextPrinter. /// [Flags] public enum TextPrinterOptions { /// The TextPrinter will use default printing options. Default = 0x0000, /// The TextPrinter will not cache text blocks as they are measured or printed. NoCache = 0x0001, } }