/hg/gfx-test: Added two new kernels and ROPs associated with tho...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon May 13 00:51:28 PDT 2013


changeset 57c4b42782cb in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=57c4b42782cb
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon May 13 09:54:53 2013 +0200

	Added two new kernels and ROPs associated with those kernels.
	Four new tests added into BitBltConvolveOp test suite.


diffstat:

 ChangeLog                                        |   6 ++
 src/org/gfxtest/testsuites/BitBltConvolveOp.java |  71 ++++++++++++++++++++++++
 2 files changed, 77 insertions(+), 0 deletions(-)

diffs (115 lines):

diff -r 38588fcd1665 -r 57c4b42782cb ChangeLog
--- a/ChangeLog	Fri May 10 11:37:06 2013 +0200
+++ b/ChangeLog	Mon May 13 09:54:53 2013 +0200
@@ -1,3 +1,9 @@
+2013-05-13  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltConvolveOp.java:
+	Added two new kernels and ROPs associated with those kernels.
+	Four new tests added into BitBltConvolveOp test suite.
+
 2013-05-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/annotations/Transformations.java:
diff -r 38588fcd1665 -r 57c4b42782cb src/org/gfxtest/testsuites/BitBltConvolveOp.java
--- a/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Fri May 10 11:37:06 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Mon May 13 09:54:53 2013 +0200
@@ -109,6 +109,18 @@
                     1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
                     });
 
+    private static final Kernel SobelOperatorGx = new Kernel(3, 3, new float[] {
+                    1f, 0f, -1f,
+                    2f, 0f, -2f,
+                    1f, 0f, -1f
+                    });
+
+    private static final Kernel SobelOperatorGy = new Kernel(3, 3, new float[] {
+                    1f, 2f, 1f,
+                    0f, 0f, 0f,
+                    -1f, -2f, -1f
+                    });
+
     private static final ConvolveOp noopKernel1x1ROP = new ConvolveOp(NoOpKernel1x1);
     private static final ConvolveOp noopKernel3x3ROP = new ConvolveOp(NoOpKernel3x3);
     private static final ConvolveOp noopKernel5x5ROP = new ConvolveOp(NoOpKernel5x5);
@@ -117,6 +129,9 @@
     private static final ConvolveOp smoothingKernel3x3ROP = new ConvolveOp(SmoothingKernel3x3);
     private static final ConvolveOp smoothingKernel5x5ROP = new ConvolveOp(SmoothingKernel5x5);
 
+    private static final ConvolveOp sobelOperatorGxROP = new ConvolveOp(SobelOperatorGx);
+    private static final ConvolveOp sobelOperatorGyROP = new ConvolveOp(SobelOperatorGy);
+
     /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR
      *
@@ -291,6 +306,34 @@
     }
 
     /**
+     * Test basic BitBlt operation for empty 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundSobelOperatorGxROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGxROP);
+    }
+
+    /**
+     * Test basic BitBlt operation for empty 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundSobelOperatorGyROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGyROP);
+    }
+
+    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
      *
      * @param image
@@ -375,6 +418,34 @@
     }
 
     /**
+     * Test basic BitBlt operation for 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 testBitBltCheckerBufferedImageType3ByteBGRbackgroundSobelOperatorGxROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGxROP);
+    }
+
+    /**
+     * Test basic BitBlt operation for 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 testBitBltCheckerBufferedImageType3ByteBGRbackgroundSobelOperatorGyROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, sobelOperatorGyROP);
+    }
+
+    /**
      * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_3BYTE_BGR.
      *
      * @param image



More information about the distro-pkg-dev mailing list