Test how many images you can load:
Rem Project: memory usage test
Rem Created: 20/07/2005 11:36:15
Rem ***** Main Source File *****
CREATE BITMAP 1,512,512
GET IMAGE 1, 1, 1, 512, 512, 0
DELETE BITMAP 1
save image "test.bmp", 1
DELETE IMAGE 1
while mouseclick()=0
inc i
cls
set cursor 0,20
print "SYSTEM SMEM AVAILABLE = ", SYSTEM SMEM AVAILABLE()
print "next image = ", i
load image "test.bmp", i : rem add ,1 at the end for load without mipmapping
print "loaded, ", i
sync
EXIT PROMPT "TOTAL LOADED = "+str$(i), "END OF MEMORY TEST"
endwhile
If you add ",1" at the end of the LOAD IMAGE, you can test it without mipmapping.
I get :
171 512x512 images loaded with mipmapping
1682 512x512 images loaded without mipmapping
I have 128Mb vram.