|
double buffering
This programming technique uses two buffers to speed up any computer task when the hardware can process and push information around at the same time. In graphics cards, double buffering is often used to store the next frame in a video clip in an offscreen frame buffer while displaying the current frame. This way, when the present frame is finished, the next frame is ready to write to the displayable portion of the buffer. See also: frame buffer |