Opentk/Source/Utilities/Graphics/Text/TextQuality.cs
the_fiddler e7e5e1453f Added GL1.1 and GL1.2 rendering codepaths.
Added selectable TextQuality level.
Updated all interfaces to support the above.
2009-02-12 16:27:24 +00:00

15 lines
223 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Graphics.Text
{
public enum TextQuality
{
Default = 0,
Low,
Medium,
High
}
}