Opentk/Source/OpenTK/Graphics/ES10/Helper.cs
the_fiddler 52263700fd Added BindingsBase class that provides a common base for all generated bindings.
Made the OpenGL and OpenGL|ES bindings non static.
Made the OpenGL and OpenGL|ES bindings inherit from BindingsBase.
2009-08-17 10:20:42 +00:00

14 lines
315 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Graphics.ES10
{
/// <summary>
/// Provides access to OpenGL ES 1.0 methods.
/// </summary>
public sealed partial class GL : BindingsBase
{
const string Library = "libGLES.dll";
}
}