mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 18:35:44 +00:00
e7e5e1453f
Added selectable TextQuality level. Updated all interfaces to support the above.
15 lines
223 B
C#
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
|
|
}
|
|
}
|