From cc880be3ff31ba43db5fc012479cb4d31e1f23da Mon Sep 17 00:00:00 2001 From: Andre von Houck Date: Thu, 16 Sep 2021 11:41:47 -0700 Subject: [PATCH] Add raw to benchmark PNG. --- tests/benchmark_png.nim | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/benchmark_png.nim b/tests/benchmark_png.nim index e2257d8..137977d 100644 --- a/tests/benchmark_png.nim +++ b/tests/benchmark_png.nim @@ -6,9 +6,16 @@ let data = readFile(filePath) timeIt "pixie decode": - keep decodePng(data) + keep decodePngRaw(data) timeIt "pixie encode": + let decoded = decodePngRaw(data) + keep encodePng(decoded).len + +timeIt "pixie decode + alpha": + keep decodePng(data) + +timeIt "pixie encode + alpha": let decoded = decodePng(data) keep encodePng(decoded).len