Commented out an unused code block.
This commit is contained in:
parent
1682b54efb
commit
f154fb3ba9
1 changed files with 4 additions and 2 deletions
|
@ -344,9 +344,10 @@ namespace OpenTK.Graphics
|
||||||
static bool SupportsFunction(MethodInfo method)
|
static bool SupportsFunction(MethodInfo method)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
|
#if false
|
||||||
lock (gl_lock)
|
lock (gl_lock)
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
if (function == null)
|
if (function == null)
|
||||||
throw new ArgumentNullException("function");
|
throw new ArgumentNullException("function");
|
||||||
|
|
||||||
|
@ -362,9 +363,10 @@ namespace OpenTK.Graphics
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return f.GetValue(null) != null;
|
return f.GetValue(null) != null;
|
||||||
*/
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in a new issue