I have seen two different rendering methods. One of them is rendering multiple bufferedImages like g.drawImage(imag1image1 to imagexxx, x ,y y). Like in my game iI have to render, on each tick, 880 buffered images. And itThis is very bad. I have a good computer but my max fps is 140. There should be another way to get better performance.
SecondThe second way is drawing one single bufferedImage and setting its pixels to RGB from ourthe other bufferedImages.
What is the best way ? Is there another way to get better performance ?