From 97d69b1473b8a15c2ccf11c4b3a9b67586429fe4 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 20 Jun 2022 20:46:38 -0500 Subject: [PATCH] save a cycle --- src/pixie/internal.nim | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/pixie/internal.nim b/src/pixie/internal.nim index a2585f6..444b205 100644 --- a/src/pixie/internal.nim +++ b/src/pixie/internal.nim @@ -205,10 +205,8 @@ when defined(amd64) and allowSimd: proc unpackAlphaValues*(v: M128i): M128i {.inline, raises: [].} = ## Unpack the first 32 bits into 4 rgba(0, 0, 0, value) - let - a = mm_unpacklo_epi8(v, mm_setzero_si128()) - b = mm_unpacklo_epi8(a, mm_setzero_si128()) - result = mm_slli_epi32(b, 24) # Shift the values to uint32 `a` + result = mm_unpacklo_epi8(mm_setzero_si128(), v) + result = mm_unpacklo_epi8(mm_setzero_si128(), result) when defined(release): {.pop.}