flicker : Java Glossary
home F words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
flicker
Here are some things to try to avoid flicker:
  1. In a Canvas.paint(), there is no need to call super.paint() since update() will have already cleared the screen.
  2. In your update routine, don’t erase anything, just call paint. paint then must paint the entire Canvas. You override update() to just directly call paint() without the g.clearRect(0, 0, width, height);.
  3. In your update routine, just erase the parts of the image that will become background, perhaps even only the parts that are not already background.
  4. Use Swing which has double buffering built-in. You must override paintComponent rather than paint to get the automatic double buffering. Oddly, sometimes turning double buffering off with JComponent. setDoubleBuffered( false ) might help.
  5. Use manual double buffering in AWT. Prepare all your images ahead of time with createImage and blast them to the screen (without erasing first) with drawImage in your paint routine. Because Images are platform dependent, you can’t simply instantiate them with a constructor. You have to create them through calls like Applet.getImage(), Component.createImage(), or Toolkit.getDefaultToolkit(). getImage().
  6. In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting Java with:
    Java.exe -Dsun.java2d.noddraw=true MyClass
    This will slightly slow down painting, however.
  7. In Swing, use setOpaque( true ) to arrange for the system to draw the background in for you. This seems to work better than drawing it yourself with clearRect.
  8. If you tie up the Swing thread, it can never get around to processing events and updating the screen. If you have entensive computation, start up a background thread and do your GUI work via SwingUtilities.invokeLater, or EventQueue.invokeLater.
This is a complicated topic. Tricks for AWT and Swing differ.

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.16] Visit Western Canada Wilderness Committee
You are visitor number 14,305.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/flicker.html J:\mindprod\jgloss\flicker.html