Page 1 of 1

What's the diffrence between LoadImage and LoadSprite?

Posted: Thu Aug 21, 2003 3:19 pm
by AngelSoul
are they the same?

Posted: Thu Aug 21, 2003 4:18 pm
by freak
Sprites are kept in video memory, and are faster to use than images.
Using the sprite lib requires at least DirectX 7 to be installed.
That's why sprites are good for games.

Images are in main memory, and therefore slower, because no graphic
hardware is used. There is no DX required, so they should be used to
do applications.

Timo

Posted: Thu Aug 21, 2003 4:59 pm
by AngelSoul
Thanks a lot!