Searched refs:dstIn (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DCompositeContext.java52 * source. Note that <code>dstIn</code> and
58 * @param dstIn the second source for the compositing operation
64 Raster dstIn,
63 compose(Raster src, Raster dstIn, WritableRaster dstOut) argument
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunCompositeContext.java91 public void compose(Raster srcArg, Raster dstIn, WritableRaster dstOut) { argument
96 if (dstIn != dstOut) {
97 dstOut.setDataElements(0, 0, dstIn);
112 w = Math.min(src.getWidth(), dstIn.getWidth());
113 h = Math.min(src.getHeight(), dstIn.getHeight());
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DGeneralCompositePipe.java96 Raster dstIn;
104 dstIn = dstOut;
106 dstIn = dstRaster.createChild(x, y, w, h, 0, 0, null);
107 dstOut = dstIn.createCompatibleWritableRaster();
110 compCtxt.compose(srcRaster, dstIn, dstOut);
/openjdk7/jdk/test/sun/java2d/loops/
H A DBug7049339.java61 public void compose(Raster src, Raster dstIn,
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DCustomCompositeTest.java236 public void compose(Raster src, Raster dstIn, WritableRaster dstOut) { argument

Completed in 31 milliseconds