Searched defs:dstY (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DIntegerInterleavedRaster.java342 * @param dstY The absolute Y coordinate of the destination pixel
349 private void setDataElements(int dstX, int dstY, argument
357 // Write inRaster (minX, minY) to (dstX, dstY)
372 int dstOffset = dataOffsets[0]+(dstY-minY)*scanlineStride+
392 setDataElements(dstX, dstY+startY, width, 1, odata);
H A DShortInterleavedRaster.java478 * @param dstY The absolute Y coordinate of the destination pixel
485 private void setDataElements(int dstX, int dstY, argument
493 // Write inRaster (minX, minY) to (dstX, dstY)
507 setDataElements(dstX, dstY + startY, width, 1, tdata);
H A DByteBandedRaster.java460 * @param dstY The absolute Y coordinate of the destination pixel
467 private void setDataElements(int dstX, int dstY, argument
487 setDataElements(dstX, dstY+startY, width, 1, tdata);
H A DByteComponentRaster.java509 * @param dstY The absolute Y coordinate of the destination pixel
516 private void setDataElements(int dstX, int dstY, argument
537 int dstOffset = dataOffsets[0]+(dstY-minY)*scanlineStride+
559 setDataElements(dstX, dstY+startY, width, 1, tdata);
H A DByteInterleavedRaster.java590 * @param dstY The absolute Y coordinate of the destination pixel
601 private void setDataElements(int dstX, int dstY, argument
610 // Write inRaster (minX, minY) to (dstX, dstY)
629 (dstY - minY) * scanlineStride +
648 setDataElements(dstX, dstY + startY, width, 1, tdata);
H A DBytePackedRaster.java563 * @param dstY The absolute Y coordinate of the destination pixel
574 private void setDataElements(int dstX, int dstY, argument
592 8 * (dstY - minY) * outscan +
H A DIntegerComponentRaster.java411 * @param dstY The absolute Y coordinate of the destination pixel
418 private void setDataElements(int dstX, int dstY, argument
426 // Write inRaster (minX, minY) to (dstX, dstY)
447 int dstOffset = dataOffsets[0]+(dstY-minY)*scanlineStride+
470 setDataElements(dstX, dstY+startY,
H A DShortBandedRaster.java456 * @param dstY The absolute Y coordinate of the destination pixel
463 private void setDataElements(int dstX, int dstY, argument
471 // Write inRaster (minX, minY) to (dstX, dstY)
485 setDataElements(dstX, dstY + startY, width, 1, tdata);
H A DShortComponentRaster.java506 * @param dstY The absolute Y coordinate of the destination pixel
513 private void setDataElements(int dstX, int dstY, argument
521 // Write inRaster (minX, minY) to (dstX, dstY)
535 setDataElements(dstX, dstY + startY, width, 1, tdata);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPixelGrabber.java78 int dstY; field in class:PixelGrabber
151 dstY = y;
187 dstY = y;
371 dstH = height - dstY;
474 if (srcY < dstY) {
475 int diff = dstY - srcY;
483 if (srcY + srcH > dstY + dstH) {
484 srcH = (dstY + dstH) - srcY;
504 int dstPtr = dstOff + (srcY - dstY) * dstScan + (srcX - dstX);
561 if (srcY < dstY) {
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom.h44 dstX, dstY; member in struct:__anon1023
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGraphicsPrimitive.java568 int dstX, int dstY, int w, int h)
572 0, 0, dstX, dstY, w, h);
565 convertTo(Blit ob, SurfaceData srcImg, SurfaceData dstImg, Region clip, int dstX, int dstY, int w, int h) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRCompositeManager.java233 int maskX, int maskY, int dstX, int dstY, int width, int height) {
249 maskX, maskY, dstX, dstY, width, height);
232 XRComposite(int src, int mask, int dst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
H A DXRBackend.java88 int dstX, int dstY, int width, int height);
86 renderComposite(byte op, int src, int mask, int dst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
H A DXRBackendNative.java86 int maskX, int maskY, int dstX, int dstY,
84 renderComposite(byte op, int src, int mask, int dst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c368 jint dstX, jint dstY, jint width, jint height) {
371 srcX, srcY, maskX, maskY, dstX, dstY, width, height);
365 Java_sun_java2d_xr_XRBackendNative_renderComposite(JNIEnv *env, jobject this, jbyte op, jint src, jint mask, jint dst, jint srcX, jint srcY, jint maskX, jint maskY, jint dstX, jint dstY, jint width, jint height) argument

Completed in 66 milliseconds