D
double buffering
A rendering technique which consists in:

first, drawing to an off-screen image (back buffer),

second, when the image is complete, copying the off-screen image to the screen (front buffer).
In applets, drawing is almost always done with double buffering to reduce flickering.
See also triple buffering.
Copyright © 2017, Rogue Wave Software, Inc. All Rights Reserved.