From f5dbe4102da96e1a5f80acfc07ef297fc9313cb4 Mon Sep 17 00:00:00 2001 From: treeform Date: Sun, 22 Nov 2020 18:47:23 -0800 Subject: [PATCH] Add newImageNoInit and newSeqNoInit. --- src/pixie/images.nim | 26 ++++++++++++++++++---- tests/benchmark_draw.nim | 22 ++++-------------- tests/images/benchDrawFast2Saturation.png | Bin 337 -> 338 bytes tests/images/benchDrawFast3Copy.png | Bin 339 -> 339 bytes tests/images/benchDrawFast3Rotation.png | Bin 329 -> 337 bytes tests/images/benchDrawFast3Saturation.png | Bin 337 -> 338 bytes 6 files changed, 26 insertions(+), 22 deletions(-) diff --git a/src/pixie/images.nim b/src/pixie/images.nim index 54b3543..7e28c89 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -13,6 +13,25 @@ proc newImage*(width, height: int): Image = result.height = height result.data = newSeq[ColorRGBA](width * height) +proc newSeqNoInit*[T](len: Natural): seq[T] = + ## Creates a new sequence of type ``seq[T]`` with length ``len``. + ## Skips initialization of memory to zero. + result = newSeqOfCap[T](len) + when defined(nimSeqsV2): + cast[ptr int](addr result)[] = len + else: + type GenericSeq = ref object + len, reserved: int + var s = cast[GenericSeq](result) + s.len = len + +proc newImageNoInit*(width, height: int): Image = + ## Creates a new image with appropriate dimensions. + result = Image() + result.width = width + result.height = height + result.data = newSeq[ColorRGBA](width * height) + proc copy*(image: Image): Image = ## Copies an image creating a new image. result = newImage(image.width, image.height) @@ -169,7 +188,7 @@ proc hasEffect*(blendMode: BlendMode, rgba: ColorRGBA): bool = proc drawFast1*(a: Image, b: Image, mat: Mat3): Image = ## Draws one image onto another using integer x,y offset with COPY. - result = newImage(a.width, a.height) + result = newImageNoInit(a.width, a.height) var matInv = mat.inverse() for y in 0 ..< a.height: for x in 0 ..< a.width: @@ -181,11 +200,10 @@ proc drawFast1*(a: Image, b: Image, mat: Mat3): Image = proc drawFast2*(a: Image, b: Image, mat: Mat3, blendMode: BlendMode): Image = ## Draws one image onto another using matrix with color blending. - result = newImage(a.width, a.height) + result = newImageNoInit(a.width, a.height) var matInv = mat.inverse() for y in 0 ..< a.height: for x in 0 ..< a.width: - #echo x, ", ", y var rgba = a.getRgbaUnsafe(x, y) let srcPos = matInv * vec2(x.float32, y.float32) if b.inside(srcPos.x.floor.int, srcPos.y.floor.int): @@ -196,7 +214,7 @@ proc drawFast2*(a: Image, b: Image, mat: Mat3, blendMode: BlendMode): Image = proc drawFast3*(a: Image, b: Image, mat: Mat3, blendMode: BlendMode): Image = ## Draws one image onto another using matrix with color blending. - result = newImage(a.width, a.height) + result = newImageNoInit(a.width, a.height) var matInv = mat.inverse() for y in 0 ..< a.height: for x in 0 ..< a.width: diff --git a/tests/benchmark_draw.nim b/tests/benchmark_draw.nim index 2fa19f1..350bba6 100644 --- a/tests/benchmark_draw.nim +++ b/tests/benchmark_draw.nim @@ -8,7 +8,7 @@ timeIt "benchDrawFast1 COPY": a.fill(rgba(255, 0, 0, 255)) var b = newImage(100, 100) b.fill(rgba(0, 255, 0, 255)) - c = a.drawFast1(b, x = 25, y = 25) # Copy + c = a.drawFast1(b, translate(vec2(25, 25))) # Copy tmp += c.width * c.height c.writeFile("tests/images/benchDrawFast1Copy.png") echo tmp @@ -21,7 +21,7 @@ timeIt "benchDrawFast2 COPY": a.fill(rgba(255, 0, 0, 255)) var b = newImage(100, 100) b.fill(rgba(0, 255, 0, 255)) - c = a.drawFast2(b, x = 25, y = 25, bmCopy) + c = a.drawFast2(b, translate(vec2(25, 25)), bmCopy) tmp += c.width * c.height c.writeFile("tests/images/benchDrawFast2Copy.png") echo tmp @@ -47,7 +47,7 @@ timeIt "benchDrawFast2 Normal": a.fill(rgba(255, 0, 0, 255)) var b = newImage(100, 100) b.fill(rgba(0, 255, 0, 255)) - c = a.drawFast2(b, x = 25, y = 25, bmNormal) + c = a.drawFast2(b, translate(vec2(25, 25)), bmNormal) tmp += c.width * c.height c.writeFile("tests/images/benchDrawFast2Normal.png") echo tmp @@ -73,7 +73,7 @@ timeIt "benchDrawFast2 Saturation": a.fill(rgba(255, 0, 0, 255)) var b = newImage(100, 100) b.fill(rgba(0, 0, 0, 255)) - c = a.drawFast2(b, x = 25, y = 25, bmSaturation) + c = a.drawFast2(b, translate(vec2(25, 25)), bmSaturation) tmp += c.width * c.height c.writeFile("tests/images/benchDrawFast2Saturation.png") echo tmp @@ -91,20 +91,6 @@ timeIt "benchDrawFast3 Saturation": c.writeFile("tests/images/benchDrawFast3Saturation.png") echo tmp - -timeIt "benchDrawFast4 Rotation": - var tmp = 0 - var c: Image - for i in 0 ..< 1000: - var a = newImage(100, 100) - a.fill(rgba(255, 0, 0, 255)) - var b = newImage(100, 100) - b.fill(rgba(0, 0, 0, 255)) - c = a.drawFast4(b, translate(vec2(25, 25)) * rotationMat3(PI/2), bmNormal) - tmp += c.width * c.height - c.writeFile("tests/images/benchDrawFast2Rotation.png") - echo tmp - timeIt "benchDrawFast3 Rotation": var tmp = 0 var c: Image diff --git a/tests/images/benchDrawFast2Saturation.png b/tests/images/benchDrawFast2Saturation.png index 340186df3a41fb03f4ecc7c5539b4dcec13d332f..8b795d32a7bd5efe79be3e9ada288b3b5b600a00 100644 GIT binary patch delta 113 zcmV-%0FM9B0@4DIBrq9CL_t(|0qxPD4S+xZ1i??}<*R|7z8lH}iy|npVkS9pdbewg zYmKq2v2Bg91{sqf0UMFf7!k}bL5_VN=bZLozXUnwd_3Nh5dkZa&}@;=4Hk0)b^}(M T@YX-f00000NkvXXu0mjfd7&;w literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^DIm%R&Da ztyv4ycP;eUpwXnHoi<5$dHK$?b;-{*9GjN>Ou~qzQ&7cif`nrd@r)VqO>b_SJ>PY! u{jboInCr(M_bM1R9pMmC_UIYJ4D&MPu-PuU8tuTKV(@hJb6Mw<&;$S#u4!EW diff --git a/tests/images/benchDrawFast3Copy.png b/tests/images/benchDrawFast3Copy.png index a41ca36289af08e14a2f7b8a8c366b0e2872e606..6654944ef227c8483e6c32c03c952e4c6f28fa78 100644 GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^DImS;!;Sf?LmNB1wXWBa3&2R78@o!51 zHpg=Fo!P(DPka))FQno&LBcVKrBiV5GM+Im{_-ttVtBxAU|=zLy85}Sb4q9e0B@mZ A#{d8T diff --git a/tests/images/benchDrawFast3Rotation.png b/tests/images/benchDrawFast3Rotation.png index acae87d2d165570a264b772fc05b0e0e1d37b8f0..69d4c1bccc8090a4c527552efb96a1e0a17e17a7 100644 GIT binary patch delta 122 zcmX@fbdhO-im8OBi(^OyvWae{9AhF=O@N1PRtYHmvBs~<1G5UD1G~HRgU+ZlNlL}CkrsDz_57J5t*-y V*IbJfFZ(h8fv2mV%Q~loCIJ5IFHZmf delta 99 zcmV-p0G$8P0?7i9BqV76%R>8)%R&Da ztyv4ycP;eUpwXnHoi<5$dHK$?b;-{*9GjN>Ou~qzQ&7cif`nrd@r)VqO>b_SJ>PY! u{jboInCr(M_bM1R9pMmC_UIYJ4D&MPu-PuU8tuTKV(@hJb6Mw<&;$S#u4!EW