2007-08-10 11:27:13 +02:00
|
|
|
#region --- License ---
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
* See license.txt for license info
|
|
|
|
*/
|
2007-07-23 02:15:18 +02:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
2007-08-01 11:27:57 +02:00
|
|
|
namespace Bind
|
2007-07-23 02:15:18 +02:00
|
|
|
{
|
|
|
|
static class Settings
|
|
|
|
{
|
2007-08-12 18:14:23 +02:00
|
|
|
public static string InputPath = "..\\..\\..\\Source\\Bind\\Specifications";
|
2007-08-01 11:27:57 +02:00
|
|
|
public static string OutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings";
|
2007-07-23 02:15:18 +02:00
|
|
|
public static string OutputNamespace = "OpenTK.OpenGL";
|
2007-08-20 12:46:37 +02:00
|
|
|
|
2007-09-02 02:40:43 +02:00
|
|
|
public const string DefaultInputPath = "..\\..\\..\\Source\\Bind\\Specifications";
|
|
|
|
public const string DefaultOutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings";
|
|
|
|
public const string DefaultOutputNamespace = "OpenTK.OpenGL";
|
2007-08-20 12:46:37 +02:00
|
|
|
|
2007-08-20 14:25:48 +02:00
|
|
|
public static string OutputClass = "GL";
|
|
|
|
public static string FunctionPrefix = "gl";
|
|
|
|
public static string ConstantPrefix = "GL_";
|
|
|
|
|
2007-09-03 00:52:00 +02:00
|
|
|
public static string NestedEunmsClass = "Enums";
|
|
|
|
public static string NormalEnumsClass = OutputClass + "." + NestedEunmsClass;
|
|
|
|
public static string AuxEnumsClass = "GL." + NestedEunmsClass;
|
2007-08-01 23:14:39 +02:00
|
|
|
|
2007-08-01 11:27:57 +02:00
|
|
|
public static string DelegatesClass = "Delegates";
|
|
|
|
public static string ImportsClass = "Imports";
|
2007-08-20 14:25:48 +02:00
|
|
|
|
2007-08-01 11:27:57 +02:00
|
|
|
public static Legacy Compatibility = Legacy.None;
|
2007-07-23 02:15:18 +02:00
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
/// <summary>
|
|
|
|
/// The name of the C# enum which holds every single OpenGL enum (for compatibility purposes).
|
|
|
|
/// </summary>
|
|
|
|
public static string CompleteEnumName = "All";
|
2007-08-12 18:14:23 +02:00
|
|
|
|
2007-08-01 11:27:57 +02:00
|
|
|
public enum Legacy
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Tao,
|
|
|
|
}
|
2007-08-12 18:14:23 +02:00
|
|
|
|
2007-08-20 14:25:48 +02:00
|
|
|
public static string WindowsGDI = "OpenTK.Platform.Windows.API";
|
2007-07-23 02:15:18 +02:00
|
|
|
}
|
|
|
|
}
|