e433aad4b4
It consists solely of DllImports that will be initialized on first use, regardless of the existence of an OpenGL context.
14 lines
286 B
C#
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";
|
|
}
|
|
}
|