/hg/gfx-test: Another ten new helper methods added into CommonBi...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Jul 2 09:53:32 UTC 2014


changeset fd8732d7d493 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=fd8732d7d493
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Jul 02 11:54:25 2014 +0200

	Another ten new helper methods added into CommonBitmapOperations.


diffstat:

 ChangeLog                                             |    5 +
 src/org/gfxtest/framework/CommonBitmapOperations.java |  250 ++++++++++++++++++
 2 files changed, 255 insertions(+), 0 deletions(-)

diffs (335 lines):

diff -r 9b45e3d53524 -r fd8732d7d493 ChangeLog
--- a/ChangeLog	Tue Jul 01 11:08:23 2014 +0200
+++ b/ChangeLog	Wed Jul 02 11:54:25 2014 +0200
@@ -1,3 +1,8 @@
+2014-07-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonBitmapOperations.java:
+	Another ten new helper methods added into CommonBitmapOperations.
+
 2014-07-01  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r 9b45e3d53524 -r fd8732d7d493 src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java	Tue Jul 01 11:08:23 2014 +0200
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java	Wed Jul 02 11:54:25 2014 +0200
@@ -2372,6 +2372,31 @@
     }
 
     /**
+     * Create new buffered image containing vertical blue gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithVerticalBlueGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createVerticalBlueGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing vertical blue gradient and then perform
      * basic BitBlt test.
      * 
@@ -2451,6 +2476,31 @@
     }
 
     /**
+     * Create new buffered image containing horizontal green gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithHorizontalGreenGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createHorizontalGreenGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing horizontal green gradient and then perform
      * basic BitBlt test.
      * 
@@ -2530,6 +2580,31 @@
     }
 
     /**
+     * Create new buffered image containing vertical green gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithVerticalGreenGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createVerticalGreenGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing vertical green gradient and then perform
      * basic BitBlt test.
      * 
@@ -2609,6 +2684,31 @@
     }
 
     /**
+     * Create new buffered image containing horizontal yellow gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithHorizontalYellowGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createHorizontalYellowGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing horizontal yellow gradient and then perform
      * basic BitBlt test.
      * 
@@ -2688,6 +2788,31 @@
     }
 
     /**
+     * Create new buffered image containing vertical yellow gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithVerticalYellowGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createVerticalYellowGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing vertical yellow gradient and then perform
      * basic BitBlt test.
      * 
@@ -2767,6 +2892,31 @@
     }
 
     /**
+     * Create new buffered image containing horizontal magenta gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithHorizontalMagentaGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createHorizontalMagentaGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing horizontal magenta gradient and then perform
      * basic BitBlt test.
      * 
@@ -2846,6 +2996,31 @@
     }
 
     /**
+     * Create new buffered image containing vertical magenta gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithVerticalMagentaGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createVerticalMagentaGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing vertical magenta gradient and then perform
      * basic BitBlt test.
      * 
@@ -2925,6 +3100,31 @@
     }
 
     /**
+     * Create new buffered image containing horizontal cyan gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithHorizontalCyanGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createHorizontalCyanGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing horizontal cyan gradient and then perform
      * basic BitBlt test.
      * 
@@ -3004,6 +3204,31 @@
     }
 
     /**
+     * Create new buffered image containing vertical cyan gradient 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithVerticalCyanGradientImage(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ImageFactory.createVerticalCyanGradientImage(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing vertical cyan gradient and then perform
      * basic BitBlt test.
      * 
@@ -3085,6 +3310,31 @@
     }
 
     /**
+     * Create new buffered image containing RGB pattern #1 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 bgcolor
+     *            background color
+     */
+    public static TestResult doBitBltTestWithRGBTexture1Image(TestImage image, Graphics2D graphics2d, int imageType, Color bgcolor)
+    {
+        // create new buffered bitmap with given type
+        BufferedImage bufferedImage = ProceduralTextureFactory.createRGBTexture1(DEFAULT_TEST_IMAGE_WIDTH, DEFAULT_TEST_IMAGE_HEIGHT, imageType);
+        // basic check if buffered image was created
+        if (bufferedImage == null)
+        {
+            return TestResult.FAILED;
+        }
+        // BitBlt with 1:1 scaling, no flipping and no cropping
+        return BitBltOperations.performBitBlt(bufferedImage, image, graphics2d, bgcolor) ? TestResult.PASSED : TestResult.FAILED;
+    }
+
+    /**
      * Create new buffered image containing RGB pattern #1 and then perform
      * basic BitBlt test.
      * 


More information about the distro-pkg-dev mailing list