Now uses 'cl' prefix instead of 'gl' for OpenCL bindings.

Fixed handling of output directory.
This commit is contained in:
the_fiddler 2009-08-09 17:57:01 +00:00
parent 010eb9e520
commit 5edfb98d03

View file

@ -31,9 +31,11 @@ namespace Bind.CL
Settings.ImportsClass = "Core";
Settings.DelegatesClass = "Delegates";
Settings.FunctionPrefix = "cl";
Settings.OutputClass = "CL";
Settings.OutputNamespace = "OpenTK.Compute." + name;
Settings.OutputPath = Path.Combine(Directory.GetParent(Settings.OutputPath).FullName, name);
Settings.OutputPath = Path.Combine("../../Source/OpenTK/Compute", name);
}
public override Bind.Structures.DelegateCollection ReadDelegates(System.IO.StreamReader specFile)