bluescan / tacentview

An image and texture viewer for tga, png, apng, exr, dds, pvr, ktx, ktx2, astc, pkm, qoi, gif, hdr, jpg, tif, ico, webp, and bmp files. Uses Dear ImGui, OpenGL, and Tacent. Useful for game devs as it displays information like the presence of an alpha channel and querying specific pixels for their colour.
ISC License
344 stars 33 forks source link

Generate thumbnails on separate threads #3

Closed bluescan closed 4 years ago

bluescan commented 4 years ago

We need to be able to open folders with 1000s of photos. Thumbnail gen is too slow to allow it to block the main thread. Plan is to use non-locking atomic bool (bit-set-and-test) for synchronization.