CodeF53 / PackXBR

A utility for automatic application of the XBR scaling algorithm to game textures.
12 stars 1 forks source link

Multitheading #5

Closed CodeF53 closed 3 years ago

CodeF53 commented 3 years ago

It's kinda stupid to do the image processing on a single thread, considering one day this will be applied to whole mod packs.

Right now it can take 5-10 minutes for a pack with just 2,000 textures. (while that sounds like a lot, it really isn't, skyfactory4 has 13,569)

Because of this, multithreading needs to happen.

CodeF53 commented 3 years ago

potential problem/sacrifice with this is the nice UI that shows exactly what step the program is currently on wouldn't exactly work with more than one image being processed at a time

CodeF53 commented 3 years ago

9