Improved debug output on high-order pointers

OpenTK does not currently support generating bindings for pointers of
order 3 or higher. No OpenGL or OpenGL ES API currently uses such
pointers, so we just issue a warning message if such an API is
encountered in the future.
This commit is contained in:
Stefanos A. 2013-11-03 12:12:39 +01:00
parent 2d3b5ebe5c
commit 0548806487

View file

@ -211,7 +211,7 @@ namespace Bind
{
System.Diagnostics.Trace.WriteLine(String.Format(
"[Error] Type '{0}' has a high pointer level. Bindings will be incorrect.",
type.CurrentType));
type));
}
}