I have a test that loads and pre-caches 20 images(1280x720 px). After the loading is done I use copyPixel to cache the loaded data. I’m left with a catching time of about 2 seconds, resulting in an average of 100ms per image.
I’ve tried every trick I can think of, nothing is making it any faster. I have one idea left:
Do you think it would speed the caching up by frst comverting the images to binary, then loading the binary images and using setPixels to cache them?
Any thoughts on this matter will be really helpful.