/hg/gfx-test: Five new tests added into ClippingCircleByConvexPo...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Jan 6 02:15:49 PST 2014
changeset 9d4807b9f0c5 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=9d4807b9f0c5
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Jan 06 11:20:02 2014 +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 04a041573357 -r 9d4807b9f0c5 ChangeLog
--- a/ChangeLog Fri Jan 03 13:29:15 2014 +0100
+++ b/ChangeLog Mon Jan 06 11:20:02 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-06 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Five new tests added into ClippingCircleByConvexPolygonalShape test suite.
+
2014-01-03 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java:
diff -r 04a041573357 -r 9d4807b9f0c5 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Fri Jan 03 13:29:15 2014 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Mon Jan 06 11:20:02 2014 +0100
@@ -1059,6 +1059,96 @@
}
/**
+ * Check if circle shape could be clipped by a convex polygonal 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 testClipCircleByPolygonalShapeAlphaPaintWhite000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 0% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintWhite(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 white color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintWhite025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 25% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintWhite(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 white color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintWhite050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 50% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintWhite(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 white color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintWhite075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 75% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintWhite(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 white color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintWhite100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 100% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintWhite(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