Opentk/Source/OpenTK/Graphics/ES10/Helper.cs
thefiddler e433aad4b4 [ES] ES10 does not require initialization
It consists solely of DllImports that will be initialized on first use,
regardless of the existence of an OpenGL context.
2014-04-25 14:50:55 +02:00

14 lines
286 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
{
const string Library = "libGLES.dll";
}
}