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

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Tue Oct 11 02:11:33 PDT 2011


changeset a7b36c39d7c3 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a7b36c39d7c3
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Oct 11 11:13:26 2011 +0200

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

	 * src/org/gfxtest/framework/CommonRenderingStyles.java:
		* src/org/gfxtest/framework/ProceduralTextureFactory.java: New
	methods for creating and accessing procedural textures.
		* src/org/gfxtest/framework/CommonShapesRenderer.java:
		* src/org/gfxtest/testsuites/ColorPaint.java:
		* src/org/gfxtest/testsuites/LinearGradientPaint.java:
		* src/org/gfxtest/testsuites/RadialGradientPaint.java: Renamed
	one method to be more consistent.
		* src/org/gfxtest/framework/package-info.java: Added missing
	package declaration.


diffstat:

 ChangeLog                                               |   13 +
 src/org/gfxtest/framework/CommonRenderingStyles.java    |   72 ++++
 src/org/gfxtest/framework/CommonShapesRenderer.java     |    2 +-
 src/org/gfxtest/framework/ProceduralTextureFactory.java |  268 +++++++++++++++-
 src/org/gfxtest/framework/package-info.java             |    2 +
 src/org/gfxtest/testsuites/ColorPaint.java              |    2 +-
 src/org/gfxtest/testsuites/LinearGradientPaint.java     |   36 +-
 src/org/gfxtest/testsuites/RadialGradientPaint.java     |    4 +-
 8 files changed, 370 insertions(+), 29 deletions(-)

diffs (truncated from 723 to 500 lines):

diff -r 3250e7298dec -r a7b36c39d7c3 ChangeLog
--- a/ChangeLog	Mon Oct 10 10:06:23 2011 +0200
+++ b/ChangeLog	Tue Oct 11 11:13:26 2011 +0200
@@ -1,3 +1,16 @@
+2011-10-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonRenderingStyles.java:
+	* src/org/gfxtest/framework/ProceduralTextureFactory.java:
+	New methods for creating and accessing procedural textures.
+	* src/org/gfxtest/framework/CommonShapesRenderer.java:
+	* src/org/gfxtest/testsuites/ColorPaint.java:
+	* src/org/gfxtest/testsuites/LinearGradientPaint.java:
+	* src/org/gfxtest/testsuites/RadialGradientPaint.java:
+	Renamed one method to be more consistent.
+	* src/org/gfxtest/framework/package-info.java:
+	Added missing package declaration.
+
 2011-10-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* Makefile: added new class to compile
diff -r 3250e7298dec -r a7b36c39d7c3 src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java	Mon Oct 10 10:06:23 2011 +0200
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java	Tue Oct 11 11:13:26 2011 +0200
@@ -1070,6 +1070,78 @@
     }
 
     /**
+     * Set texture paint using texture consisting of color dots.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingColorDotsTexture(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getColorDotsPaint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using RGB texture.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingRGBTexture1(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getRGBTexture1Paint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using RGB texture.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingRGBTexture2(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getRGBTexture2Paint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
+     * Set texture paint using RGB texture.
+     * 
+     * @param image
+     *            image to which two dimensional shape is to be rendered
+     * @param graphics
+     *            graphics context for image
+     */
+    public static void setTextureFillUsingRGBTexture3(TestImage image, Graphics2D graphics)
+    {
+        // compute anchor for a texture
+        Rectangle2D anchor = createAnchorRectangle(image);
+
+        // create texture and paint object
+        TexturePaint texturePaint = ProceduralTextureFactory.getRGBTexture3Paint(image, anchor);
+        graphics.setPaint(texturePaint);
+    }
+
+    /**
      * Set zero pixels wide stroke and default cap and join style.
      * 
      * @param graphics
diff -r 3250e7298dec -r a7b36c39d7c3 src/org/gfxtest/framework/CommonShapesRenderer.java
--- a/src/org/gfxtest/framework/CommonShapesRenderer.java	Mon Oct 10 10:06:23 2011 +0200
+++ b/src/org/gfxtest/framework/CommonShapesRenderer.java	Tue Oct 11 11:13:26 2011 +0200
@@ -234,7 +234,7 @@
      * @param graphics
      *            graphics context for image
      */
