blob: df7be2286337e1424884fc6e9efb99d692edc112 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2005-2007 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.java2d.d3d;
27
28import java.awt.Color;
29import java.awt.Image;
30import java.awt.geom.AffineTransform;
31import java.awt.image.AffineTransformOp;
32import sun.java2d.SunGraphics2D;
33import sun.java2d.SurfaceData;
34import sun.java2d.loops.SurfaceType;
35import sun.java2d.loops.TransformBlit;
36import sun.java2d.pipe.DrawImage;
37
38public class D3DDrawImage extends DrawImage {
39 protected void renderImageXform(SunGraphics2D sg, Image img,
40 AffineTransform tx, int interpType,
41 int sx1, int sy1, int sx2, int sy2,
42 Color bgColor)
43 {
44 // punt to the MediaLib-based transformImage() in the superclass if:
45 // - bicubic interpolation is specified
46 // - a background color is specified and will be used
47 // - the source surface is not a texture
48 // - an appropriate TransformBlit primitive could not be found
49 if (interpType != AffineTransformOp.TYPE_BICUBIC) {
50 SurfaceData dstData = sg.surfaceData;
51 SurfaceData srcData =
52 dstData.getSourceSurfaceData(img,
53 sg.TRANSFORM_GENERIC,
54 sg.imageComp,
55 bgColor);
56
57 if (srcData != null &&
58 !isBgOperation(srcData, bgColor) &&
59 srcData.getSurfaceType() == D3DSurfaceData.D3DTexture)
60 {
61 SurfaceType srcType = srcData.getSurfaceType();
62 SurfaceType dstType = dstData.getSurfaceType();
63 TransformBlit blit = TransformBlit.getFromCache(srcType,
64 sg.imageComp,
65 dstType);
66
67 if (blit != null) {
68 blit.Transform(srcData, dstData,
69 sg.composite, sg.getCompClip(),
70 tx, interpType,
71 sx1, sy1, 0, 0, sx2-sx1, sy2-sy1);
72 return;
73 }
74 }
75 }
76
77 super.renderImageXform(sg, img, tx, interpType,
78 sx1, sy1, sx2, sy2, bgColor);
79 }
80}