View Full Version : max number of texture ?
divide
02-01-2007, 04:05 AM
Hello
I think of an application which would use a very large number of small textures (64x64). Is there any limit to the number of textures that can be generated through glgentextures ?
As glgentextures return 16bit index, I assume it is 65536 ?
Zengar
02-01-2007, 05:08 AM
The index is 32bit on all usual architectures, so you probably won't run into that limit. Still, consider packing your textures as tiles in a larger one(for example 256 small textures in one 1024x1024). This will allow you to save performance on binding large number of textures.
divide
02-01-2007, 05:43 AM
Ah right... Yes 32bit is pretty cool. I was rather wondering about some hardware limitation (other than available memory) but you haven't heard of such things (and that's great). Unfortunately I won't be able to tiles them due to how the application is designed, but binding shouldn't be a problem (only a few binds at each frame).
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.