Skip to content
Snippets Groups Projects
Commit 54d540ef authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

Add RenderResult.setUpdated()

parent ce87df04
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,12 @@ public class BufferedImageRenderResult implements RenderResult
this.scaleFactor = scaleFactor;
}
@Override
public void setUpdated()
{
// ignored. BufferedImage is always up-to-date
}
@Override
public void patch( final RenderResult patch, final Interval interval, final double ox, final double oy )
{
......
......@@ -49,4 +49,6 @@ public interface RenderResult
* Note that only data in {@code interval} will be modified, although the scaled and shifted {@code patch} might fall partially outside.
*/
void patch( final RenderResult patch, final Interval interval, final double ox, final double oy );
void setUpdated();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment