[Graphics] Made entry points internal
authorthefiddler <stapostol@gmail.com>
Fri, 9 May 2014 13:24:12 +0000 (15:24 +0200)
committerthefiddler <stapostol@gmail.com>
Fri, 9 May 2014 13:24:12 +0000 (15:24 +0200)
Internal protected means internal *or* protected, not internal *and*
protected.

Source/OpenTK/Graphics/GraphicsBindingsBase.cs

index 0b3dc28..237b878 100644 (file)
@@ -51,9 +51,9 @@ namespace OpenTK.Graphics
         protected string[] EntryPointNamesInstance;
 
 
-        internal protected IntPtr[] _EntryPointsInstance;
-        internal protected byte[] _EntryPointNamesInstance;
-        internal protected int[] _EntryPointNameOffsetsInstance;
+        internal IntPtr[] _EntryPointsInstance;
+        internal byte[] _EntryPointNamesInstance;
+        internal int[] _EntryPointNameOffsetsInstance;
 
         /// <summary>
         /// Retrieves an unmanaged function pointer to the specified function.