From 054880648733e240dee4e24e6ef1ede91fd06f5e Mon Sep 17 00:00:00 2001 From: "Stefanos A." Date: Sun, 3 Nov 2013 12:12:39 +0100 Subject: [PATCH] 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. --- Source/Bind/FuncProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Bind/FuncProcessor.cs b/Source/Bind/FuncProcessor.cs index db69daf8..c57959e8 100644 --- a/Source/Bind/FuncProcessor.cs +++ b/Source/Bind/FuncProcessor.cs @@ -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)); } }