2006-10-08 18:26:43 +00:00
|
|
|
#region License
|
|
|
|
//Copyright (c) 2006 Stephen Apostolopoulos
|
|
|
|
//See license.txt for license info
|
|
|
|
#endregion
|
2006-09-28 22:07:53 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace OpenTK.OpenGL.Bind
|
|
|
|
{
|
|
|
|
static class Settings
|
|
|
|
{
|
2006-11-02 21:40:36 +00:00
|
|
|
public static string InputPath = "..\\..\\..\\Source\\OpenGL\\Specifications";
|
|
|
|
public static string OutputPath = "..\\..\\..\\Source\\OpenGL\\OpenGL\\Bindings";
|
2006-09-28 22:07:53 +00:00
|
|
|
public static string OutputNamespace = "OpenTK.OpenGL";
|
2007-04-20 19:03:11 +00:00
|
|
|
public static string GLClass = "GL";
|
|
|
|
public static string WglClass = "Wgl";
|
|
|
|
public static string GlxClass = "Glx";
|
|
|
|
public static string GluClass = "Glu";
|
|
|
|
|
|
|
|
public static string GLFunctionPrepend = String.Empty;
|
2006-09-28 22:07:53 +00:00
|
|
|
}
|
|
|
|
}
|