2007-07-23 00:15:18 +00:00
|
|
|
#region License
|
|
|
|
//Copyright (c) 2006 Stefanos Apostolopoulos
|
|
|
|
//See license.txt for license info
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
2007-08-01 09:27:57 +00:00
|
|
|
namespace Bind
|
2007-07-23 00:15:18 +00:00
|
|
|
{
|
|
|
|
static class Settings
|
|
|
|
{
|
2007-08-01 09:27:57 +00:00
|
|
|
public static string InputPath = "..\\..\\..\\Source\\Bind\\Specifications";
|
|
|
|
public static string OutputPath = "..\\..\\..\\Source\\OpenTK\\OpenGL\\Bindings";
|
2007-07-23 00:15:18 +00:00
|
|
|
public static string OutputNamespace = "OpenTK.OpenGL";
|
|
|
|
public static string GLClass = "GL";
|
2007-08-01 09:27:57 +00:00
|
|
|
public static string DelegatesClass = "Delegates";
|
|
|
|
public static string ImportsClass = "Imports";
|
2007-07-23 00:15:18 +00:00
|
|
|
public static string WglClass = "Wgl";
|
|
|
|
public static string GlxClass = "Glx";
|
|
|
|
public static string GluClass = "Glu";
|
2007-08-01 09:27:57 +00:00
|
|
|
public static Legacy Compatibility = Legacy.None;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
2007-08-01 09:27:57 +00:00
|
|
|
public enum Legacy
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Tao,
|
|
|
|
}
|
2007-07-23 00:15:18 +00:00
|
|
|
}
|
|
|
|
}
|