/hg/gfx-test: Five new tests added into ClippingCircleByEllipseS...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu May 30 01:04:20 PDT 2013


changeset 03f7433af553 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=03f7433af553
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu May 30 10:07:45 2013 +0200

	Five new tests added into ClippingCircleByEllipseShape.


diffstat:

 ChangeLog                                                    |    5 +
 src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java |  115 +++++++++++
 2 files changed, 120 insertions(+), 0 deletions(-)

diffs (144 lines):

diff -r b97c3acc4538 -r 03f7433af553 ChangeLog
--- a/ChangeLog	Wed May 29 12:59:02 2013 +0200
+++ b/ChangeLog	Thu May 30 10:07:45 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-30  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
+	Five new tests added into ClippingCircleByEllipseShape.
+
 2013-05-29  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/BitBltBasicTests.java:
diff -r b97c3acc4538 -r 03f7433af553 src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java	Wed May 29 12:59:02 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java	Thu May 30 10:07:45 2013 +0200
@@ -219,6 +219,31 @@
     }
 
     /**
+     * Draw circle clipped by an ellipse shape. Circle is drawn using alpha
+     * paint with white color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByEllipseShapeAlphaPaintWhite(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip ellipse
+        CommonClippingOperations.renderClipEllipse(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillWhiteColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingEllipseShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
      * Check if circle shape could be clipped by an ellipse shape. Circle is
      * rendered using stroke paint.
      * 
@@ -692,6 +717,96 @@
 
     /**
      * Check if circle shape could be clipped by an ellipse shape. Circle is
+     * rendered using alpha paint with white color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeAlphaPaintWhite000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by ellipse shape using alpha paint with 0% transparency
+        drawCircleClippedByEllipseShapeAlphaPaintWhite(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by an ellipse shape. Circle is
+     * rendered using alpha paint with white color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeAlphaPaintWhite025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by ellipse shape using alpha paint with 25% transparency
+        drawCircleClippedByEllipseShapeAlphaPaintWhite(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by an ellipse shape. Circle is
+     * rendered using alpha paint with white color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeAlphaPaintWhite050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by ellipse shape using alpha paint with 50% transparency
+        drawCircleClippedByEllipseShapeAlphaPaintWhite(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by an ellipse shape. Circle is
+     * rendered using alpha paint with white color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeAlphaPaintWhite075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by ellipse shape using alpha paint with 75% transparency
+        drawCircleClippedByEllipseShapeAlphaPaintWhite(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by an ellipse shape. Circle is
+     * rendered using alpha paint with white color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByEllipseShapeAlphaPaintWhite100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by ellipse shape using alpha paint with 100% transparency
+        drawCircleClippedByEllipseShapeAlphaPaintWhite(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by an ellipse shape. Circle is
      * rendered using horizontal gradient paint.
      * 
      * @param image



More information about the distro-pkg-dev mailing list