2008-11-24 16:43:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenTK.Graphics
|
|
|
|
{
|
2009-02-12 22:50:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Defines available options for the TextPrinter.
|
|
|
|
/// </summary>
|
2008-11-24 16:43:56 +00:00
|
|
|
[Flags]
|
|
|
|
public enum TextPrinterOptions
|
|
|
|
{
|
2009-02-12 22:50:05 +00:00
|
|
|
/// <summary>The TextPrinter will use default printing options.</summary>
|
|
|
|
Default = 0x0000,
|
|
|
|
/// <summary>The TextPrinter will not cache text blocks as they are measured or printed.</summary>
|
|
|
|
NoCache = 0x0001,
|
2008-11-24 16:43:56 +00:00
|
|
|
}
|
|
|
|
}
|