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

50 lines
1.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Runtime.InteropServices;
namespace OpenTK.Graphics.ES11
{
/// <summary>
/// Provides access to OpenGL ES 1.1 methods.
/// </summary>
public sealed partial class GL : GraphicsBindingsBase
{
2013-10-13 23:00:18 +00:00
const string Library = "GLESv1_CM";
static readonly object sync_root = new object();
2013-11-24 12:58:30 +00:00
static IntPtr[] EntryPoints;
static byte[] EntryPointNames;
static int[] EntryPointNameOffsets;
2013-11-24 12:58:30 +00:00
#region Constructors
/// <summary>
/// Constructs a new instance.
/// </summary>
public GL()
{
_EntryPointsInstance = EntryPoints;
_EntryPointNamesInstance = EntryPointNames;
_EntryPointNameOffsetsInstance = EntryPointNameOffsets;
2013-11-24 12:58:30 +00:00
}
#endregion
#region --- Protected Members ---
/// <summary>
/// Returns a synchronization token unique for the GL class.
/// </summary>
protected override object SyncRoot
{
get { return sync_root; }
}
#endregion
}
}