Searched defs:dstIn (Results 1 - 3 of 3) 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/test/sun/java2d/OpenGL/
H A DCustomCompositeTest.java236 public void compose(Raster src, Raster dstIn, WritableRaster dstOut) { argument

Completed in 62 milliseconds