From fb034de00d1c49c167347894c844aa0981c01ff9 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Fri, 9 May 2014 15:24:12 +0200 Subject: [PATCH] [Graphics] Made entry points internal Internal protected means internal *or* protected, not internal *and* protected. --- Source/OpenTK/Graphics/GraphicsBindingsBase.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/OpenTK/Graphics/GraphicsBindingsBase.cs b/Source/OpenTK/Graphics/GraphicsBindingsBase.cs index 0b3dc28..237b878 100644 --- a/Source/OpenTK/Graphics/GraphicsBindingsBase.cs +++ b/Source/OpenTK/Graphics/GraphicsBindingsBase.cs @@ -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; /// /// Retrieves an unmanaged function pointer to the specified function. -- 2.7.4