Skip to content

Commit

Permalink
[CL] Removed incorrect files
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed May 27, 2014
1 parent 3964800 commit e28fe61
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 40,795 deletions.
2 changes: 1 addition & 1 deletion Source/Bind/CL/CLGenerator.cs
Expand Up @@ -16,7 +16,7 @@ public CLGenerator(Settings settings, string dirname)
{
// Common settings for all OpenCL generators
Settings.DefaultOutputPath = String.Format(
Settings.DefaultOutputPath, "Compute", "CL10");
Settings.DefaultOutputPath, "Compute", dirname);

Settings.DefaultTypeMapFile = "CL10/cl.tm";
Settings.DefaultOverridesFile = "../CL10/overrides.xml";
Expand Down
5,239 changes: 0 additions & 5,239 deletions Source/OpenTK/Compute/CL10.cs

This file was deleted.

8 changes: 4 additions & 4 deletions Source/OpenTK/Compute/CL10/CL10.cs
Expand Up @@ -2969,7 +2969,7 @@ public static unsafe ErrorCode GetContextInfo<T3>(ComputeContextHandle context,
/// <param name="num_devices"></param>
[AutoGenerated(Category = "1.0", Version = "1.0", EntryPoint = "clGetDeviceIDs")]
[CLSCompliant(false)]
public static ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ComputeDevice[] devices, Int32[] num_devices) { throw new NotImplementedException(); }
public static ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ComputeDevice[] devices, [OutAttribute] out Int32 num_devices) { throw new NotImplementedException(); }

/// <summary>[requires: v1.0 or 1.0]</summary>
/// <param name="platform"></param>
Expand All @@ -2979,7 +2979,7 @@ public static unsafe ErrorCode GetContextInfo<T3>(ComputeContextHandle context,
/// <param name="num_devices"></param>
[AutoGenerated(Category = "1.0", Version = "1.0", EntryPoint = "clGetDeviceIDs")]
[CLSCompliant(false)]
public static ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ref ComputeDevice devices, ref Int32 num_devices) { throw new NotImplementedException(); }
public static ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ref ComputeDevice devices, [OutAttribute] out Int32 num_devices) { throw new NotImplementedException(); }

/// <summary>[requires: v1.0 or 1.0]</summary>
/// <param name="platform"></param>
Expand All @@ -2989,7 +2989,7 @@ public static unsafe ErrorCode GetContextInfo<T3>(ComputeContextHandle context,
/// <param name="num_devices"></param>
[AutoGenerated(Category = "1.0", Version = "1.0", EntryPoint = "clGetDeviceIDs")]
[CLSCompliant(false)]
public static unsafe ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ComputeDevice* devices, Int32* num_devices) { throw new NotImplementedException(); }
public static unsafe ErrorCode GetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, Int32 num_entries, ComputeDevice* devices, [OutAttribute] Int32* num_devices) { throw new NotImplementedException(); }

/// <summary>[requires: v1.0 or 1.0]</summary>
/// <param name="device"></param>
Expand Down Expand Up @@ -5141,7 +5141,7 @@ public static ErrorCode SetKernelArg<T3>(ComputeKernel kernel, Int32 arg_index,
static extern unsafe ErrorCode clGetContextInfo(ComputeContextHandle context, System.Int32 param_name, IntPtr param_value_size, IntPtr param_value, [OutAttribute] IntPtr* param_value_size_ret);
[Slot(-1)]
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
static extern unsafe ErrorCode clGetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, UInt32 num_entries, ComputeDevice* devices, UInt32* num_devices);
static extern unsafe ErrorCode clGetDeviceIDs(ComputePlatform platform, DeviceTypeFlags device_type, UInt32 num_entries, ComputeDevice* devices, [OutAttribute] UInt32* num_devices);
[Slot(-1)]
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
static extern unsafe ErrorCode clGetDeviceInfo(ComputeDevice device, System.Int32 param_name, IntPtr param_value_size, IntPtr param_value, [OutAttribute] IntPtr* param_value_size_ret);
Expand Down

0 comments on commit e28fe61

Please sign in to comment.