mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:05:37 +00:00
1666eb670c
Even if that API is not meant to be used by applications.
50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
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
|
|
{
|
|
const string Library = "GLESv1_CM";
|
|
static readonly object sync_root = new object();
|
|
|
|
static IntPtr[] EntryPoints;
|
|
static byte[] EntryPointNames;
|
|
static int[] EntryPointNameOffsets;
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Constructs a new instance.
|
|
/// </summary>
|
|
public GL()
|
|
{
|
|
_EntryPointsInstance = EntryPoints;
|
|
_EntryPointNamesInstance = EntryPointNames;
|
|
_EntryPointNameOffsetsInstance = EntryPointNameOffsets;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- Protected Members ---
|
|
|
|
/// <summary>
|
|
/// Returns a synchronization token unique for the GL class.
|
|
/// </summary>
|
|
protected override object SyncRoot
|
|
{
|
|
get { return sync_root; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|