/hg/gfx-test: * src/org/gfxtest/testsuites/ClippingCircleByConca...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Mar 19 06:49:10 PDT 2012
changeset 792acfb21a4f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=792acfb21a4f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 19 14:51:46 2012 +0100
* src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
Added new tests to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java | 374 ++++++++++
2 files changed, 379 insertions(+), 0 deletions(-)
diffs (396 lines):
diff -r 611fd4d84e06 -r 792acfb21a4f ChangeLog
--- a/ChangeLog Thu Mar 15 09:59:13 2012 +0100
+++ b/ChangeLog Mon Mar 19 14:51:46 2012 +0100
@@ -1,3 +1,8 @@
+2012-03-19 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java:
+ Added new tests to this test suite.
+
2012-03-15 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleBySelfIntersectingPolygonalShape.java:
diff -r 611fd4d84e06 -r 792acfb21a4f src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java Thu Mar 15 09:59:13 2012 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConcavePolygonalShape.java Mon Mar 19 14:51:46 2012 +0100
@@ -574,6 +574,380 @@
}
/**
+ * Check if circle shape could be clipped by a concave 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.renderConcaveClipPolygon(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 concave 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.renderConcaveClipPolygon(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 concave 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.renderConcaveClipPolygon(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 concave 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.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeDiagonalCheckerTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeGridTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeDiagonalGridTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeColorDotsTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeHorizontalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeVerticalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeDiagonalStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeHorizontalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeVerticalColorStripesTexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeRGB1TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeRGB2TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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 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 testClipCircleByPolygonalShapeRGB3TexturePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render clip polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConcaveClipPolygon(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