mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-29 01:30:58 +00:00
522d1d17dc
Implemented RightToLeft and Vertical TextDirections (Vertical is glitchy). Implemented Near, Far and Center TextAlignments. Improved support for word wrapping. Removed alpha blending from GL11TextOutputProvider.
15 lines
218 B
C#
15 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics
|
|
{
|
|
public enum TextQuality
|
|
{
|
|
Default = 0,
|
|
Low,
|
|
Medium,
|
|
High
|
|
}
|
|
}
|