From b59ab89044443217d6dec27a9e2ad4c134a51081 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Fri, 17 Jun 2022 00:07:17 -0500 Subject: [PATCH] morepretty --- src/pixie/fileformats/tiff.nim | 16 ++++++++-------- src/pixie/paths.nim | 4 +++- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/pixie/fileformats/tiff.nim b/src/pixie/fileformats/tiff.nim index 0fcd034..0507d2c 100644 --- a/src/pixie/fileformats/tiff.nim +++ b/src/pixie/fileformats/tiff.nim @@ -7,14 +7,14 @@ const ] knownTags = [ 0x0100.uint16, # ImageWidth - 0x0101, # ImageLength - 0x0102, # BitsPerSample - 0x0103, # Compression - 0x0106, # PhotometricInterpretation - 0x0111, # StripOffsets - 0x0116, # RowsPerStrip - 0x0117, # StripByteCounts - 0x0140, # ColorMap + 0x0101, # ImageLength + 0x0102, # BitsPerSample + 0x0103, # Compression + 0x0106, # PhotometricInterpretation + 0x0111, # StripOffsets + 0x0116, # RowsPerStrip + 0x0117, # StripByteCounts + 0x0140, # ColorMap ] type diff --git a/src/pixie/paths.nim b/src/pixie/paths.nim index ccef930..5331395 100644 --- a/src/pixie/paths.nim +++ b/src/pixie/paths.nim @@ -1357,7 +1357,9 @@ proc fillCoverage( sourceOdd = mm_srli_epi16(mm_mulhi_epu16(sourceOdd, div255), 7) result = mm_or_si128(sourceEven, mm_slli_epi16(sourceOdd, 8)) - iterator simd(coverages: seq[uint8], x: var int, startX: int): (M128i, bool, bool) = + iterator simd( + coverages: seq[uint8], x: var int, startX: int + ): (M128i, bool, bool) = for _ in 0 ..< coverages.len div 16: let coverageVec = mm_loadu_si128(coverages[x - startX].unsafeAddr)