add jpg benchmark
This commit is contained in:
parent
b047aad920
commit
a6b2f70249
1 changed files with 14 additions and 0 deletions
14
tests/benchmark_jpg.nim
Normal file
14
tests/benchmark_jpg.nim
Normal file
|
@ -0,0 +1,14 @@
|
|||
import pixie/fileformats/jpg, pixie/fileformats/stb_image/stb_image, fidget/opengl/perf
|
||||
|
||||
let data = readFile("tests/images/jpg/jpeg420exif.jpg")
|
||||
|
||||
timeIt "pixie decode":
|
||||
for i in 0 ..< 20:
|
||||
discard decodeJpg(cast[seq[uint8]](data))
|
||||
|
||||
timeIt "stb_image decode":
|
||||
for i in 0 ..< 20:
|
||||
var
|
||||
width: int
|
||||
height: int
|
||||
discard loadFromMemory(cast[seq[uint8]](data), width, height)
|
Loading…
Reference in a new issue