/hg/gfx-test: 2011-12-06 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Dec 6 02:44:24 PST 2011
changeset f866b8c554e0 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f866b8c554e0
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Dec 06 11:46:32 2011 +0100
2011-12-06 Pavel Tisnovsky <ptisnovs at redhat.com>
*
src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
Added new to this test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java | 234 +++++++++-
2 files changed, 237 insertions(+), 2 deletions(-)
diffs (270 lines):
diff -r 57cdb69f27a1 -r f866b8c554e0 ChangeLog
--- a/ChangeLog Mon Dec 05 10:51:16 2011 +0100
+++ b/ChangeLog Tue Dec 06 11:46:32 2011 +0100
@@ -1,3 +1,8 @@
+2011-12-06 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
+ Added new to this test suite.
+
2011-12-05 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
diff -r 57cdb69f27a1 -r f866b8c554e0 src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java Mon Dec 05 10:51:16 2011 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java Tue Dec 06 11:46:32 2011 +0100
@@ -80,7 +80,7 @@
*/
private static void basicSetupForRendering(TestImage image, Graphics2D graphics2d)
{
- // create clip shape which is constructed from rectangular area
+ // create clip shape which is constructed from rectangular shape
CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
}
@@ -120,7 +120,57 @@
/**
* Draw circle clipped by rectangle. Circle is drawn using alpha paint with
- * blue color.
+ * red color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByRectangleAlphaPaintRed(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillRedColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+ * green color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByRectangleAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip rectangle
+ CommonClippingOperations.renderClipRectangle(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+ * blue color and selected transparency.
*
* @param image
* work image
@@ -235,6 +285,186 @@
/**
* Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with red color at 0% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 0% transparency
+ drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with red color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 25% transparency
+ drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with red color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 50% transparency
+ drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 50);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with red color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 75% transparency
+ drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 75);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with red color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintRed100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 100% transparency
+ drawCircleClippedByRectangleAlphaPaintRed(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with green color at 0% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen000(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 0% transparency
+ drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 0);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with green color at 25% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen025(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 25% transparency
+ drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 25);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with green color at 50% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen050(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 50% transparency
+ drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 50);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with green color at 75% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen075(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 75% transparency
+ drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 75);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
+ * rendered using alpha paint with green color at 100% transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByRectangleShapeAlphaPaintGreen100(TestImage image, Graphics2D graphics2d)
+ {
+ // draw circle clipped by rectangle using alpha paint with 100% transparency
+ drawCircleClippedByRectangleAlphaPaintGreen(image, graphics2d, 100);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a rectangular shape. Circle is
* rendered using alpha paint with blue color at 0% transparency.
*
* @param image
More information about the distro-pkg-dev
mailing list