Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
itzpr3d4t0r committed Dec 13, 2024
1 parent 55a3dcf commit 7f5ac33
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src_c/simd_blitters_sse2.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,6 @@ pg_neon_at_runtime_but_uncompiled()
dstp = (Uint32 *)dstp128 + dstskip; \
}

static inline __m128i
pg_mm_blendv_epi8(__m128i a, __m128i b, __m128i mask)
{
return _mm_or_si128(_mm_and_si128(mask, b), _mm_andnot_si128(mask, a));
}

#define DO_SSE2_DIV255_U16(MM128I) \
_mm_srli_epi16(_mm_mulhi_epu16(MM128I, _mm_set1_epi16((short)0x8081)), 7);

Expand Down

0 comments on commit 7f5ac33

Please sign in to comment.