/hg/gfx-test: Added new tests into test cases ClippingCircleByCo...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue May 14 01:46:22 PDT 2013
changeset 16cbf1722b43 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=16cbf1722b43
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue May 14 10:49:47 2013 +0200
Added new tests into test cases ClippingCircleByConcavePolygonalShape
and ClippingCircleByConvexPolygonalShape.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java | 66 +++++++
src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java | 90 ++++++++++
3 files changed, 163 insertions(+), 0 deletions(-)
diffs (190 lines):
diff -r 57c4b42782cb -r 16cbf1722b43 ChangeLog
--- a/ChangeLog Mon May 13 09:54:53 2013 +0200
+++ b/ChangeLog Tue May 14 10:49:47 2013 +0200
@@ -1,3 +1,10 @@
+2013-05-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Added new tests into test cases ClippingCircleByConcavePolygonalShape
+ and ClippingCircleByConvexPolygonalShape.
+
2013-05-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltConvolveOp.java:
diff -r 57c4b42782cb -r 16cbf1722b43 src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java Mon May 13 09:54:53 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java Tue May 14 10:49:47 2013 +0200
@@ -1523,6 +1523,72 @@
}
/**
+ * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+ * rendered using texture paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeRGB4TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture4(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+ * rendered using texture paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeRGB5TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture5(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a concave polygonal shape. Circle is
+ * rendered using texture paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeRGB6TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture6(image, graphics2d);
+ // set clip region and render filled circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args
diff -r 57c4b42782cb -r 16cbf1722b43 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Mon May 13 09:54:53 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Tue May 14 10:49:47 2013 +0200
@@ -430,6 +430,96 @@
/**
* Check if circle shape could be clipped by a convex polygonal 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 testClipCircleByPolygonalShapeAlphaPaintBlack000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 0% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlack(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 black color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintBlack025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 25% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlack(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 black color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintBlack050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 50% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlack(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 black color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintBlack075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 75% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlack(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 black color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeAlphaPaintBlack100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by convex polygonal shape using alpha paint with 100% transparency
+ drawCircleClippedByPolygonalShapeAlphaPaintBlack(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a convex polygonal shape. Circle is
* rendered using alpha paint with red color at 0% transparency.
*
* @param image
More information about the distro-pkg-dev
mailing list