< prev index next >

test/java/awt/image/DrawImage/IncorrectClipXorModeSW2Surface.java

Print this page
rev 14836 : 8159690: [TESTBUG] Mark headful tests with @key headful.
   1 /*
   2  * Copyright (c) 2014, Oracle and/or its affiliates. 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.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  27 import java.awt.GraphicsEnvironment;
  28 import java.awt.Image;
  29 import java.awt.Rectangle;
  30 import java.awt.Shape;
  31 import java.awt.geom.AffineTransform;
  32 import java.awt.image.BufferedImage;
  33 import java.awt.image.DataBuffer;
  34 import java.awt.image.DataBufferByte;
  35 import java.awt.image.DataBufferInt;
  36 import java.awt.image.DataBufferShort;
  37 import java.awt.image.VolatileImage;
  38 import java.io.File;
  39 import java.io.IOException;
  40 
  41 import javax.imageio.ImageIO;
  42 
  43 import static java.awt.geom.Rectangle2D.Double;
  44 
  45 /**
  46  * @test

  47  * @bug 8061456
  48  * @summary Tests drawing BI to volatile image using different clips + xor mode.
  49  *          Results of the blit BI to compatibleImage is used for comparison.
  50  * @author Sergey Bylokhov
  51  */
  52 public final class IncorrectClipXorModeSW2Surface {
  53 
  54     private static int[] SIZES = {2, 10, 100};
  55     private static final Shape[] SHAPES = {
  56                                            new Rectangle(0, 0, 0, 0),
  57                                            new Rectangle(0, 0, 1, 1),
  58                                            new Rectangle(0, 1, 1, 1),
  59                                            new Rectangle(1, 0, 1, 1),
  60                                            new Rectangle(1, 1, 1, 1),
  61 
  62                                            new Double(0, 0, 0.5, 0.5),
  63                                            new Double(0, 0.5, 0.5, 0.5),
  64                                            new Double(0.5, 0, 0.5, 0.5),
  65                                            new Double(0.5, 0.5, 0.5, 0.5),
  66                                            new Double(0.25, 0.25, 0.5, 0.5),


   1 /*
   2  * Copyright (c) 2014, 2016, Oracle and/or its affiliates. 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.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


  27 import java.awt.GraphicsEnvironment;
  28 import java.awt.Image;
  29 import java.awt.Rectangle;
  30 import java.awt.Shape;
  31 import java.awt.geom.AffineTransform;
  32 import java.awt.image.BufferedImage;
  33 import java.awt.image.DataBuffer;
  34 import java.awt.image.DataBufferByte;
  35 import java.awt.image.DataBufferInt;
  36 import java.awt.image.DataBufferShort;
  37 import java.awt.image.VolatileImage;
  38 import java.io.File;
  39 import java.io.IOException;
  40 
  41 import javax.imageio.ImageIO;
  42 
  43 import static java.awt.geom.Rectangle2D.Double;
  44 
  45 /**
  46  * @test
  47  * @key headful
  48  * @bug 8061456
  49  * @summary Tests drawing BI to volatile image using different clips + xor mode.
  50  *          Results of the blit BI to compatibleImage is used for comparison.
  51  * @author Sergey Bylokhov
  52  */
  53 public final class IncorrectClipXorModeSW2Surface {
  54 
  55     private static int[] SIZES = {2, 10, 100};
  56     private static final Shape[] SHAPES = {
  57                                            new Rectangle(0, 0, 0, 0),
  58                                            new Rectangle(0, 0, 1, 1),
  59                                            new Rectangle(0, 1, 1, 1),
  60                                            new Rectangle(1, 0, 1, 1),
  61                                            new Rectangle(1, 1, 1, 1),
  62 
  63                                            new Double(0, 0, 0.5, 0.5),
  64                                            new Double(0, 0.5, 0.5, 0.5),
  65                                            new Double(0.5, 0, 0.5, 0.5),
  66                                            new Double(0.5, 0.5, 0.5, 0.5),
  67                                            new Double(0.25, 0.25, 0.5, 0.5),


< prev index next >