/hg/gfx-test: * src/org/gfxtest/framework/CommonBitmapOperations...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Sep 14 01:06:27 PDT 2012


changeset 0e6e63aebe13 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=0e6e63aebe13
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 14 10:09:04 2012 +0200

	* src/org/gfxtest/framework/CommonBitmapOperations.java:
	Added support for rendering flipped images of certain types.
	* src/org/gfxtest/testsuites/BitBltMirrorImage.java:
	Added eight new tests to this test case, correction of various typos.


diffstat:

 ChangeLog                                             |    7 +
 src/org/gfxtest/framework/CommonBitmapOperations.java |   64 +++++-
 src/org/gfxtest/testsuites/BitBltMirrorImage.java     |  190 +++++++++++++++++-
 3 files changed, 253 insertions(+), 8 deletions(-)

diffs (331 lines):

diff -r 26d1f5592d44 -r 0e6e63aebe13 ChangeLog
--- a/ChangeLog	Thu Sep 13 09:13:56 2012 +0200
+++ b/ChangeLog	Fri Sep 14 10:09:04 2012 +0200
@@ -1,3 +1,10 @@
+2012-09-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonBitmapOperations.java:
+	Added support for rendering flipped images of certain types.
+	* src/org/gfxtest/testsuites/BitBltMirrorImage.java:
+	Added eight new tests to this test case, correction of various typos.
+
 2012-09-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/PrintTestBitBlt.java:
diff -r 26d1f5592d44 -r 0e6e63aebe13 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java	Thu Sep 13 09:13:56 2012 +0200
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java	Fri Sep 14 10:09:04 2012 +0200
@@ -155,17 +155,75 @@
      *            image to which another image is to be drawn
      * @param graphics2d
      *            graphics canvas
-     * @param type
+     * @param imageType
      *            type of the created image
      */
-    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int type)
+    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType)
     {
-        BufferedImage bufferedImage = createBufferedBitmap(type);
+        BufferedImage bufferedImage = createBufferedBitmap(imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
         // BitBlt with 1:1 scaling
         return performBitBlt(bufferedImage, image, graphics2d) ? TestResult.PASSED : TestResult.FAILED;
     }
 
     /**
+     * Create new buffered image 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 width
+     *            width of a image after BitBlt operation is performed
+     * @param height
+     *            height of a image after BitBlt operation is performed
+     */
+    public static TestResult doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType, int width, int height)
+    {
+        BufferedImage bufferedImage = createBufferedBitmap(imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with custom scaling
+        return performBitBlt(bufferedImage, image, graphics2d, width, height) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
+     * Create new buffered image 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 doBitBltTestWithEmptyImage(TestImage image, Graphics2D graphics2d, int imageType,
+                    boolean horizontalFlip, boolean verticalFlip)
+    {
+        BufferedImage bufferedImage = createBufferedBitmap(imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling
+        return performBitBlt(bufferedImage, image, graphics2d, horizontalFlip, verticalFlip) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing checker pattern and then perform basic BitBlt test.
      *
      * @param image
diff -r 26d1f5592d44 -r 0e6e63aebe13 src/org/gfxtest/testsuites/BitBltMirrorImage.java
--- a/src/org/gfxtest/testsuites/BitBltMirrorImage.java	Thu Sep 13 09:13:56 2012 +0200
+++ b/src/org/gfxtest/testsuites/BitBltMirrorImage.java	Fri Sep 14 10:09:04 2012 +0200
@@ -125,7 +125,7 @@
 
     /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
-     * Horizontal and vertical flip is performed on that image..
+     * Horizontal and vertical flips are performed on that image..
      *
      * @param image
      *            image to which line is to be drawn
@@ -185,7 +185,7 @@
 
     /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
-     * Horizontal and vertical flip is performed on that image..
+     * Horizontal and vertical flips are performed on that image..
      *
      * @param image
      *            image to which line is to be drawn
@@ -245,7 +245,7 @@
 
     /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
-     * Horizontal and vertical flip is performed on that image..
+     * Horizontal and vertical flips are performed on that image..
      *
      * @param image
      *            image to which line is to be drawn
@@ -305,7 +305,7 @@
 
     /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_ARGB.
-     * Horizontal and vertical flip is performed on that image..
+     * Horizontal and vertical flips are performed on that image..
      *
      * @param image
      *            image to which line is to be drawn
@@ -365,7 +365,7 @@
 
     /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_INT_ARGB_PRE.
-     * Horizontal and vertical flip is performed on that image..
+     * Horizontal and vertical flips are performed on that image..
      *
      * @param image
      *            image to which line is to be drawn
@@ -379,6 +379,186 @@
     }
 
     /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+     * No flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType3ByteBGRNoFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, false, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+     * Horizontal flip is performed on that image..
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType3ByteBGRHorizontalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, true, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+     * Vertical flip is performed on that image..
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType3ByteBGRVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, false, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+     * Horizontal and vertical flips are performed on that image..
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType3ByteBGRHorizontalAndVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, true, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR.
+     * No flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGRNoFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, false, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR.
+     * Horizontal flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGRHorizontalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, true, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR.
+     * Vertical flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGRVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, false, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR.
+     * Horizontal and vertical flip are performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGRHorizontalAndVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, true, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_PRE.
+     * No flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGR_PreNoFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, false, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_PRE.
+     * Horizontal flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGR_PreHorizontalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, true, false);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_PRE.
+     * Vertical flip is performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGR_PreVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, false, true);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_PRE.
+     * Horizontal and vertical flips are performed to that image.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltEmptyBufferedImageType4ByteABGR_PreHorizontalAndVerticalFlip(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, true, true);
+    }
+
+    /**
      * Entry point to the test suite.
      *
      * @param args not used in this case



More information about the distro-pkg-dev mailing list