/hg/gfx-test: Eight new tests added to the test suite BitBltScal...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Sep 17 01:21:05 PDT 2012


changeset 4fdd5848ee80 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=4fdd5848ee80
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Sep 17 10:23:43 2012 +0200

	Eight new tests added to the test suite BitBltScaleImage.


diffstat:

 ChangeLog                                        |    5 +
 src/org/gfxtest/testsuites/BitBltScaleImage.java |  212 ++++++++++++++++++++++-
 2 files changed, 213 insertions(+), 4 deletions(-)

diffs (262 lines):

diff -r 0e6e63aebe13 -r 4fdd5848ee80 ChangeLog
--- a/ChangeLog	Fri Sep 14 10:09:04 2012 +0200
+++ b/ChangeLog	Mon Sep 17 10:23:43 2012 +0200
@@ -1,3 +1,8 @@
+2012-09-17  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltScaleImage.java:
+	Eight new tests added to the test suite BitBltScaleImage.
+
 2012-09-14  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r 0e6e63aebe13 -r 4fdd5848ee80 src/org/gfxtest/testsuites/BitBltScaleImage.java
--- a/src/org/gfxtest/testsuites/BitBltScaleImage.java	Fri Sep 14 10:09:04 2012 +0200
+++ b/src/org/gfxtest/testsuites/BitBltScaleImage.java	Mon Sep 17 10:23:43 2012 +0200
@@ -79,6 +79,210 @@
 public class BitBltScaleImage extends GfxTest
 {
     /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to a double size in both dimensions.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRScaleTwoTimes(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT * 2);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one half size in both dimensions.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRScaleOneHalf(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 2,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT / 2);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one third size in both dimensions.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRScaleOneThird(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 3,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT / 3);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to two thirds size in both dimensions.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRScaleTwoThirds(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2 / 3,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT *2 / 3);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to a double size in horizontal dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRHScaleTwoTimes(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one half size in horizontal dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRHScaleOneHalf(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 2,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one third size in horizontal dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRHScaleOneThird(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 3,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to two thirds size in horizontal dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRHScaleTwoThirds(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2 / 3,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to a double size in vertical dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRVScaleTwoTimes(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT * 2);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one half size in vertical dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRVScaleOneHalf(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT / 2);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to one third size in vertical dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRVScaleOneThird(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT / 3);
+    }
+
+    /**
+     * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+     * The image is scaled to two thirds size in vertical dimension.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRVScaleTwoThirds(TestImage image, Graphics2D graphics2d)
+    {
+        return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+                        CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT *2 / 3);
+    }
+
+    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
      * The image is scaled to a double size in both dimensions.
      *
@@ -156,7 +360,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHscaleOneHalf(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHScaleOneHalf(TestImage image, Graphics2D graphics2d)
     {
         return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
                         CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 2,
@@ -173,7 +377,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHscaleTwoTimes(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHScaleTwoTimes(TestImage image, Graphics2D graphics2d)
     {
         return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
                         CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2,
@@ -190,7 +394,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVscaleOneHalf(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVScaleOneHalf(TestImage image, Graphics2D graphics2d)
     {
         return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
                         CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
@@ -207,7 +411,7 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVscaleTwoTimes(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVScaleTwoTimes(TestImage image, Graphics2D graphics2d)
     {
         return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
                         CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,



More information about the distro-pkg-dev mailing list