I'm planning to implement a canvas view that can handle a shitload amount of fullscreen images on iPad, with many layers, tons of custom shaders, and more.
Is there any automated way top cache to disk/reload to memory all of these textures automatically?
So I don't have to worry about the memory existence of the actual texture, just bind it, and the rest should be happen automatically.
I could write a framework on my own, but I'd really like if there was a ready made solution for this (on iOS).
I want just upload/bind textures without worrying about if it fits the memory or not. And some automatism should make sure that is loaded just before I want to bind it to be able to draw.
What is this: CVOpenGLESTextureCacheCreateTextureFromImage? Does it have something to do with my issue?