Check for card's texture limit?

Blitz3D Forums/Blitz3D Beginners Area/Check for card's texture limit?

ErikT(Posted 2005) [#1]
Like the title says, is it possible?


jfk EO-11110(Posted 2005) [#2]
probably you could do something like this:

tmax=512
test=createtexture(1024)
if texturewidth(test)=1024 then tmax=1024
freetexture test
test=createtexture(2048)
if texturewidth(test)=2048 then tmax=2048
freetexture test


ErikT(Posted 2005) [#3]
Okay, thanks.