/hg/gfx-test: Five new tests added into ClippingCircleByConvexPo...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon May 20 01:14:36 PDT 2013
changeset 47183195d9f0 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=47183195d9f0
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon May 20 10:18:01 2013 +0200
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 2fdf9c72f3e4 -r 47183195d9f0 ChangeLog
--- a/ChangeLog Fri May 17 15:01:29 2013 +0200
+++ b/ChangeLog Mon May 20 10:18:01 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-20 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Five new tests added into ClippingCircleByConvexPolygonalShape test suite.
+
2013-05-17 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltAffineTransformOp.java:
diff -r 2fdf9c72f3e4 -r 47183195d9f0 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Fri May 17 15:01:29 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Mon May 20 10:18:01 2013 +0200
@@ -879,6 +879,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 testClipCircleByPolygonalShapeAlphaPaintCyan000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex 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 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 testClipCircleByPolygonalShapeAlphaPaintCyan025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex 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 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 testClipCircleByPolygonalShapeAlphaPaintCyan050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex 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 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 testClipCircleByPolygonalShapeAlphaPaintCyan075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex 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 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 testClipCircleByPolygonalShapeAlphaPaintCyan100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex 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 polygonal shape. Circle is
* rendered using horizontal gradient paint.
*
More information about the distro-pkg-dev
mailing list