From 89d1608a32e700b768f827db955f292691a54342 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 11 Oct 2021 19:17:31 -0500 Subject: [PATCH] magnifyBy2 10% faster --- src/pixie/images.nim | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/pixie/images.nim b/src/pixie/images.nim index 67c807b..bb7ff8c 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -309,15 +309,14 @@ proc minifyBy2*(image: Image, power = 1): Image {.raises: [PixieError].} = b = src.getRgbaUnsafe(x * 2 + 1, y * 2 + 0) c = src.getRgbaUnsafe(x * 2 + 1, y * 2 + 1) d = src.getRgbaUnsafe(x * 2 + 0, y * 2 + 1) + rgba = rgbx( + ((a.r.uint32 + b.r + c.r + d.r) div 4).uint8, + ((a.g.uint32 + b.g + c.g + d.g) div 4).uint8, + ((a.b.uint32 + b.b + c.b + d.b) div 4).uint8, + ((a.a.uint32 + b.a + c.a + d.a) div 4).uint8 + ) - let color = rgbx( - ((a.r.uint32 + b.r + c.r + d.r) div 4).uint8, - ((a.g.uint32 + b.g + c.g + d.g) div 4).uint8, - ((a.b.uint32 + b.b + c.b + d.b) div 4).uint8, - ((a.a.uint32 + b.a + c.a + d.a) div 4).uint8 - ) - - result.setRgbaUnsafe(x, y, color) + result.setRgbaUnsafe(x, y, rgba) # Set src as this result for if we do another power src = result @@ -333,10 +332,10 @@ proc magnifyBy2*(image: Image, power = 1): Image {.raises: [PixieError].} = for x in 0 ..< image.width: let rgba = image.getRgbaUnsafe(x, y div scale) - scaledX = x * scale - idx = result.dataIndex(scaledX, y) - for i in 0 ..< scale: - result.data[idx + i] = rgba + idx = result.dataIndex(x * scale, y) + for i in 0 ..< scale div 2: + result.data[idx + i * 2 + 0] = rgba + result.data[idx + i * 2 + 1] = rgba proc applyOpacity*(target: Image | Mask, opacity: float32) {.raises: [].} = ## Multiplies alpha of the image by opacity.