hi
I have experimented a bit with Graphics2D,but I am now creating a fullscreengame in java 1.4 and using volatile images for sprites. Should I use Graphics2D to render? or Graphics?
I usually do g.drawImage, but would it be faster rendering if I cast g to Graphics2D?
or maybe there is no real speed difference between Graphics2D and Graphics?
thanks.