Fixed out ErrorCode parameters in OpenTK.Compute.CL.CreateProgram* methods.

This commit is contained in:
the_fiddler 2009-08-09 14:20:49 +00:00
parent 0a8e6d0555
commit 13e8deebc0

View file

@ -46,7 +46,7 @@ namespace OpenTK.Compute
int count,
string[] strings,
IntPtr[] lengths,
out int errcode_ret);
out ErrorCode errcode_ret);
// OpenCL 1.0
[DllImport(Configuration.Library, EntryPoint = "clCreateProgramWithBinary")]
@ -56,7 +56,7 @@ namespace OpenTK.Compute
IntPtr[] lengths,
byte[][] binaries,
out int binary_status,
out int errcode_ret);
out ErrorCode errcode_ret);
// OpenCL 1.0
[DllImport(Configuration.Library, EntryPoint = "clRetainProgram")]