Re: [JAVA2D] Question about recommended render loop for BufferStrategy...

2007-07-11 Thread Ken Warner
Ken Warner wrote: According to the documentation on: http://java.sun.com/javase/6/docs/api/java/awt/image/BufferStrategy.html One is supposed to do { Graphics graphics = strategy.getDrawGraphics(); //render here graphics.dispose(); } while (strategy.contentsRestored());

Re: [JAVA2D] Question about recommended render loop for BufferStrategy...

2007-07-11 Thread Dmitri Trembovetski
If you can put together a complete test which shows that you can render to a Graphics object after it's been disposed (and stuff shows up in the destination), that would be a bug. If you can, please send the test over. Otherwise it is hard to tell what could be wrong. Thanks,

Re: [JAVA2D] Question about recommended render loop for BufferStrategy...

2007-07-11 Thread Ken Warner
I'll have one available by tomorrow am. Thanks for your time. Ken Dmitri Trembovetski wrote: If you can put together a complete test which shows that you can render to a Graphics object after it's been disposed (and stuff shows up in the destination), that would be a bug. If you