/hg/gfx-test: 2011-10-10 Pavel Tisnovsky <ptisnovs at redhat.com>

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Oct 10 01:04:29 PDT 2011


changeset 3250e7298dec in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=3250e7298dec
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Oct 10 10:06:23 2011 +0200

	2011-10-10 Pavel Tisnovsky <ptisnovs at redhat.com>

	 * Makefile: added new class to compile
		* src/org/gfxtest/testsuites/TexturePaint.java: Added new test
	suite for checking proper painting using raster textures.
		* src/org/gfxtest/framework/ProceduralTextureFactory.java: New
	procedural textures added.
		* src/org/gfxtest/framework/CommonRenderingStyles.java: Helper
	methods for accessing procedural textures added.


diffstat:

 ChangeLog                                               |   11 +
 Makefile                                                |    3 +-
 src/org/gfxtest/framework/CommonRenderingStyles.java    |   36 +-
 src/org/gfxtest/framework/ProceduralTextureFactory.java |   88 ++++-
 src/org/gfxtest/testsuites/TexturePaint.java            |  248 ++++++++++++++++
 5 files changed, 344 insertions(+), 42 deletions(-)

diffs (476 lines):

diff -r 968a7f4d40a5 -r 3250e7298dec ChangeLog
--- a/ChangeLog	Fri Oct 07 15:21:39 2011 +0200
+++ b/ChangeLog	Mon Oct 10 10:06:23 2011 +0200
@@ -1,3 +1,14 @@
+2011-10-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile: added new class to compile
+	* src/org/gfxtest/testsuites/TexturePaint.java:
+	Added new test suite for checking proper painting using raster
+	textures.
+	* src/org/gfxtest/framework/ProceduralTextureFactory.java:
+	New procedural textures added.
+	* src/org/gfxtest/framework/CommonRenderingStyles.java:
+	Helper methods for accessing procedural textures added.
+
 2011-10-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r 968a7f4d40a5 -r 3250e7298dec Makefile
--- a/Makefile	Fri Oct 07 15:21:39 2011 +0200
+++ b/Makefile	Mon Oct 10 10:06:23 2011 +0200
@@ -141,7 +141,8 @@
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoTouchingCircles.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoConcentricCircles.class \
 	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnTwoOverlappingRectangles.class \
-	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnCircleAndRectangle.class
+	$(CLASSES)/$(TESTSUITE_DIR)/CAGOperationsOnCircleAndRectangle.class \
+	$(CLASSES)/$(TESTSUITE_DIR)/TexturePaint.class
 
 COMPARE_RESULTS = \
 	$(RESULTS)/Areas \
diff -r 968a7f4d40a5 -r 3250e7298dec src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java	Fri Oct 07 15:21:39 2011 +0200
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java	Mon Oct 10 10:06:23 2011 +0200
@@ -961,6 +961,24 @@
     }
 
     /**
+     * Set texture paint using simple diagonal checker texture containing just two colors.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingDiagonalCheckerTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getDiagonalCheckerTexturePaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
      * Set texture paint using grid texture where one-pixel width lines are used.
      * 
      * @param image
@@ -1052,24 +1070,6 @@
     }
 
     /**
-     * Set texture paint using gradient texture using two basic colors.
-     * 
-     * @param image
-     *            image to which two dimensional shape is to be rendered
-     * @param graphics
-     *            graphics context for image
-     */
-    public static void setTextureFillUsingGradientTexture(TestImage image, Graphics2D graphics)
-    {
-        // compute anchor for a texture
-        Rectangle2D anchor = createAnchorRectangle(image);
-
-        // create texture and paint object
-        TexturePaint texturePaint = ProceduralTextureFactory.getGradientTexturePaint(image, anchor);
-        graphics.setPaint(texturePaint);
-    }
-
-    /**
      * Set zero pixels wide stroke and default cap and join style.
      * 
      * @param graphics
diff -r 968a7f4d40a5 -r 3250e7298dec src/org/gfxtest/framework/ProceduralTextureFactory.java
--- a/src/org/gfxtest/framework/ProceduralTextureFactory.java	Fri Oct 07 15:21:39 2011 +0200
+++ b/src/org/gfxtest/framework/ProceduralTextureFactory.java	Mon Oct 10 10:06:23 2011 +0200
@@ -60,6 +60,11 @@
     private static BufferedImage checkerTexture = null;
 
     /**
+     * Image used for creating diagonal checker texture.
+     */
+    private static BufferedImage diagonalCheckerTexture = null;
+
+    /**
      * Image used for creating grid texture.
      */
     private static BufferedImage gridTexture = null;
