/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingCircleByConve...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Mar 6 01:58:07 PST 2012
changeset 818bef11d62c in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=818bef11d62c
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Mar 06 11:00:30 2012 +0100
* src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
Added plenty of new tests.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java | 374 ++++++++++
2 files changed, 379 insertions(+), 0 deletions(-)
diffs (396 lines):
diff -r b81083bcdff3 -r 818bef11d62c ChangeLog
--- a/ChangeLog Mon Mar 05 12:10:42 2012 +0100
+++ b/ChangeLog Tue Mar 06 11:00:30 2012 +0100
@@ -1,3 +1,8 @@
+2012-03-06 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Added plenty of new tests.
+
2012-03-05 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonClippingOperations.java:
diff -r b81083bcdff3 -r 818bef11d62c src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Mon Mar 05 12:10:42 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Tue Mar 06 11:00:30 2012 +0100
@@ -574,6 +574,380 @@
}
/**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using horizontal gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygonal which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set horizontal gradient paint
+ CommonRenderingStyles.setHorizontalGradientFill(image, graphics2d);
+ // set clip region and draw the circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using vertical gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeVerticalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygonal which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set vertical gradient paint
+ CommonRenderingStyles.setVerticalGradientFill(image, graphics2d);
+ // set clip region and draw the circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using diagonal gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeDiagonalGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygonal which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set diagonal gradient paint
+ CommonRenderingStyles.setDiagonalGradientFill(image, graphics2d);
+ // set clip region and draw the circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using radial gradient paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeRadialGradientPaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygonal which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set radial gradient paint
+ CommonRenderingStyles.setRadialGradientFill(image, graphics2d);
+ // set clip region and draw the circle
+ drawFilledCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a 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 testClipCircleByPolygonalShapeCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingCheckerTexture(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 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 testClipCircleByPolygonalShapeDiagonalCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(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 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 testClipCircleByPolygonalShapeGridTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingGridTexture(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 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 testClipCircleByPolygonalShapeDiagonalGridTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingDiagonalGridTexture(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 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 testClipCircleByPolygonalShapeColorDotsTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingColorDotsTexture(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 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 testClipCircleByPolygonalShapeHorizontalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingHorizontalStripesTexture(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 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 testClipCircleByPolygonalShapeVerticalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingVerticalStripesTexture(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 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 testClipCircleByPolygonalShapeDiagonalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingDiagonalStripesTexture(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 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 testClipCircleByPolygonalShapeHorizontalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingHorizontalColorStripesTexture(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 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 testClipCircleByPolygonalShapeVerticalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingVerticalColorStripesTexture(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 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 testClipCircleByPolygonalShapeRGB1TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture1(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 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 testClipCircleByPolygonalShapeRGB2TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture2(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 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 testClipCircleByPolygonalShapeRGB3TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set the texture
+ CommonRenderingStyles.setTextureFillUsingRGBTexture3(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
More information about the distro-pkg-dev
mailing list