mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 05:05:28 +00:00
Now uses 'cl' prefix instead of 'gl' for OpenCL bindings.
Fixed handling of output directory.
This commit is contained in:
parent
010eb9e520
commit
5edfb98d03
|
@ -31,9 +31,11 @@ namespace Bind.CL
|
||||||
Settings.ImportsClass = "Core";
|
Settings.ImportsClass = "Core";
|
||||||
Settings.DelegatesClass = "Delegates";
|
Settings.DelegatesClass = "Delegates";
|
||||||
|
|
||||||
|
Settings.FunctionPrefix = "cl";
|
||||||
|
|
||||||
Settings.OutputClass = "CL";
|
Settings.OutputClass = "CL";
|
||||||
Settings.OutputNamespace = "OpenTK.Compute." + name;
|
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)
|
public override Bind.Structures.DelegateCollection ReadDelegates(System.IO.StreamReader specFile)
|
||||||
|
|
Loading…
Reference in a new issue