Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Im using (n) different texture maps and when I started using (n+1) instead, performance drastically drops. What happened?

0
Posted

Im using (n) different texture maps and when I started using (n+1) instead, performance drastically drops. What happened?

0

Your graphics device has a limited amount of dedicated texture map memory. Your (n) textures fit well in the texture memory, but there wasn’t room left for any more texture maps. When you started using (n+1) textures, suddenly the device couldn’t store all the textures it needed for a frame, and it had to swap them in from the computer s system memory. The additional bus bandwidth required to download these textures in each frame killed your performance. You might consider using smaller texture maps at the expense of image quality.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123