00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 using System.Reflection;
00005 using System.Runtime.InteropServices;
00006
00007 namespace OpenTK.Graphics.ES11
00008 {
00012 #if EXPERIMENTAL
00013 public
00014 #endif
00015 sealed partial class GL : GraphicsBindingsBase
00016 {
00017 const string Library = "libGLES.dll";
00018 static readonly object sync_root = new object();
00019
00020 #region --- Protected Members ---
00021
00025 protected override object SyncRoot
00026 {
00027 get { return sync_root; }
00028 }
00029
00030 #endregion
00031
00032 }
00033 }