mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 04:45:38 +00:00
Removed unused FieldInfo[] array.
This commit is contained in:
parent
c7837ac381
commit
b6d69104b4
|
@ -353,4 +353,11 @@ namespace OpenTK
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>Represents errors related to Graphics operations.</summary>
|
||||||
|
public class GraphicsException : Exception
|
||||||
|
{
|
||||||
|
public GraphicsException() : base() { }
|
||||||
|
public GraphicsException(string message) : base(message) { }
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -72,7 +72,6 @@ namespace OpenTK.OpenGL
|
||||||
private static Type glClass;
|
private static Type glClass;
|
||||||
private static Type delegatesClass;
|
private static Type delegatesClass;
|
||||||
private static Type importsClass;
|
private static Type importsClass;
|
||||||
private static FieldInfo[] delegates;
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue