[Graphics] Made entry points internal

Internal protected means internal *or* protected, not internal *and*
protected.
This commit is contained in:
thefiddler 2014-05-09 15:24:12 +02:00
parent c98b4ea178
commit fb034de00d

View 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.