@@ -85,11 +90,6 @@
     private static BufferedImage diagonalStripesTexture = null;
 
     /**
-     * Image used for creating texture containing color gradient.
-     */
-    private static BufferedImage gradientTexture = null;
-
-    /**
      * Create checker texture where tile sizes are based on grid size.
      * 
      * @param gridSize
@@ -129,6 +129,48 @@
     }
 
     /**
+     * Create diagonal checker texture where tile sizes are based on grid size.
+     * 
+     * @param gridSize
+     *            size of a grid
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing checker texture
+     */
+    private static BufferedImage diagonalCheckerTextureFactory(int gridSize, int width, int height)
+    {
+        // used by test for a tile colors
+        int doubledGridSize = gridSize << 1;
+
+        // used for computing checker texture
+        int width2 = width << 1;
+
+        // if the checker texture exists, return it
+        if (diagonalCheckerTexture != null)
+        {
+            return diagonalCheckerTexture;
+        }
+
+        // create new texture instead
+        diagonalCheckerTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+        for (int y = 0; y < height; y++)
+        {
+            for (int x = 0; x < width; x++)
+            {
+                // compute color for each tile
+                boolean evenColumn = ((x + y) % doubledGridSize) >= gridSize;
+                boolean evenRow = ((width2 + x - y) % doubledGridSize) >= gridSize;
+                // compute color for each pixel
+                int color = evenColumn ^ evenRow ? 0 : -1;
+                diagonalCheckerTexture.setRGB(x, y, color);
+            }
+        }
+        return diagonalCheckerTexture;
+    }
+
+    /**
      * Create grid texture where tile sizes are based on grid size.
      * 
      * @param gridSize
@@ -316,6 +358,21 @@
     }
 
     /**
+     * Return {@link TexturePaint} object containing diagonal checker texture.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param anchor
+     *            the Rectangle2D in user space used to anchor and replicate the
+     *            texture
+     * @return {@link TexturePaint} object containing checker texture
+     */
+    public static TexturePaint getDiagonalCheckerTexturePaint(TestImage image, Rectangle2D anchor)
+    {
+        return new TexturePaint(diagonalCheckerTextureFactory(image.getGrid(), image.getWidth(), image.getHeight()), anchor);
+    }
+
+    /**
      * Return {@link TexturePaint} object containing grid texture.
      * 
      * @param image
@@ -357,7 +414,7 @@
      */
     public static TexturePaint getHorizontalStripesPaint(TestImage image, Rectangle2D anchor)
     {
-        return new TexturePaint(horizontalStripesTextureFactory(image.getWidth(), image.getWidth()), anchor);
+        return new TexturePaint(horizontalStripesTextureFactory(image.getWidth(), image.getHeight()), anchor);
     }
 
     /**
@@ -372,7 +429,7 @@
      */
     public static TexturePaint getVerticalStripesPaint(TestImage image, Rectangle2D anchor)
     {
-        return new TexturePaint(verticalStripesTextureFactory(image.getWidth(), image.getWidth()), anchor);
+        return new TexturePaint(verticalStripesTextureFactory(image.getWidth(), image.getHeight()), anchor);
     }
 
     /**
@@ -387,22 +444,7 @@
      */
     public static TexturePaint getDiagonalStripesPaint(TestImage image, Rectangle2D anchor)
     {
-        return new TexturePaint(diagonalStripesTextureFactory(image.getWidth(), image.getWidth()), anchor);
-    }
-
-    /**
-     * Return {@link TexturePaint} object containing texture with gradient fill.
-     * 
-     * @param image
-     *            image to which two dimensional shape is to be rendered
-     * @param anchor
-     *            the Rectangle2D in user space used to anchor and replicate the
-     *            texture
-     * @return {@link TexturePaint} object containing gradient texture
-     */
-    public static TexturePaint getGradientTexturePaint(TestImage image, Rectangle2D anchor)
-    {
-        return null;//new TexturePaint(diagonalGradientTextureFactory(image.getWidth(), image.getWidth()), anchor);
+        return new TexturePaint(diagonalStripesTextureFactory(image.getWidth(), image.getHeight()), anchor);
     }
 
 }
diff -r 968a7f4d40a5 -r 3250e7298dec src/org/gfxtest/testsuites/TexturePaint.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/TexturePaint.java	Mon Oct 10 10:06:23 2011 +0200
@@ -0,0 +1,248 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2010, 2011  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.*;
+import org.gfxtest.framework.annotations.*;
+
+
+
+/**
+ * This test renders filled shapes using TexturePaint.
+ *
+ * @author Pavel Tisnovsky
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at RenderStyle(RenderStyles.FILL)
+ at Transformation(Transformations.NONE)
+ at Zoom(1)
+public class TexturePaint extends GfxTest
+{
+    /**
+     * Test if circle drawn by graphics.drawOval() is rendered correctly.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleEmptyFill(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // draw the circle
+        CommonShapesRenderer.drawCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingCheckerTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingCheckerTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingDiagonalCheckerTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingGridTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingGridTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingDiagonalGridTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalGridTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingHorizontalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingHorizontalStripesTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingVerticalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingVerticalStripesTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Test if filled circle drawn by graphics.fillOval() is rendered correctly.
+     * Texture paint is used for filling this circle.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCircleTexturePaintUsingDiagonalStripesTexture(TestImage image, Graphics2D graphics)
+    {
+        // set stroke color (it could not be used during the shape rendering)
+        CommonRenderingStyles.setStrokeColor(graphics);
+        // set texture
+        CommonRenderingStyles.setTextureFillUsingDiagonalStripesTexture(image, graphics);
+        // draw the circle
+        CommonShapesRenderer.drawFilledCircle(image, graphics);
+        // test return value
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Entry point to the test suite.
+     *
+     * @param args graphics test configuration
+     */
+    public static void main(String[] args)
+    {
+        new TexturePaint().runTestSuite(args);
+    }
+
+}



More information about the distro-pkg-dev mailing list