/hg/gfx-test: Six new tests added into BitBltConvolveOp test suite.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu May 16 01:34:06 PDT 2013


changeset 51cd89f835e7 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=51cd89f835e7
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu May 16 10:37:27 2013 +0200

	Six new tests added into BitBltConvolveOp test suite.


diffstat:

 ChangeLog                                        |   5 +
 src/org/gfxtest/testsuites/BitBltConvolveOp.java |  84 ++++++++++++++++++++++++
 2 files changed, 89 insertions(+), 0 deletions(-)

diffs (120 lines):

diff -r d616b88c89ff -r 51cd89f835e7 ChangeLog
--- a/ChangeLog	Wed May 15 09:45:29 2013 +0200
+++ b/ChangeLog	Thu May 16 10:37:27 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-16  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltConvolveOp.java:
+	Six new tests added into BitBltConvolveOp test suite.
+
 2013-05-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/BitBltBasicTests.java:
diff -r d616b88c89ff -r 51cd89f835e7 src/org/gfxtest/testsuites/BitBltConvolveOp.java
--- a/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Wed May 15 09:45:29 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Thu May 16 10:37:27 2013 +0200
@@ -530,6 +530,34 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalCheckerBufferedImageType3ByteBGRbackgroundSobelOperatorGxROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltDiagonalCheckerBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGxROP);
+    }
+
+    /**
+     * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalCheckerBufferedImageType3ByteBGRbackgroundSobelOperatorGyROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltDiagonalCheckerBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGyROP);
+    }
+
+    /**
      * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
      *
      * @param image
@@ -614,6 +642,34 @@
     }
 
     /**
+     * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltGridBufferedImageType3ByteBGRbackgroundSobelOperatorGxROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltGridBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGxROP);
+    }
+
+    /**
+     * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltGridBufferedImageType3ByteBGRbackgroundSobelOperatorGyROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltGridBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGyROP);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_3BYTE_BGR.
      *
      * @param image
@@ -698,6 +754,34 @@
     }
 
     /**
+     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundSobelOperatorGxROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltDiagonalGridBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGxROP);
+    }
+
+    /**
+     * Test basic BitBlt operation for diagonal grid buffered image with type TYPE_3BYTE_BGR.
+     *
+     * @param image
+     *            image used as a destination for BitBlt-type operations
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundSobelOperatorGyROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltDiagonalGridBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGyROP);
+    }
+
+    /**
      * Entry point to the test suite.
      *
      * @param args not used in this case



More information about the distro-pkg-dev mailing list