1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-01-30 20:11:04 +00:00
Opentk/Source/Compatibility/Graphics/TextPrinterOptions.cs

19 lines
490 B
C#
Raw Normal View History

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,
}
}