Package org.sunflow.core
Interface ImageSampler
- All Known Implementing Classes:
BucketRenderer,MultipassRenderer,ProgressiveRenderer,SimpleRenderer
public interface ImageSampler
This interface represents an image sampling algorithm capable of rendering
the entire image. Implementations are responsible for anti-aliasing and
filtering.
-
Method Summary
-
Method Details
-
prepare
Prepare the sampler for rendering an image of w x h pixels- Parameters:
w- width of the imageh- height of the image
-
render
Render the image to the specified display. The sampler can assume the display has been opened and that it will be closed after the method returns.- Parameters:
display- Display driver to send image data to
-