Hi I'm developing a 3D Application and loading in all images / models in on a loading screen, however now I'm getting to the point of running out of RAM and I still need to put more models in the application.
Any advice to what I can do keep in mind I still need the application to be fast when selecting a model to add to a scene (hence the reason why I pre-load images / models)
Images are in dxt format so they are already compressed.
I am using VirtualAlloc to allocate the memory and VirtualFree to free the memory (as necessary).
Any advice is greatly appreciated.