/hg/gfx-test: Added support for generating five new procedural t...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon May 27 03:12:38 PDT 2013
changeset 4cc60b13c813 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=4cc60b13c813
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon May 27 12:16:05 2013 +0200
Added support for generating five new procedural texture types.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/framework/ProceduralTextureFactory.java | 160 ++++++++++++++++
2 files changed, 165 insertions(+), 0 deletions(-)
diffs (180 lines):
diff -r 5cadebb88f79 -r 4cc60b13c813 ChangeLog
--- a/ChangeLog Fri May 24 12:01:33 2013 +0200
+++ b/ChangeLog Mon May 27 12:16:05 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-27 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/ProceduralTextureFactory.java:
+ Added support for generating five new procedural texture types.
+
2013-05-24 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltBasicTests.java:
diff -r 5cadebb88f79 -r 4cc60b13c813 src/org/gfxtest/framework/ProceduralTextureFactory.java
--- a/src/org/gfxtest/framework/ProceduralTextureFactory.java Fri May 24 12:01:33 2013 +0200
+++ b/src/org/gfxtest/framework/ProceduralTextureFactory.java Mon May 27 12:16:05 2013 +0200
@@ -1047,4 +1047,164 @@
return RGBTexture1;
}
+ /**
+ * Create new RGB pattern using given image type.
+ *
+ * @param width
+ * width of a texture
+ * @param height
+ * height of a texture
+ * @param imageType
+ * required image type
+ * @return buffered image containing texture
+ */
+ public static BufferedImage createRGBTexture2(int width, int height, int imageType)
+ {
+ // create new texture instead
+ RGBTexture2 = new BufferedImage(width, height, imageType);
+
+ // 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 = colorComponentFromXOrYCoordinate(width, x);
+ int green = colorComponentFromXOrYCoordinate(height, y);
+ int blue = 0xff;
+ int color = makeRGBColor(red, green, blue);
+ RGBTexture2.setRGB(x, y, color);
+ }
+ }
+ return RGBTexture2;
+ }
+
+ /**
+ * Create new RGB pattern using given image type.
+ *
+ * @param width
+ * width of a texture
+ * @param height
+ * height of a texture
+ * @param imageType
+ * required image type
+ * @return buffered image containing texture
+ */
+ public static BufferedImage createRGBTexture3(int width, int height, int imageType)
+ {
+ // create new texture instead
+ RGBTexture3 = new BufferedImage(width, height, imageType);
+
+ // 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 = colorComponentFromXOrYCoordinate(height, y);
+ int blue = colorComponentFromXOrYCoordinate(width, x);
+ int color = makeRGBColor(red, green, blue);
+ RGBTexture3.setRGB(x, y, color);
+ }
+ }
+ return RGBTexture3;
+ }
+
+ /**
+ * Create new RGB pattern using given image type.
+ *
+ * @param width
+ * width of a texture
+ * @param height
+ * height of a texture
+ * @param imageType
+ * required image type
+ * @return buffered image containing texture
+ */
+ public static BufferedImage createRGBTexture4(int width, int height, int imageType)
+ {
+ // create new texture instead
+ RGBTexture4 = new BufferedImage(width, height, imageType);
+
+ // 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 = colorComponentFromXOrYCoordinate(width, x);
+ int blue = colorComponentFromXOrYCoordinate(height, y);
+ int color = makeRGBColor(red, green, blue);
+ RGBTexture4.setRGB(x, y, color);
+ }
+ }
+ return RGBTexture4;
+ }
+
+ /**
+ * Create new RGB pattern using given image type.
+ *
+ * @param width
+ * width of a texture
+ * @param height
+ * height of a texture
+ * @param imageType
+ * required image type
+ * @return buffered image containing texture
+ */
+ public static BufferedImage createRGBTexture5(int width, int height, int imageType)
+ {
+ // create new texture instead
+ RGBTexture5 = new BufferedImage(width, height, imageType);
+
+ // 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 = colorComponentFromXOrYCoordinate(width, x);
+ int green = 0;
+ int blue = colorComponentFromXOrYCoordinate(height, y);
+ int color = makeRGBColor(red, green, blue);
+ RGBTexture5.setRGB(x, y, color);
+ }
+ }
+ return RGBTexture5;
+ }
+
+ /**
+ * Create new RGB pattern using given image type.
+ *
+ * @param width
+ * width of a texture
+ * @param height
+ * height of a texture
+ * @param imageType
+ * required image type
+ * @return buffered image containing texture
+ */
+ public static BufferedImage createRGBTexture6(int width, int height, int imageType)
+ {
+ // create new texture instead
+ RGBTexture6 = new BufferedImage(width, height, imageType);
+
+ // 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 = colorComponentFromXOrYCoordinate(width, x);
+ int green = 0xff;
+ int blue = colorComponentFromXOrYCoordinate(height, y);
+ int color = makeRGBColor(red, green, blue);
+ RGBTexture6.setRGB(x, y, color);
+ }
+ }
+ return RGBTexture6;
+ }
+
}
More information about the distro-pkg-dev
mailing list