java.lang.Object
java.awt.image.BufferStrategy
java.awt.Component.BltBufferStrategy
- Enclosing class:
- Component
protected class Component.BltBufferStrategy extends BufferStrategy
Inner class for blitting offscreen surfaces to a component.
- Since:
- 1.4
- 
Field SummaryFields Modifier and Type Field Description protected VolatileImage[]backBuffersThe back buffersprotected BufferCapabilitiescapsThe buffering capabilitiesprotected intheightHeight of the back buffersprotected booleanvalidatedContentsWhether or not the drawing buffer has been recently restored from a lost state.protected intwidthWidth of the back buffers
- 
Constructor SummaryConstructors Modifier Constructor Description protectedBltBufferStrategy(int numBuffers, BufferCapabilities caps)Creates a new blt buffer strategy around a component
- 
Method SummaryModifier and Type Method Description booleancontentsLost()Returns whether the drawing buffer was lost since the last call togetDrawGraphics.booleancontentsRestored()Returns whether the drawing buffer was recently restored from a lost state and reinitialized to the default background color (white).protected voidcreateBackBuffers(int numBuffers)Creates the back buffersvoiddispose()Releases system resources currently consumed by thisBufferStrategyand removes it from the associated Component.BufferCapabilitiesgetCapabilities()Returns theBufferCapabilitiesfor thisBufferStrategy.GraphicsgetDrawGraphics()Creates a graphics context for the drawing buffer.protected voidrevalidate()Restore the drawing buffer if it has been lostvoidshow()Makes the next available buffer visible.
- 
Field Details- 
capsThe buffering capabilities
- 
backBuffersThe back buffers
- 
validatedContentsprotected boolean validatedContentsWhether or not the drawing buffer has been recently restored from a lost state.
- 
widthprotected int widthWidth of the back buffers
- 
heightprotected int heightHeight of the back buffers
 
- 
- 
Constructor Details- 
BltBufferStrategyCreates a new blt buffer strategy around a component- Parameters:
- numBuffers- number of buffers to create, including the front buffer
- caps- the capabilities of the buffers
 
 
- 
- 
Method Details- 
disposepublic void dispose()Releases system resources currently consumed by thisBufferStrategyand removes it from the associated Component. After invoking this method,getBufferStrategywill return null. Trying to use aBufferStrategyafter it has been disposed will result in undefined behavior.- Overrides:
- disposein class- BufferStrategy
- Since:
- 1.6
- See Also:
- Window.createBufferStrategy(int),- Canvas.createBufferStrategy(int),- Window.getBufferStrategy(),- Canvas.getBufferStrategy()
 
- 
createBackBuffersprotected void createBackBuffers(int numBuffers)Creates the back buffers- Parameters:
- numBuffers- the number of buffers to create
 
- 
getCapabilitiesDescription copied from class:BufferStrategyReturns theBufferCapabilitiesfor thisBufferStrategy.- Specified by:
- getCapabilitiesin class- BufferStrategy
- Returns:
- the buffering capabilities of this strategy
 
- 
getDrawGraphicsDescription copied from class:BufferStrategyCreates a graphics context for the drawing buffer. This method may not be synchronized for performance reasons; use of this method by multiple threads should be handled at the application level. Disposal of the graphics object obtained must be handled by the application.- Specified by:
- getDrawGraphicsin class- BufferStrategy
- Returns:
- the draw graphics
 
- 
showpublic void show()Makes the next available buffer visible.- Specified by:
- showin class- BufferStrategy
 
- 
revalidateprotected void revalidate()Restore the drawing buffer if it has been lost
- 
contentsLostpublic boolean contentsLost()Description copied from class:BufferStrategyReturns whether the drawing buffer was lost since the last call togetDrawGraphics. Since the buffers in a buffer strategy are usually typeVolatileImage, they may become lost. For a discussion on lost buffers, seeVolatileImage.- Specified by:
- contentsLostin class- BufferStrategy
- Returns:
- whether the drawing buffer was lost since the last call to
 getDrawGraphics
- See Also:
- VolatileImage
 
- 
contentsRestoredpublic boolean contentsRestored()Description copied from class:BufferStrategyReturns whether the drawing buffer was recently restored from a lost state and reinitialized to the default background color (white). Since the buffers in a buffer strategy are usually typeVolatileImage, they may become lost. If a surface has been recently restored from a lost state since the last call togetDrawGraphics, it may require repainting. For a discussion on lost buffers, seeVolatileImage.- Specified by:
- contentsRestoredin class- BufferStrategy
- Returns:
- whether the drawing buffer was recently restored from a lost state and reinitialized to the default background color (white)
- See Also:
- VolatileImage
 
 
-