public interface IRenderTarget
| Modifier and Type | Interface and Description | 
|---|---|
| static class  | IRenderTarget.LayerTypeRepresents the type of a layer | 
| Modifier and Type | Method and Description | 
|---|---|
| void | invalidate(Renderer renderer,
          java.util.EnumSet<IRenderTarget.LayerType> layers)Invalidates the given set of layers. | 
| void | invalidate(Renderer renderer,
          int x,
          int y,
          int width,
          int height,
          java.util.EnumSet<IRenderTarget.LayerType> layers)Invalidates a specified rectangle area on the given set of layers. | 
void invalidate(Renderer renderer, java.util.EnumSet<IRenderTarget.LayerType> layers)
renderer - the renderer to which this render target has been bound.layers - the set of layers to invalidate.void invalidate(Renderer renderer, int x, int y, int width, int height, java.util.EnumSet<IRenderTarget.LayerType> layers)
renderer - the renderer to which this render target has been bound.x - the x position of the rectangle area.y - the y position of the rectangle area.width - the width of the rectangle area.height - the height of the rectangle area.layers - the set of layers to invalidate.