/hg/gfx-test: One helper method and five new tests added into
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue May 21 02:39:25 PDT 2013
changeset b683ef37b88a in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b683ef37b88a
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue May 21 11:42:52 2013 +0200
One helper method and five new tests added into
ClippingCircleByEllipseShape test suite.
diffstat:
ChangeLog | 6 +
src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java | 115 +++++++++++
2 files changed, 121 insertions(+), 0 deletions(-)
diffs (145 lines):
diff -r 47183195d9f0 -r b683ef37b88a ChangeLog
--- a/ChangeLog Mon May 20 10:18:01 2013 +0200
+++ b/ChangeLog Tue May 21 11:42:52 2013 +0200
@@ -1,3 +1,9 @@
+2013-05-21 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
+ One helper method and five new tests added into
+ ClippingCircleByEllipseShape test suite.
+
2013-05-20 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
diff -r 47183195d9f0 -r b683ef37b88a src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Mon May 20 10:18:01 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java Tue May 21 11:42:52 2013 +0200
@@ -120,6 +120,31 @@
/**
* Draw circle clipped by an ellipse shape. Circle is drawn using alpha
+ * paint with black color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByEllipseShapeAlphaPaintBlack(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip ellipse
+ CommonClippingOperations.renderClipEllipse(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillBlackColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingEllipseShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by an ellipse shape. Circle is drawn using alpha
* paint with red color and selected transparency.
*
* @param image
@@ -307,6 +332,96 @@
/**
* Check if circle shape could be clipped by an ellipse shape. Circle is
+ * rendered using alpha paint with black color at 0% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlack000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 0% transparency
+ drawCircleClippedByEllipseShapeAlphaPaintBlack(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 black color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlack025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 25% transparency
+ drawCircleClippedByEllipseShapeAlphaPaintBlack(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 black color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlack050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 50% transparency
+ drawCircleClippedByEllipseShapeAlphaPaintBlack(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 black color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlack075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 75% transparency
+ drawCircleClippedByEllipseShapeAlphaPaintBlack(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 black color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByEllipseShapeAlphaPaintBlack100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by ellipse shape using alpha paint with 100% transparency
+ drawCircleClippedByEllipseShapeAlphaPaintBlack(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by an ellipse shape. Circle is
* rendered using alpha paint with red color at 0% transparency.
*
* @param image
More information about the distro-pkg-dev
mailing list