Searched refs:dstPixel (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandCombineOp.java159 int[] dstPixel = new int[dst.getNumBands()];
178 dstPixel[r] = (int) accum;
180 dst.setPixel(dX, dY, dstPixel);
196 dstPixel[r] = (int) (accum+matrix[r][nBands]);
198 dst.setPixel(dX, dY, dstPixel);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DCustomComponent.java247 Object dstPixel = null;
265 dstPixel = dstRast.getDataElements(x, y, dstPixel);
270 byte[] bytedstarr = (byte[]) dstPixel;
279 short[] shortdstarr = (short[]) dstPixel;
287 int[] intdstarr = (int[]) dstPixel;
295 float[] floatdstarr = (float[]) dstPixel;
306 double[] doubledstarr = (double[]) dstPixel;
318 dstRast.setDataElements(x, y, dstPixel);
H A DGeneralRenderer.java1024 Object dstPixel = dstRast.getDataElements(x, y, null);
1025 xorPixel(dstPixel);
1026 dstRast.setDataElements(x, y, dstPixel);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1189 unsigned char* dstPixel = dstLine; local
1201 *dstPixel++ = lookup->table[s];
1205 while(((uintptr_t)dstPixel & 0x3) != 0 && npix>0) {
1210 *dstPixel++ = lookup->table[s];
1223 int* dstP = (int*)dstPixel;
1243 dstPixel += NLUT;
1255 *dstPixel++ = lookup->table[s];

Completed in 1411 milliseconds