/hg/gfx-test: 2012-02-01 Pavel Tisnovsky <ptisnovs at redhat.com>

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Feb 1 01:26:46 PST 2012


changeset 49ff22218b59 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=49ff22218b59
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Feb 01 10:28:44 2012 +0100

	2012-02-01 Pavel Tisnovsky <ptisnovs at redhat.com>

	 * src/org/gfxtest/framework/CommonBitmapOperations.java:
	Added support for rendering flipped images.
	    * src/org/gfxtest/testsuites/BitBltMirrorImage.java: Basic test
	for rendering flipped images.


diffstat:

 ChangeLog                                             |   7 +
 src/org/gfxtest/framework/CommonBitmapOperations.java |  63 +++++++++++++++++
 src/org/gfxtest/testsuites/BitBltMirrorImage.java     |  68 +++++++++++++++++++
 3 files changed, 138 insertions(+), 0 deletions(-)

diffs (180 lines):

diff -r 5d9eed71daa9 -r 49ff22218b59 ChangeLog
--- a/ChangeLog	Fri Jan 27 14:47:46 2012 +0100
+++ b/ChangeLog	Wed Feb 01 10:28:44 2012 +0100
@@ -1,3 +1,10 @@
+2012-02-01  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonBitmapOperations.java:
+	Added support for rendering flipped images.
+	* src/org/gfxtest/testsuites/BitBltMirrorImage.java:
+	Basic test for rendering flipped images.
+
 2012-01-27  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/ImageFactory.java:
diff -r 5d9eed71daa9 -r 49ff22218b59 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java	Fri Jan 27 14:47:46 2012 +0100
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java	Wed Feb 01 10:28:44 2012 +0100
@@ -103,6 +103,40 @@
     }
 
     /**
+     * Performs BitBlt operation.
+     * 
+     * @param sourceImage
+     *            source image for BitBlt
+     * @param destinationImage
+     *            destination image for BitBlt graphics canvas
+     * @param graphics2d
+     *            instance of class used during rendering
+     * @param horizontalFlip
+     *            enables performing horizontal flip of image
+     * @param verticalFlip
+     *            enables performing vertical flip of image
+     * @return if the image has completely loaded and its pixels are no longer
+     *         being changed, then returns true. Otherwise, returns false
+     */
+    private static boolean BitBlt(BufferedImage sourceImage, TestImage destinationImage, Graphics2D graphics2d,
+                    boolean horizontalFlip, boolean verticalFlip)
+    {
+        // compute top-left corner coordinates of destination image
+        final int dx1 = (destinationImage.getWidth() - DEFAULT_TEST_IMAGE_WIDTH) >> 1;
+        final int dy1 = (destinationImage.getHeight() - DEFAULT_TEST_IMAGE_HEIGHT) >> 1;
+        // compute bottom-right corner coordinates of destination image
+        final int dx2 = dx1 + DEFAULT_TEST_IMAGE_WIDTH;
+        final int dy2 = dy1 + DEFAULT_TEST_IMAGE_HEIGHT;
+        // compute top-left corner coordinates of source image
+        final int sx1 = horizontalFlip ? DEFAULT_TEST_IMAGE_WIDTH: 0;
+        final int sy1 = verticalFlip ? DEFAULT_TEST_IMAGE_HEIGHT : 0;
+        // compute bottom-right corner coordinates of source image
+        final int sx2 = horizontalFlip ? 0 : DEFAULT_TEST_IMAGE_WIDTH;
+        final int sy2 = verticalFlip ? 0 : DEFAULT_TEST_IMAGE_HEIGHT;
+        return graphics2d.drawImage(sourceImage, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
+    }
+
+    /**
      * Create buffered bitmap with given type.
      * 
      * @param type
@@ -183,6 +217,35 @@
     }
 
     /**
+     * Create new buffered image containing checker pattern and then perform
+     * basic BitBlt test.
+     * 
+     * @param image
+     *            image to which another image is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @param imageType
+     *            type of the created image
+     * @param horizontalFlip
+     *            enables performing horizontal flip of image
+     * @param verticalFlip
+     *            enables performing vertical flip of image
+     */
+    public static TestResult doBitBltTestWithCheckerImage(TestImage image, Graphics2D graphics2d, int imageType,
+                    boolean horizontalFlip, boolean verticalFlip)
+    {
+        // create image with given pattern
+        BufferedImage bufferedImage = ImageFactory.createCheckerImage(GRID_SIZE, DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with custom scaling
+        return BitBlt(bufferedImage, image, graphics2d, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing diagonal checker pattern and then do basic BitBlt test.
      *
      * @param image
diff -r 5d9eed71daa9 -r 49ff22218b59 src/org/gfxtest/testsuites/BitBltMirrorImage.java
--- a/src/org/gfxtest/testsuites/BitBltMirrorImage.java	Fri Jan 27 14:47:46 2012 +0100
+++ b/src/org/gfxtest/testsuites/BitBltMirrorImage.java	Wed Feb 01 10:28:44 2012 +0100
@@ -40,7 +40,15 @@
 
 package org.gfxtest.testsuites;
 
+import java.awt.Graphics2D;
+import java.awt.image.BufferedImage;
+
+
+
+import org.gfxtest.framework.CommonBitmapOperations;
 import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
 import org.gfxtest.framework.annotations.GraphicsPrimitive;
 import org.gfxtest.framework.annotations.GraphicsPrimitives;
 import org.gfxtest.framework.annotations.RenderStyle;
@@ -68,6 +76,66 @@
 public class BitBltMirrorImage extends GfxTest
 {
     /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+     * No flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryNoFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, false, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+     * Horizontal flip is performed on that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHorizontalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, true, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+     * Vertical flip is performed on that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, false, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+     * Horizontal and vertical flip is performed on that image..
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHorizontalAndVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, true, true);
+    }
+
+    /**
      * Entry point to the test suite.
      *
      * @param args not used in this case



More information about the distro-pkg-dev mailing list