public extern static ComputeErrorCode GetPlatformInfo( CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret);
public ComputeErrorCode GetPlatformInfo(CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret) { return StaticGetPlatformInfo(platform, param_name, param_value_size, param_value, out param_value_size_ret); }
public static extern ComputeErrorCode GetPlatformInfo( CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret);
public static unsafe extern ComputeErrorCode GetPlatformInfo( IntPtr platform, ComputePlatformInfo param_name, IntPtr param_value_size, /* void* */ IntPtr param_value, IntPtr* param_value_size_ret);
ComputeErrorCode ICL10.GetPlatformInfo(CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret) { return GetPlatformInfo(platform, param_name, param_value_size, param_value, out param_value_size_ret); }
public static extern int GetPlatformInfo(IntPtr platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret);
ComputeErrorCode ICL10.GetPlatformInfo(CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret) { return(GetPlatformInfo(platform, param_name, param_value_size, param_value, out param_value_size_ret)); }
public static void GetPlatformInfoWrapper(CLPlatformHandle platform, ComputePlatformInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret) { ComputeException.ThrowOnError(GetPlatformInfo(platform, param_name, param_value_size, param_value, out param_value_size_ret)); }