Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
using System.Reflection;
5
using System.Runtime.InteropServices;
6
 
7
namespace OpenTK.Graphics.ES11
8
{
9
    /// <summary>
10
    /// Provides access to OpenGL ES 1.1 methods.
11
    /// </summary>
12
 
13
    public sealed partial class GL : GraphicsBindingsBase
14
    {
15
        const string Library = "libGLES.dll";
16
        static readonly object sync_root = new object();
17
 
18
        #region --- Protected Members ---
19
 
20
        /// <summary>
21
        /// Returns a synchronization token unique for the GL class.
22
        /// </summary>
23
        protected override object SyncRoot
24
        {
25
            get { return sync_root; }
26
        }
27
 
28
        #endregion
29
 
30
    }
31
}