public interface IRenderTarget
Modifier and Type | Interface and Description |
---|---|
static class |
IRenderTarget.LayerType
Represents 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 (view coordinates in pixel).y
- the y position of the rectangle area (view coordinates in pixel).width
- the width of the rectangle area (view coordinates in pixel).height
- the height of the rectangle area (view coordinates in pixel).layers
- the set of layers to invalidate.