Does every image need to be a 'VolatileImage' in a 2d game?
C Wang
Greenhorn
Joined: Jun 05, 2009
Posts: 3
posted
0
I'm a little confused about how VolatileImage s are supposed to be used.
Are they just for the 'main' image (the one you draw other images on) or should the other images (like sprite images) be VolatileImage as well?
for example i have 2 images 'screenimage' and 'enemyimage', and I draw enemyimage on to screenimage
if I want to use hardware acceleration on them should I just make screenimage a VolatileImage or should enemyimage be a VolatileImage too?
You only need VolatileImage if you want hardware acceleration for your image. This is usually the case for offscreen rendering of a scene. Swing already takes care of most of this.
Just use BufferedImage, and only if performance is low, should you consider using a VolatileImage for rendering scenes. Static graphics objects should never use VolatileImage.
subject: Does every image need to be a 'VolatileImage' in a 2d game?