-    public static void drawFilledRect(TestImage image, Graphics2D graphics)
+    public static void drawFilledRectangle(TestImage image, Graphics2D graphics)
     {
         // calculate center of the image
         int xc = image.getCenterX();
diff -r 3250e7298dec -r a7b36c39d7c3 src/org/gfxtest/framework/ProceduralTextureFactory.java
--- a/src/org/gfxtest/framework/ProceduralTextureFactory.java	Mon Oct 10 10:06:23 2011 +0200
+++ b/src/org/gfxtest/framework/ProceduralTextureFactory.java	Tue Oct 11 11:13:26 2011 +0200
@@ -90,6 +90,26 @@
     private static BufferedImage diagonalStripesTexture = null;
 
     /**
+     * Image used for creating texture containing color dots.
+     */
+    private static BufferedImage colorDotsTexture = null;
+
+    /**
+     * Image used for creating texture containing various RGB colors.
+     */
+    private static BufferedImage RGBTexture1 = null;
+
+    /**
+     * Image used for creating texture containing various RGB colors.
+     */
+    private static BufferedImage RGBTexture2 = null;
+
+    /**
+     * Image used for creating texture containing various RGB colors.
+     */
+    private static BufferedImage RGBTexture3 = null;
+
+    /**
      * Create checker texture where tile sizes are based on grid size.
      * 
      * @param gridSize
@@ -105,7 +125,7 @@
         // used by test for a tile colors
         int doubledGridSize = gridSize << 1;
 
-        // if the checker texture exists, return it
+        // if the checker texture already exists, return it
         if (checkerTexture != null)
         {
             return checkerTexture;
@@ -113,8 +133,11 @@
 
         // create new texture instead
         checkerTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each tile
@@ -147,7 +170,7 @@
         // used for computing checker texture
         int width2 = width << 1;
 
-        // if the checker texture exists, return it
+        // if the checker texture already exists, return it
         if (diagonalCheckerTexture != null)
         {
             return diagonalCheckerTexture;
@@ -155,8 +178,11 @@
 
         // create new texture instead
         diagonalCheckerTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each tile
@@ -186,7 +212,7 @@
         // used by test for a tile colors
         int doubledGridSize = gridSize << 1;
 
-        // if the grid texture exists, return it
+        // if the grid texture already exists, return it
         if (gridTexture != null)
         {
             return gridTexture;
@@ -194,8 +220,11 @@
 
         // create new texture instead
         gridTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each tile
@@ -226,7 +255,7 @@
         // used by test for a tile colors
         int doubledGridSize = gridSize << 1;
 
-        // if the grid texture exists, return it
+        // if the grid texture already exists, return it
         if (diagonalGridTexture != null)
         {
             return diagonalGridTexture;
@@ -234,8 +263,11 @@
 
         // create new texture instead
         diagonalGridTexture = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each tile
@@ -260,7 +292,7 @@
      */
     private static BufferedImage horizontalStripesTextureFactory(int width, int height)
     {
-        // if the texture exists, return it
+        // if the texture already exists, return it
         if (horizontalStripesTexture != null)
         {
             return horizontalStripesTexture;
@@ -268,8 +300,11 @@
 
         // create new texture instead
         horizontalStripesTexture  = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each pixel
@@ -291,7 +326,7 @@
      */
     private static BufferedImage verticalStripesTextureFactory(int width, int height)
     {
-        // if the texture exists, return it
+        // if the texture already exists, return it
         if (verticalStripesTexture != null)
         {
             return verticalStripesTexture;
@@ -299,8 +334,11 @@
 
         // create new texture instead
         verticalStripesTexture  = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each pixel
@@ -322,7 +360,7 @@
      */
     private static BufferedImage diagonalStripesTextureFactory(int width, int height)
     {
-        // if the texture exists, return it
+        // if the texture already exists, return it
         if (diagonalStripesTexture != null)
         {
             return diagonalStripesTexture;
@@ -330,8 +368,11 @@
 
         // create new texture instead
         diagonalStripesTexture  = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_BINARY);
+
+        // for all lines in a raster image
         for (int y = 0; y < height; y++)
         {
+            // for all columns on a line
             for (int x = 0; x < width; x++)
             {
                 // compute color for each pixel
@@ -343,6 +384,159 @@
     }
 
     /**
+     * Create texture containing color dots.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage colorDotsTextureFactory(int width, int height)
+    {
+        // if the texture already exists, return it
+        if (colorDotsTexture != null)
+        {
+            return colorDotsTexture;
+        }
+
+        // create new texture instead
+        colorDotsTexture  = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
+
+        // for all lines in a raster image
+        for (int y = 0; y < height; y++)
+        {
+            // for all columns on a line
+            for (int x = 0; x < width; x++)
+            {
+                int color;
+                // set color to white on even row and column 
+                if (x % 2 == 0 || y % 2 == 0)
+                {
+                    color = -1;
+                }
+                else
+                {
+                    int red = x % 4 == 1 ? 0x00 : 0xff;
+                    int green = y % 4 == 1 ? 0x00 : 0xff;
+                    int blue = 0;
+                    color = (0xff << 24) | (red << 16) | (green << 8) | blue;
+                }
+                colorDotsTexture.setRGB(x, y, color);
+            }
+        }
+        return colorDotsTexture;
+    }
+
+    /**
+     * Create first version of RGB texture.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage RGBTexture1Factory(int width, int height)
+    {
+        // if the texture already exists, return it
+        if (RGBTexture1 != null)
+        {
+            return RGBTexture1;
+        }
+
+        // create new texture instead
+        RGBTexture1  = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
+
+        // for all lines in a raster image
+        for (int y = 0; y < height; y++)
+        {
+            // for all columns on a line
+            for (int x = 0; x < width; x++)
+            {
+                int red = (x - (width >> 1)) & 0xff;
+                int green = (y - (height >> 1)) & 0xff;
+                int blue = 0;
+                int color = (0xff << 24) | (red << 16) | (green << 8) | blue;
+                RGBTexture1.setRGB(x, y, color);
+            }
+        }
+        return RGBTexture1;
+    }
+
+    /**
+     * Create second version of RGB texture.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage RGBTexture2Factory(int width, int height)
+    {
+        // if the texture already exists, return it
+        if (RGBTexture2 != null)
+        {
+            return RGBTexture2;
+        }
+
+        // create new texture instead
+        RGBTexture2  = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
+
+        // for all lines in a raster image
+        for (int y = 0; y < height; y++)
+        {
+            // for all columns on a line
+            for (int x = 0; x < width; x++)
+            {
+                int red = 0;
+                int green = (y - (height >> 1)) & 0xff;
+                int blue = (x - (width >> 1)) & 0xff;
+                int color = (0xff << 24) | (red << 16) | (green << 8) | blue;
+                RGBTexture2.setRGB(x, y, color);
+            }
+        }
+        return RGBTexture2;
+    }
+
+    /**
+     * Create third version of RGB texture.
+     * 
+     * @param width
+     *            width of a texture
+     * @param height
+     *            height of a texture
+     * @return buffered image containing texture
+     */
+    private static BufferedImage RGBTexture3Factory(int width, int height)
+    {
+        // if the texture already exists, return it
+        if (RGBTexture3 != null)
+        {
+            return RGBTexture3;
+        }
+
+        // create new texture instead
+        RGBTexture3  = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
+
+        // for all lines in a raster image
+        for (int y = 0; y < height; y++)
+        {
+            // for all columns on a line
+            for (int x = 0; x < width; x++)
+            {
+                int red = 0xff;
+                int green = (x - (width >> 1)) & 0xff;
+                int blue = (y - (height >> 1)) & 0xff;
+                int color = (0xff << 24) | (red << 16) | (green << 8) | blue;
+                RGBTexture3.setRGB(x, y, color);
+            }
+        }
+        return RGBTexture3;
+    }
+
+    /**
      * Return {@link TexturePaint} object containing checker texture.
      * 
      * @param image
@@ -447,4 +641,64 @@
         return new TexturePaint(diagonalStripesTextureFactory(image.getWidth(), image.getHeight()), anchor);
     }
 
+    /**
+     * Return {@link TexturePaint} object containing texture with color dots.
+     * 
+     * @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 diagonal stripes texture
+     */
+    public static TexturePaint getColorDotsPaint(TestImage image, Rectangle2D anchor)
+    {
+        return new TexturePaint(colorDotsTextureFactory(image.getWidth(), image.getHeight()), anchor);
+    }
+
+    /**
+     * Return {@link TexturePaint} object containing texture with various RGB colors.
+     * 
+     * @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 getRGBTexture1Paint(TestImage image, Rectangle2D anchor)
+    {
+        return new TexturePaint(RGBTexture1Factory(image.getWidth(), image.getHeight()), anchor);
+    }
+
+    /**
+     * Return {@link TexturePaint} object containing texture with various RGB colors.
+     * 
+     * @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 getRGBTexture2Paint(TestImage image, Rectangle2D anchor)
+    {
+        return new TexturePaint(RGBTexture2Factory(image.getWidth(), image.getHeight()), anchor);
+    }
+



More information about the distro-pkg-dev mailing list