Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
 
5
namespace OpenTK.Graphics
6
{
7
    /// <summary>
8
    /// Defines available options for the TextPrinter.
9
    /// </summary>
10
    [Flags]
11
    public enum TextPrinterOptions
12
    {
13
        /// <summary>The TextPrinter will use default printing options.</summary>
14
        Default = 0x0000,
15
        /// <summary>The TextPrinter will not cache text blocks as they are measured or printed.</summary>
16
        NoCache = 0x0001,
17
    }
18
}