/hg/gfx-test: Four new tests added into the test suite BitBltSca...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Feb 22 01:44:43 PST 2013
changeset f2fa868add3d in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f2fa868add3d
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Feb 22 10:47:26 2013 +0100
Four new tests added into the test suite BitBltScaleImage.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltScaleImage.java | 148 ++++++++++++++++------
2 files changed, 113 insertions(+), 40 deletions(-)
diffs (450 lines):
diff -r b3477d232d48 -r f2fa868add3d ChangeLog
--- a/ChangeLog Thu Feb 21 09:47:49 2013 +0100
+++ b/ChangeLog Fri Feb 22 10:47:26 2013 +0100
@@ -1,3 +1,8 @@
+2013-02-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltScaleImage.java:
+ Four new tests added into the test suite BitBltScaleImage.
+
2013-02-21 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r b3477d232d48 -r f2fa868add3d src/org/gfxtest/testsuites/BitBltScaleImage.java
--- a/src/org/gfxtest/testsuites/BitBltScaleImage.java Thu Feb 21 09:47:49 2013 +0100
+++ b/src/org/gfxtest/testsuites/BitBltScaleImage.java Fri Feb 22 10:47:26 2013 +0100
@@ -83,7 +83,7 @@
* The image is scaled to a double size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -100,7 +100,7 @@
* The image is scaled to one half size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -117,7 +117,7 @@
* The image is scaled to one third size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -134,7 +134,7 @@
* The image is scaled to two thirds size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -151,7 +151,7 @@
* The image is scaled to a double size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -168,7 +168,7 @@
* The image is scaled to one half size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -185,7 +185,7 @@
* The image is scaled to one third size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -202,7 +202,7 @@
* The image is scaled to two thirds size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -219,7 +219,7 @@
* The image is scaled to a double size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -236,7 +236,7 @@
* The image is scaled to one half size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -253,7 +253,7 @@
* The image is scaled to one third size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -270,7 +270,7 @@
* The image is scaled to two thirds size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -287,7 +287,7 @@
* The image is scaled to a double size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -304,7 +304,7 @@
* The image is scaled to one half size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -321,7 +321,7 @@
* The image is scaled to one third size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -338,7 +338,7 @@
* The image is scaled to two thirds size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -355,7 +355,7 @@
* The image is scaled to one half size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -372,7 +372,7 @@
* The image is scaled to two times size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -386,10 +386,44 @@
/**
* Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+ * The image is scaled to one third size in horizontal dimension.
+ *
+ * @param image
+ * destination image for BitBlt graphics canvas
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHScaleOneThird(TestImage image, Graphics2D graphics2d)
+ {
+ return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH / 3,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+ * The image is scaled to two thirds size in horizontal dimension.
+ *
+ * @param image
+ * destination image for BitBlt graphics canvas
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeByteBinaryHScaleTwoThirds(TestImage image, Graphics2D graphics2d)
+ {
+ return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH * 2 / 3,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
* The image is scaled to one half size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -406,7 +440,7 @@
* The image is scaled to two times size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -419,11 +453,45 @@
}
/**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+ * The image is scaled to one third size in vertical dimension.
+ *
+ * @param image
+ * destination image for BitBlt graphics canvas
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVScaleOneThird(TestImage image, Graphics2D graphics2d)
+ {
+ return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT / 3);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY.
+ * The image is scaled to two thirds size in vertical dimension.
+ *
+ * @param image
+ * destination image for BitBlt graphics canvas
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeByteBinaryVScaleTwoThirds(TestImage image, Graphics2D graphics2d)
+ {
+ return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH,
+ CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT * 2 / 3);
+ }
+
+ /**
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_3BYTE_BGR.
* The image is scaled to a double size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -440,7 +508,7 @@
* The image is scaled to one half size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -457,7 +525,7 @@
* The image is scaled to one third size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -474,7 +542,7 @@
* The image is scaled to two thirds size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -491,7 +559,7 @@
* The image is scaled to a double size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -508,7 +576,7 @@
* The image is scaled to one half size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -525,7 +593,7 @@
* The image is scaled to one third size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -542,7 +610,7 @@
* The image is scaled to two thirds size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -559,7 +627,7 @@
* The image is scaled to a double size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -576,7 +644,7 @@
* The image is scaled to one half size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -593,7 +661,7 @@
* The image is scaled to one third size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -610,7 +678,7 @@
* The image is scaled to two thirds size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -627,7 +695,7 @@
* The image is scaled to a double size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -644,7 +712,7 @@
* The image is scaled to one half size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -661,7 +729,7 @@
* The image is scaled to one third size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -678,7 +746,7 @@
* The image is scaled to two thirds size in both dimensions.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -695,7 +763,7 @@
* The image is scaled to one half size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -712,7 +780,7 @@
* The image is scaled to two times size in horizontal dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -729,7 +797,7 @@
* The image is scaled to one half size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
@@ -746,7 +814,7 @@
* The image is scaled to two times size in vertical dimension.
*
* @param image
- * image to which line is to be drawn
+ * destination image for BitBlt graphics canvas
* @param graphics2d
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
More information about the distro-pkg-dev
mailing list