2008-11-24 16:43:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenTK.Graphics
|
|
|
|
{
|
|
|
|
[Flags]
|
|
|
|
public enum TextPrinterOptions
|
|
|
|
{
|
2008-11-25 17:24:40 +00:00
|
|
|
Default = 0,
|
2008-11-24 16:43:56 +00:00
|
|
|
NoCache = 1,
|
|
|
|
RightToLeft = 2,
|
|
|
|
Vertical = 4,
|
|
|
|
}
|
|
|
|
}
|