Skip to content

Commit

Permalink
Fix comment typos in AVX2 header (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed May 21, 2024
1 parent f1756a5 commit 234c8a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/astcenc_vecmathlib_avx2_8.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ struct vfloat8
ASTCENC_SIMD_INLINE vfloat8() = default;

/**
* @brief Construct from 4 values loaded from an unaligned address.
* @brief Construct from 8 values loaded from an unaligned address.
*
* Consider using loada() which is better with vectors if data is aligned
* to vector length.
Expand Down Expand Up @@ -183,7 +183,7 @@ struct vint8
/**
* @brief Construct from 1 scalar value replicated across all lanes.
*
* Consider using vfloat4::zero() for constexpr zeros.
* Consider using vfloat8::zero() for constexpr zeros.
*/
ASTCENC_SIMD_INLINE explicit vint8(int a)
{
Expand Down Expand Up @@ -606,7 +606,7 @@ ASTCENC_SIMD_INLINE vint8 select(vint8 a, vint8 b, vmask8 cond)
}

// ============================================================================
// vfloat4 operators and functions
// vfloat8 operators and functions
// ============================================================================

/**
Expand Down

0 comments on commit 234c8a4

Please sign in to comment.