devxlogo

Double Buffering

Double Buffering

Double buffering is a process of doing all the drawing first in the memory and then displaying the entire screen at once. It is called double buffering because two drawing buffers are kept and you switch between them. It can be used to display fast animation without flickering. On the downside, it does have some memory overhead.

The code given below describes how to do it:

 Image OffscreenImage;Graphics OffscreenGraphics;OffscreenImage = createImage(size.width(), size.height());OffscreenGraphics = OffscreenImage.getGraphics();OffscreenGraphics.drawImage(image,x,y,this);g.drawImage(OffscreenImage,0,0,this);


Professional animation effects are created using this technique.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist