Lines Matching defs:pixels

62  *      int pixels[];
69 * pixels = new int[size];
73 * pixels[i] = value;
76 * source = new MemoryImageSource(width, height, pixels, 0, width);
92 * // Modify the values in the pixels array at (x, y, w, h)
111 Object pixels;
122 * @param w the width of the rectangle of pixels
123 * @param h the height of the rectangle of pixels
125 * @param pix an array of pixels
128 * @param scan the distance from one row of pixels to the next in
140 * @param w the width of the rectangle of pixels
141 * @param h the height of the rectangle of pixels
143 * @param pix an array of pixels
146 * @param scan the distance from one row of pixels to the next in
162 * @param w the width of the rectangle of pixels
163 * @param h the height of the rectangle of pixels
165 * @param pix an array of pixels
168 * @param scan the distance from one row of pixels to the next in
180 * @param w the width of the rectangle of pixels
181 * @param h the height of the rectangle of pixels
183 * @param pix an array of pixels
186 * @param scan the distance from one row of pixels to the next in
204 pixels = pix;
216 * @param w the width of the rectangle of pixels
217 * @param h the height of the rectangle of pixels
218 * @param pix an array of pixels
221 * @param scan the distance from one row of pixels to the next in
234 * @param w the width of the rectangle of pixels
235 * @param h the height of the rectangle of pixels
236 * @param pix an array of pixels
239 * @param scan the distance from one row of pixels to the next in
360 * updated by sending the complete buffer of pixels whenever
391 * Sends a whole new buffer of pixels to any ImageConsumers that
405 * Sends a rectangular region of the buffer of pixels to any
414 * of pixels to be sent
416 * of pixels to be sent
417 * @param w the width of the rectangle of pixels to be sent
418 * @param h the height of the rectangle of pixels to be sent
429 * Sends a rectangular region of the buffer of pixels to any
440 * of pixels to be sent
442 * of pixels to be sent
443 * @param w the width of the rectangle of pixels to be sent
444 * @param h the height of the rectangle of pixels to be sent
491 * Changes to a new byte array to hold the pixels for this image.
493 * method, then the new pixels will be immediately delivered to any
499 * @param scansize the distance from one row of pixels to the next in
506 this.pixels = newpix;
514 * Changes to a new int array to hold the pixels for this image.
516 * method, then the new pixels will be immediately delivered to any
522 * @param scansize the distance from one row of pixels to the next in
529 this.pixels = newpix;
562 if (pixels instanceof byte[]) {
564 ((byte[]) pixels), off, pixelscan);
567 ((int[]) pixels), off, pixelscan);