/hg/gfx-test: Five new tests added into ClippingCircleByConvexPo...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Dec 20 02:28:54 PST 2013
changeset ee50a819aaeb in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=ee50a819aaeb
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Dec 20 11:32:56 2013 +0100
Five new tests added into ClippingCircleByConvexPolygonalShape test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java | 90 ++++++++++
2 files changed, 95 insertions(+), 0 deletions(-)
diffs (112 lines):
diff -r 44d32c4f0367 -r ee50a819aaeb ChangeLog
--- a/ChangeLog Fri Dec 13 09:59:32 2013 +0100
+++ b/ChangeLog Fri Dec 20 11:32:56 2013 +0100
@@ -1,3 +1,8 @@
+2013-12-20 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Five new tests added into ClippingCircleByConvexPolygonalShape test suite.
+
2013-12-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnPieAndRectangle.java:
diff -r 44d32c4f0367 -r ee50a819aaeb src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Fri Dec 13 09:59:32 2013 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Fri Dec 20 11:32:56 2013 +0100
@@ -969,6 +969,96 @@
}
/**
+ * Check if circle shape could be clipped by a convex 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 testClipCircleByPolygonalShapeAlphaPaintYellow000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 0% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintYellow(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a convex 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 testClipCircleByPolygonalShapeAlphaPaintYellow025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 25% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintYellow(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a convex 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 testClipCircleByPolygonalShapeAlphaPaintYellow050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 50% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintYellow(image, graphics2d, 50);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a convex 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 testClipCircleByPolygonalShapeAlphaPaintYellow075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 75% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintYellow(image, graphics2d, 75);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a convex 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 testClipCircleByPolygonalShapeAlphaPaintYellow100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 100% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintYellow(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Check if circle shape could be clipped by a polygonal shape. Circle is
* rendered using horizontal gradient paint.
*
More information about the distro-pkg-dev
mailing list