Searched defs:newPixels (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DMemoryImageSource.java95 * source.newPixels(x, y, w, h);
396 * @see #newPixels(int, int, int, int, boolean)
400 public void newPixels() { method in class:MemoryImageSource
401 newPixels(0, 0, width, height, true);
419 * @see #newPixels(int, int, int, int, boolean)
424 public synchronized void newPixels(int x, int y, int w, int h) { method in class:MemoryImageSource
425 newPixels(x, y, w, h, true);
451 public synchronized void newPixels(int x, int y, int w, int h, method in class:MemoryImageSource
501 * @see #newPixels(int, int, int, int, boolean)
504 public synchronized void newPixels(byt method in class:MemoryImageSource
527 public synchronized void newPixels(int[] newpix, ColorModel newmodel, method in class:MemoryImageSource
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java924 private void updateImageProgress(int newPixels) { argument
925 pixelsDone += newPixels;

Completed in 34 milliseconds