Skip to content

Commit

Permalink
Remove mentions of liborc' run-time compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Nov 18, 2023
1 parent 81f2550 commit bc2e2f6
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions src/NetVips/NetVips.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,27 +162,18 @@ public static int Concurrency
}

/// <summary>
/// Enable or disable SIMD and the run-time compiler.
/// Enable or disable SIMD.
/// </summary>
/// <remarks>
/// This can give a nice speed-up, but can also be unstable on
/// some systems or with some versions of the run-time compiler.
/// </remarks>
/// <param name="enabled">Bool indicating if SIMD and the run-time
/// compiler should be turned on.</param>
/// <param name="enabled">Bool indicating if SIMD should be turned on.</param>
[Obsolete("NetVips.VectorSet is deprecated, please use the NetVips.Vector setter instead.")]
public static void VectorSet(bool enabled)
{
Vector = enabled;
}

/// <summary>
/// Enable or disable SIMD and the run-time compiler.
/// Enable or disable SIMD.
/// </summary>
/// <remarks>
/// This can give a nice speed-up, but can also be unstable on
/// some systems or with some versions of the run-time compiler.
/// </remarks>
public static bool Vector
{
get => Vips.VectorIsEnabled();
Expand Down

0 comments on commit bc2e2f6

Please sign in to comment.