Mar 15, 2001 #1 peter11 Instructor Joined Mar 16, 2001 Messages 334 Location US I am using a game tutorial, wac-a-rat. This program draws to a picture box prior to drawing to the form. What is the benefit of this and does anyone know of any resources on Double Buffering?
I am using a game tutorial, wac-a-rat. This program draws to a picture box prior to drawing to the form. What is the benefit of this and does anyone know of any resources on Double Buffering?
Mar 16, 2001 #2 chiph Programmer Joined Jun 9, 1999 Messages 9,878 Location US Double Buffering is an animation technique that reduces the amount of flicker. The idea is that you draw all your individual objects to a non-visible buffer. And then you draw the buffer to the screen all at once. Chip H. Upvote 0 Downvote
Double Buffering is an animation technique that reduces the amount of flicker. The idea is that you draw all your individual objects to a non-visible buffer. And then you draw the buffer to the screen all at once. Chip H.