Hi
I’m trying to flip 2D images in java using this code:
g.drawImage (img,
0, img.getHeight(this), 0,im.getWidth(this),
0, 0, im.getWidth(this), im.getHeight(this),
this);
This works but it seems not accelerated! :o
If I don’t flip the image i get 110fps, when I flip it
I get 90fps.
There’s another way to do image flipping in the
hardware accelerated way???
Many thanks.