/hg/gfx-test: Added ten new tests to the test suite ClippingCirc...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Mar 22 03:05:31 PDT 2013


changeset e616a59dd4bd in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=e616a59dd4bd
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Mar 22 11:08:41 2013 +0100

	Added ten new tests to the test suite ClippingCircleByConcavePolygonalShape.


diffstat:

 ChangeLog                                                             |    7 +
 src/org/gfxtest/framework/CommonRenderingStyles.java                  |   28 +
 src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java |  232 +++++++++-
 3 files changed, 266 insertions(+), 1 deletions(-)

diffs (308 lines):

diff -r 331484abba8d -r e616a59dd4bd ChangeLog
--- a/ChangeLog	Thu Mar 21 11:03:21 2013 +0100
+++ b/ChangeLog	Fri Mar 22 11:08:41 2013 +0100
@@ -1,3 +1,10 @@
+2013-03-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonRenderingStyles.java:
+	Added new static method used by some test cases.
+	* src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
+	Added ten new tests to this test suite.
+
 2013-03-21  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
diff -r 331484abba8d -r e616a59dd4bd src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java	Thu Mar 21 11:03:21 2013 +0100
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java	Fri Mar 22 11:08:41 2013 +0100
@@ -224,6 +224,34 @@
     }
 
     /**
+     * Set transparent magenta color.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param transparency
+     *            color transparency represented in percents (0..100)
+     */
+    public static void setTransparentFillMagentaColor(Graphics2D graphics, int transparency)
+    {
+        float value = transparencyToBounds(transparency / 100.0f);
+        graphics.setPaint(new Color(1.0f, 0.0f, 1.0f, value));
+    }
+
+    /**
+     * Set transparent cyan color.
+     * 
+     * @param graphics
+     *            graphics context for image
+     * @param transparency
+     *            color transparency represented in percents (0..100)
+     */
+    public static void setTransparentFillCyanColor(Graphics2D graphics, int transparency)
+    {
+        float value = transparencyToBounds(transparency / 100.0f);
+        graphics.setPaint(new Color(0.0f, 1.0f, 1.0f, value));
+    }
+
+    /**
      * Set horizontal gradient fill for given graphics context.
      *
      * @param image
diff -r 331484abba8d -r e616a59dd4bd src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java	Thu Mar 21 11:03:21 2013 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java	Fri Mar 22 11:08:41 2013 +0100
@@ -1,7 +1,7 @@
 /*
   Java gfx-test framework
 
-   Copyright (C) 2010, 2011, 2012  Red Hat
+   Copyright (C) 2010, 2011, 2012, 2013  Red Hat
 
 This file is part of IcedTea.
 
@@ -194,6 +194,56 @@
     }
 
     /**
+     * Draw circle clipped by a concave polygonal shape. Circle is drawn using alpha
+     * paint with magenta color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByPolygonalShapeAlphaPaintMagenta(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip polygon
+        CommonClippingOperations.renderConcaveClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillMagentaColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingConcavePolygonalShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by a concave polygonal shape. Circle is drawn using alpha
+     * paint with cyan color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByPolygonalShapeAlphaPaintCyan(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip polygon
+        CommonClippingOperations.renderConcaveClipPolygon(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillCyanColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingConcavePolygonalShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
      * Check if circle shape could be clipped by a concave polygonal shape. Circle is
      * rendered using stroke paint.
      * 
@@ -575,6 +625,186 @@
 
     /**
      * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with magenta color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintMagenta000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 0% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintMagenta(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with magenta color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintMagenta025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 25% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintMagenta(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with magenta color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintMagenta050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 50% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintMagenta(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with magenta color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintMagenta075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 75% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintMagenta(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with magenta color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintMagenta100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 100% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintMagenta(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with cyan color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintCyan000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 0% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintCyan(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with cyan color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintCyan025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 25% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintCyan(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with cyan color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintCyan050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 50% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintCyan(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with cyan color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintCyan075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 75% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintCyan(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+     * rendered using alpha paint with cyan color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByPolygonalShapeAlphaPaintCyan100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by concave polygonal shape using alpha paint with 100% transparency
+        drawCircleClippedByPolygonalShapeAlphaPaintCyan(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a concave polygonal shape. Circle is
      * rendered using horizontal gradient paint.
      * 
      * @param image



More information about the distro-pkg-dev mailing list