* ImageConsumers that are currently interested in the data for
* this image and notify them that a frame is complete.
*/
public void sendPixels()
{
TinyPixbuf pixbuf = raster.getPixelBuffer();
int pixelscan = pixbuf.width;
int pixeloffset = pixelscan * raster.clipRect.ymin + raster.clipRect.xmin;
theConsumer.setPixels(raster.clipRect.xmin, raster.clipRect.ymin,
raster.clipRect.xmax - raster.clipRect.xmin, raster.clipRect.ymax - raster.clipRect.ymin, model,
pixbuf.pixels32, pixeloffset, pixelscan);