mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:15:36 +00:00
19 lines
490 B
C#
19 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Defines available options for the TextPrinter.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum TextPrinterOptions
|
|
{
|
|
/// <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,
|
|
}
|
|
}
|