Browse Source

fix comment

af/merge-core
Anton Firszov 8 years ago
parent
commit
54dcbe4542
  1. 2
      src/ImageSharp/Common/Helpers/SimdUtils.FallbackIntrinsics128.cs

2
src/ImageSharp/Common/Helpers/SimdUtils.FallbackIntrinsics128.cs

@ -132,7 +132,7 @@ namespace SixLabors.ImageSharp
s *= maxBytes;
s += half;
// I'm not sure if Clamp() is properly implemented with intrinsics.
// I'm not sure if Vector4.Clamp() is properly implemented with intrinsics.
s = Vector4.Max(Vector4.Zero, s);
s = Vector4.Min(maxBytes, s);

Loading…
Cancel
Save