FSEM, BufferStrategy, Swing & Active Rendering together?
I've been trying unsuccessfully to actively render images in a JPanel surrounded by Swing components in FSEM using the BufferStrategy
classes. The images I render are offset, partially overlaying the swing
components. I expect this is because the backbuffer that is used from the Strategy classes comes from the JFrame, thus it renders my images across the whole screen rather than just the JPanel that I wish
to actively render.
My question: am I trying to do something that really can't be done? ie.
combining active rendering, fsem, Swing and the BufferStrategy classes? I can see how to actively render in FSEM with swing with a
manually created double buffer, but I want to use the BufferStrategy
classes to get PageFlipping.
Comments and insight appreciated.

