When you load an image, where is it?

BlitzMax Forums/BlitzMax Beginners Area/When you load an image, where is it?

Gabriel(Posted 2005) [#1]
I've asked this before, and got mixed unofficial replies. So this time, I'd like an official response please. When I load an image ( I'm using the DX7 driver exclusively, if it makes a difference ) is it going directly into vidmem or does it reside in system mem until it's being drawn.

I think I know, but think is not good enough.

BTW, the language has been out quite some time now. Isn't it about time we had an AvailVidMem() command so that we could actually tell without having to ask?


Dreamora(Posted 2005) [#2]
DX: Managed by DX (so normally in System RAM if not needed) (the flag for forced Vid RAM is commented out in BM 1.10)

OpenGL: In Video RAM

Pixmaps are in both cases in System RAM


Gabriel(Posted 2005) [#3]
Ok, thanks.