Opentk/Source/OpenTK/Graphics/ES20/Helper.cs
the_fiddler 2747869a92 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

15 lines
317 B
C#

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