/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* MaskBlit
* 1) copies rectangle of pixels from one surface to another
* 2) performs compositing of colors based upon a Composite
* parameter
* 3) blends result of composite with destination using an
* alpha coverage mask
* 4) the mask may be null in which case it should be treated
* as if it were an array of all opaque values (0xff)
*
* precise behavior is undefined if the source surface
* and the destination surface are the same surface
* with overlapping regions of pixels
*/
{
{
return (MaskBlit)
}
{
if (o != null) {
return (MaskBlit) o;
}
} else {
}
return blit;
}
{
}
{
}
/**
* All MaskBlit implementors must have this invoker method
*/
static {
}
{
/*
new Throwable().printStackTrace();
System.out.println("Constructing general maskblit for:");
System.out.println("src: "+srctype);
System.out.println("comp: "+comptype);
System.out.println("dst: "+dsttype);
*/
throw new InternalError("Cannot construct MaskBlit for " +
"XOR mode");
}
return ob;
}
private static class General
extends MaskBlit
implements GeneralBinaryOp
{
{
}
{
this.convertsrc = srcconverter;
this.convertdst = dstconverter;
this.convertresult = resconverter;
}
{
if (convertsrc == null) {
} else {
}
sx = 0;
sy = 0;
}
}
if (convertdst == null) {
} else {
// assert: convertresult != null
}
dx = 0;
dy = 0;
}
}
if (convertresult != null) {
// assert: convertdst != null
}
}
}
return new TraceMaskBlit(this);
}
// We need to have the same NativePrim as our
// target in case we are used with a TransformHelper
super(target.getNativePrim(),
target.getDestType());
}
return this;
}
{
}
}
}