Opentk/Source/OpenTK/Graphics/ES11/Helper.cs

17 lines
380 B
C#
Raw Normal View History

2009-06-30 08:40:19 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Runtime.InteropServices;
2009-06-30 08:40:19 +00:00
namespace OpenTK.Graphics.ES11
2009-06-30 08:40:19 +00:00
{
/// <summary>
/// Provides access to OpenGL ES 1.1 methods.
/// </summary>
public sealed partial class GL : BindingsBase
2009-06-30 08:40:19 +00:00
{
const string Library = "libGLES.dll";
}
}