/hg/gfx-test: Refactoring, added one new Convolve operators and ...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Mar 26 01:29:50 PDT 2013


changeset e2fa0d65e1be in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=e2fa0d65e1be
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Mar 26 09:33:01 2013 +0100

	Refactoring, added one new Convolve operators and five new tests
	into the test suite BitBltConvolveOp.


diffstat:

 ChangeLog                                        |    6 +
 src/org/gfxtest/testsuites/BitBltConvolveOp.java |  103 +++++++++++++++++++++-
 2 files changed, 101 insertions(+), 8 deletions(-)

diffs (151 lines):

diff -r e616a59dd4bd -r e2fa0d65e1be ChangeLog
--- a/ChangeLog	Fri Mar 22 11:08:41 2013 +0100
+++ b/ChangeLog	Tue Mar 26 09:33:01 2013 +0100
@@ -1,3 +1,9 @@
+2013-03-26  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltConvolveOp.java:
+	Refactoring, added one new Convolve operators and five new tests
+	into the test suite BitBltConvolveOp.
+
 2013-03-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonRenderingStyles.java:
diff -r e616a59dd4bd -r e2fa0d65e1be src/org/gfxtest/testsuites/BitBltConvolveOp.java
--- a/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Fri Mar 22 11:08:41 2013 +0100
+++ b/src/org/gfxtest/testsuites/BitBltConvolveOp.java	Tue Mar 26 09:33:01 2013 +0100
@@ -75,12 +75,29 @@
 public class BitBltConvolveOp extends GfxTest
 {
     private static final Kernel NoOpKernel = new Kernel(1, 1, new float[] {1});
-    private static final Kernel SmoothingKernel1 = new Kernel(2, 2, new float[] {1/4f, 1/4f, 1/4f, 1/4f});
-    private static final Kernel SmoothingKernel2 = new Kernel(3, 3, new float[] {1/9f, 1/9f, 1/9f, 1/9f, 1/9f, 1/9f, 1/9f, 1/9f, 1/9f});
+    private static final Kernel SmoothingKernel2x2 = new Kernel(2, 2, new float[] {
+                    1/4f, 1/4f,
+                    1/4f, 1/4f
+                    });
+
+    private static final Kernel SmoothingKernel3x3 = new Kernel(3, 3, new float[] {
+                    1/9f, 1/9f, 1/9f,
+                    1/9f, 1/9f, 1/9f,
+                    1/9f, 1/9f, 1/9f
+                    });
+
+    private static final Kernel SmoothingKernel5x5 = new Kernel(5, 5, new float[] {
+                    1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
+                    1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
+                    1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
+                    1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
+                    1/25f, 1/25f, 1/25f, 1/25f, 1/25f,
+                    });
 
     private static final ConvolveOp noopROP = new ConvolveOp(NoOpKernel);
-    private static final ConvolveOp smoothingROP1 = new ConvolveOp(SmoothingKernel1);
-    private static final ConvolveOp smoothingROP2 = new ConvolveOp(SmoothingKernel2);
+    private static final ConvolveOp smoothingKernel2x2ROP = new ConvolveOp(SmoothingKernel2x2);
+    private static final ConvolveOp smoothingKernel3x3ROP = new ConvolveOp(SmoothingKernel3x3);
+    private static final ConvolveOp smoothingKernel5x5ROP = new ConvolveOp(SmoothingKernel5x5);
 
     /**
      * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR
@@ -118,6 +135,62 @@
     }
     
     /**
+     * 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundNoOpROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, noopROP);
+    }
+
+    /**
+     * 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundSmoothingKernel2x2ROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel2x2ROP);
+    }
+
+    /**
+     * 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundSmoothing3x3ROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel3x3ROP);
+    }
+
+    /**
+     * 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 testBitBltEmptyBufferedImageType3ByteBGRbackgroundSmoothing5x5ROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel5x5ROP);
+    }
+
+    /**
      * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
      *
      * @param image
@@ -140,9 +213,9 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundSmoothingROP1(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundSmoothingKernel2x2ROP(TestImage image, Graphics2D graphics2d)
     {
-        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, smoothingROP1);
+        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel2x2ROP);
     }
 
     /**
@@ -154,9 +227,23 @@
      *            graphics canvas
      * @return test result status - PASSED, FAILED or ERROR
      */
-    public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundSmoothingROP2(TestImage image, Graphics2D graphics2d)
+    public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundSmoothingKernel3x3ROP(TestImage image, Graphics2D graphics2d)
     {
-        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, smoothingROP2);
+        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel3x3ROP);
+    }
+
+    /**
+     * 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 testBitBltCheckerBufferedImageType3ByteBGRbackgroundSmoothingKernel5x5ROP(TestImage image, Graphics2D graphics2d)
+    {
+        return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, smoothingKernel5x5ROP);
     }
 
     /**



More information about the distro-pkg-dev mailing list