[Graphics] Made entry points internal
Internal protected means internal *or* protected, not internal *and* protected.
This commit is contained in:
parent
c98b4ea178
commit
fb034de00d
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue