/hg/gfx-test: * src/org/gfxtest/framework/CommonClippingOperatio...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Mar 5 03:08:06 PST 2012
changeset b81083bcdff3 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b81083bcdff3
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Mar 05 12:10:42 2012 +0100
* src/org/gfxtest/framework/CommonClippingOperations.java:
Added support for clipping path using convex, concave and
self-intersecting polygonal shapes.
* src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java:
* src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
Renamed and refactored to call methods which work with convex polygons
only.
* src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java:
* src/org/gfxtest/testsuites/ClippingPathByConvexPolygonalShape.java:
Renamed and refactored to call methods which work with convex polygons
only.
* Makefile: updated
diffstat:
ChangeLog | 15 +
Makefile | 8 +-
src/org/gfxtest/framework/CommonClippingOperations.java | 157 ++-
src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java | 586 ++++++++++
src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java | 586 ----------
src/org/gfxtest/testsuites/ClippingPathByConvexPolygonalShape.java | 290 ++++
src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java | 290 ----
7 files changed, 1043 insertions(+), 889 deletions(-)
diffs (truncated from 2035 to 500 lines):
diff -r d5442554d852 -r b81083bcdff3 ChangeLog
--- a/ChangeLog Fri Mar 02 14:11:58 2012 +0100
+++ b/ChangeLog Mon Mar 05 12:10:42 2012 +0100
@@ -1,3 +1,18 @@
+2012-03-05 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonClippingOperations.java:
+ Added support for clipping path using convex, concave and
+ self-intersecting polygonal shapes.
+ * src/org/gfxtest/testsuites/ClippingCircleByPolygonalShape.java:
+ * src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java:
+ Renamed and refactored to call methods which work with convex polygons
+ only.
+ * src/org/gfxtest/testsuites/ClippingPathByPolygonalShape.java:
+ * src/org/gfxtest/testsuites/ClippingPathByConvexPolygonalShape.java:
+ Renamed and refactored to call methods which work with convex polygons
+ only.
+ * Makefile: updated
+
2012-03-02 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/ClippingCircleByEllipseShape.java:
diff -r d5442554d852 -r b81083bcdff3 Makefile
--- a/Makefile Fri Mar 02 14:11:58 2012 +0100
+++ b/Makefile Mon Mar 05 12:10:42 2012 +0100
@@ -159,14 +159,14 @@
$(CLASSES)/$(TESTSUITE_DIR)/Clipping.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByRectangleArea.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByEllipseShape.class \
- $(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByPolygonalShape.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByConvexPolygonalShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByRectangleShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingCircleByRoundRectangleShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByRectangleArea.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByRectangleShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByArbitraryShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByEllipseShape.class \
- $(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByPolygonalShape.class \
+ $(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByConvexPolygonalShape.class \
$(CLASSES)/$(TESTSUITE_DIR)/ClippingPathByRoundRectangleShape.class
COMPARE_RESULTS = \
@@ -226,13 +226,13 @@
$(RESULTS)/Clipping \
$(RESULTS)/ClippingCircleByRectangleArea \
$(RESULTS)/ClippingCircleByEllipseShape \
- $(RESULTS)/ClippingCircleByPolygonalShape \
+ $(RESULTS)/ClippingCircleByConvexPolygonalShape \
$(RESULTS)/ClippingCircleByRectangleShape \
$(RESULTS)/ClippingCircleByRoundRectangleShape \
$(RESULTS)/ClippingPathByRectangleArea \
$(RESULTS)/ClippingPathByArbitraryShape \
$(RESULTS)/ClippingPathByEllipseShape \
- $(RESULTS)/ClippingPathByPolygonalShape \
+ $(RESULTS)/ClippingPathByConvexPolygonalShape \
$(RESULTS)/ClippingPathByRoundRectangleShape \
$(RESULTS)/ClippingPathByRectangleShape
diff -r d5442554d852 -r b81083bcdff3 src/org/gfxtest/framework/CommonClippingOperations.java
--- a/src/org/gfxtest/framework/CommonClippingOperations.java Fri Mar 02 14:11:58 2012 +0100
+++ b/src/org/gfxtest/framework/CommonClippingOperations.java Mon Mar 05 12:10:42 2012 +0100
@@ -160,23 +160,63 @@
}
/**
- * Render the polygon around the clip area. Clip area could have different
- * shape but should be inside this ellipse.
+ * Render convex polygon around the clip area. Clip area could have different
+ * shape but should be inside this shape.
*
* @param image
* work image
* @param graphics2d
* graphics canvas
*/
- public static void renderClipPolygon(TestImage image, Graphics2D graphics2d)
+ public static void renderConvexClipPolygon(TestImage image, Graphics2D graphics2d)
{
// compute size of clip area
final int width = computeClipRegionWidth(image) + 1;
final int height = computeClipRegionHeight(image) + 1;
// color used for clipping areas
graphics2d.setColor(CLIP_SHAPE_COLOR);
- // draw ellipse around the clip area
- graphics2d.drawPolygon(createClippingPolygon(width, height));
+ // draw polygon around the clip area
+ graphics2d.drawPolygon(createConvexClippingPolygon(width, height));
+ }
+
+ /**
+ * Render concave polygon around the clip area. Clip area could have different
+ * shape but should be inside this shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ public static void renderConcaveClipPolygon(TestImage image, Graphics2D graphics2d)
+ {
+ // compute size of clip area
+ final int width = computeClipRegionWidth(image) + 1;
+ final int height = computeClipRegionHeight(image) + 1;
+ // color used for clipping areas
+ graphics2d.setColor(CLIP_SHAPE_COLOR);
+ // draw polygon around the clip area
+ graphics2d.drawPolygon(createConcaveClippingPolygon(width, height));
+ }
+
+ /**
+ * Render the polygon around the clip area. Clip area could have different
+ * shape but should be inside this shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ public static void renderSelfIntersectingClipPolygon(TestImage image, Graphics2D graphics2d)
+ {
+ // compute size of clip area
+ final int width = computeClipRegionWidth(image) + 1;
+ final int height = computeClipRegionHeight(image) + 1;
+ // color used for clipping areas
+ graphics2d.setColor(CLIP_SHAPE_COLOR);
+ // draw polygon around the clip area
+ graphics2d.drawPolygon(createSelfIntersectingClippingPolygon(width, height));
}
/**
@@ -254,25 +294,124 @@
}
/**
- * Create clip region using polygonal shape.
+ * Create clip region using convex polygonal shape.
*
* @param image
* work image
* @param graphics2d
* graphics canvas
*/
- public static void createClipUsingPolygonalShape(TestImage image, Graphics2D graphics2d)
+ public static void createClipUsingConvexPolygonalShape(TestImage image, Graphics2D graphics2d)
{
// compute size of clip area
final int width = computeClipRegionWidth(image);
final int height = computeClipRegionHeight(image);
// create clip shape
- Polygon polygon = createClippingPolygon(width, height);
+ Polygon polygon = createConvexClippingPolygon(width, height);
// and apply the created shape as clipping region
graphics2d.setClip(polygon);
}
/**
+ * Create clip region using concave polygonal shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ public static void createClipUsingConcavePolygonalShape(TestImage image, Graphics2D graphics2d)
+ {
+ // compute size of clip area
+ final int width = computeClipRegionWidth(image);
+ final int height = computeClipRegionHeight(image);
+ // create clip shape
+ Polygon polygon = createConcaveClippingPolygon(width, height);
+ // and apply the created shape as clipping region
+ graphics2d.setClip(polygon);
+ }
+
+ /**
+ * Create clip region using self-intersecting polygonal shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ public static void createClipUsingSelfIntersectingPolygonalShape(TestImage image, Graphics2D graphics2d)
+ {
+ // compute size of clip area
+ final int width = computeClipRegionWidth(image);
+ final int height = computeClipRegionHeight(image);
+ // create clip shape
+ Polygon polygon = createSelfIntersectingClippingPolygon(width, height);
+ // and apply the created shape as clipping region
+ graphics2d.setClip(polygon);
+ }
+
+ /**
+ * Create clipping polygon with given width and height. Please note that the
+ * polygon has the following shape:
+ *
+ * <pre>
+ * ____
+ * / \
+ * / \
+ * \ /
+ * \____/
+ * </pre>
+ *
+ * @param width
+ * image width
+ * @param height
+ * image height
+ * @return new clipping polygon
+ */
+ private static Polygon createConvexClippingPolygon(final int width, final int height)
+ {
+ Polygon polygon = new Polygon();
+ // add five vertexes
+ polygon.addPoint(1, height >> 1);
+ polygon.addPoint(width / 3, 1);
+ polygon.addPoint(2 * width / 3, 1);
+ polygon.addPoint(width, height >> 1);
+ polygon.addPoint(2 * width / 3, height);
+ polygon.addPoint(width / 3, height);
+ return polygon;
+ }
+
+ /**
+ * Create clipping polygon with given width and height. Please note that the
+ * polygon has the following shape:
+ *
+ * <pre>
+ * ______
+ * \ /
+ * \ /
+ * / \
+ * /____\
+ * </pre>
+ *
+ * @param width
+ * image width
+ * @param height
+ * image height
+ * @return new clipping polygon
+ */
+ private static Polygon createConcaveClippingPolygon(final int width, final int height)
+ {
+ Polygon polygon = new Polygon();
+ // add five vertexes
+ polygon.addPoint(1, 1);
+ polygon.addPoint(width, 1);
+ polygon.addPoint(width, height);
+ polygon.addPoint(1, height);
+ polygon.addPoint(width >> 1, height >> 1);
+ return polygon;
+ }
+
+ /**
* Create clipping polygon with given width and height. Please note that the
* polygon has the following shape:
*
@@ -290,7 +429,7 @@
* image height
* @return new clipping polygon
*/
- private static Polygon createClippingPolygon(final int width, final int height)
+ private static Polygon createSelfIntersectingClippingPolygon(final int width, final int height)
{
Polygon polygon = new Polygon();
// add four vertexes
diff -r d5442554d852 -r b81083bcdff3 src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/ClippingCircleByConvexPolygonalShape.java Mon Mar 05 12:10:42 2012 +0100
@@ -0,0 +1,586 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011, 2012 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+package org.gfxtest.testsuites;
+
+import java.awt.Graphics2D;
+
+
+
+import org.gfxtest.framework.CommonClippingOperations;
+import org.gfxtest.framework.CommonRenderingStyles;
+import org.gfxtest.framework.CommonShapesRenderer;
+import org.gfxtest.framework.GfxTest;
+import org.gfxtest.framework.TestImage;
+import org.gfxtest.framework.TestResult;
+import org.gfxtest.framework.annotations.GraphicsPrimitive;
+import org.gfxtest.framework.annotations.GraphicsPrimitives;
+import org.gfxtest.framework.annotations.TestType;
+import org.gfxtest.framework.annotations.TestTypes;
+import org.gfxtest.framework.annotations.Transformation;
+import org.gfxtest.framework.annotations.Transformations;
+import org.gfxtest.framework.annotations.Zoom;
+
+/**
+ * This test check if clipping is working correctly for an empty, filled
+ * and textured circle which is clipped by a polygonal shape.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at Transformation(Transformations.NONE)
+ at GraphicsPrimitive(GraphicsPrimitives.CIRCLE)
+ at Zoom(1)
+public class ClippingCircleByConvexPolygonalShape extends GfxTest
+{
+ /**
+ * Prepare canvas for the rendering.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ private static void basicSetupForRendering(TestImage image, Graphics2D graphics2d)
+ {
+ // create clip area which is constructed from the polygonal shape
+ CommonClippingOperations.createClipUsingConvexPolygonalShape(image, graphics2d);
+ }
+
+ /**
+ * Draw empty circle clipped by a polygonal shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ private static void drawEmptyCircleClippedByPolygonalShape(TestImage image, Graphics2D graphics2d)
+ {
+ // prepare canvas for the rendering
+ basicSetupForRendering(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // draw the area
+ CommonShapesRenderer.drawCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw filled circle clipped by a polygonal shape.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ */
+ private static void drawFilledCircleClippedByPolygonalShape(TestImage image, Graphics2D graphics2d)
+ {
+ // prepare canvas for the rendering
+ basicSetupForRendering(image, graphics2d);
+ // fill the area
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by a polygonal shape. Circle is drawn using alpha
+ * paint with red color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByPolygonalShapeAlphaPaintRed(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip polygon
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillRedColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingConvexPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by a polygonal shape. 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 drawCircleClippedByPolygonalShapeAlphaPaintGreen(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip polygon
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillGreenColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingConvexPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Draw circle clipped by a polygonal shape. Circle is drawn using alpha
+ * paint with blue color and selected transparency.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @param transparency
+ * selected transparency (0..100 percent)
+ */
+ private void drawCircleClippedByPolygonalShapeAlphaPaintBlue(TestImage image, Graphics2D graphics2d, int transparency)
+ {
+ // render clip polygon
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set fill color
+ CommonRenderingStyles.setTransparentFillBlueColor(graphics2d, transparency);
+ // create clip area
+ CommonClippingOperations.createClipUsingConvexPolygonalShape(image, graphics2d);
+ // fill the shape
+ CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+ }
+
+ /**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using stroke paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
+ // set clip region and draw the circle
+ drawEmptyCircleClippedByPolygonalShape(image, graphics2d);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Check if circle shape could be clipped by a polygonal shape. Circle is
+ * rendered using wide stroke paint.
+ *
+ * @param image
+ * work image
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testClipCircleByPolygonalShapeWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // render a polygon which is used as a base for clip shape
+ CommonClippingOperations.renderConvexClipPolygon(image, graphics2d);
More information about the distro-pkg-dev
mailing list