/hg/gfx-test: Ten new tests added into BitBltUsingBgColor test s...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Jul 25 02:41:10 PDT 2013
changeset 16631714a0da in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=16631714a0da
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jul 25 11:44:45 2013 +0200
Ten new tests added into BitBltUsingBgColor test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 352 +++++++++++++++-----
2 files changed, 266 insertions(+), 91 deletions(-)
diffs (truncated from 1004 to 500 lines):
diff -r 17d5c82fa9aa -r 16631714a0da ChangeLog
--- a/ChangeLog Wed Jul 24 11:03:17 2013 +0200
+++ b/ChangeLog Thu Jul 25 11:44:45 2013 +0200
@@ -1,3 +1,8 @@
+2013-07-25 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Ten new tests added into BitBltUsingBgColor test suite.
+
2013-07-24 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltBasicTests.java:
diff -r 17d5c82fa9aa -r 16631714a0da src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Wed Jul 24 11:03:17 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Jul 25 11:44:45 2013 +0200
@@ -85,7 +85,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -102,7 +102,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -119,7 +119,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -136,7 +136,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -153,7 +153,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB_PRE
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -170,7 +170,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -187,7 +187,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -204,7 +204,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_BINARY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -221,7 +221,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -238,7 +238,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_BYTE_INDEXED
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -255,7 +255,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_555_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -272,7 +272,7 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_565_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -289,14 +289,14 @@
* Test basic BitBlt operation for empty buffered image with type TYPE_USHORT_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
* background color
* @return test result status - PASSED, FAILED or ERROR
*/
- private TestResult doBitBltEmptyBufferedImageTypeUshortGRAY(TestImage image, Graphics2D graphics2d,
+ private TestResult doBitBltEmptyBufferedImageTypeUshortGray(TestImage image, Graphics2D graphics2d,
Color backgroundColor)
{
return CommonBitmapOperations.doBitBltTestWithEmptyImage(image, graphics2d, BufferedImage.TYPE_USHORT_GRAY, backgroundColor);
@@ -306,7 +306,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -323,7 +323,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -340,7 +340,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -357,7 +357,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_INT_ARGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -374,7 +374,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_INT_ARGB_PRE
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -391,7 +391,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -408,7 +408,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -425,7 +425,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_BINARY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -442,7 +442,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -459,7 +459,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_BYTE_INDEXED
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -476,7 +476,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_555_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -493,7 +493,7 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_565_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -510,14 +510,14 @@
* Test basic BitBlt operation for checker buffered image with type TYPE_USHORT_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
* background color
* @return test result status - PASSED, FAILED or ERROR
*/
- private TestResult doBitBltCheckerBufferedImageTypeUshortGRAY(TestImage image, Graphics2D graphics2d,
+ private TestResult doBitBltCheckerBufferedImageTypeUshortGray(TestImage image, Graphics2D graphics2d,
Color backgroundColor)
{
return CommonBitmapOperations.doBitBltTestWithCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_GRAY, backgroundColor);
@@ -527,7 +527,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_3BYTE_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -544,7 +544,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -561,7 +561,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_4BYTE_ABGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -578,7 +578,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_ARGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -595,7 +595,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_ARGB_PRE
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -612,7 +612,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_BGR
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -629,7 +629,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_INT_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -646,7 +646,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_BINARY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -663,7 +663,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -680,7 +680,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_INDEXED
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -697,7 +697,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_555_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -714,7 +714,7 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_565_RGB
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
@@ -731,25 +731,195 @@
* Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_GRAY
*
* @param image
- * image used as a destination for BitBlt-type operations
+ * image to be used as a destination for BitBlt-type operations
* @param graphics2d
* graphics canvas
* @param backgroundColor
* background color
* @return test result status - PASSED, FAILED or ERROR
*/
- private TestResult doBitBltDiagonalCheckerBufferedImageTypeUshortGRAY(TestImage image, Graphics2D graphics2d,
+ private TestResult doBitBltDiagonalCheckerBufferedImageTypeUshortGray(TestImage image, Graphics2D graphics2d,
Color backgroundColor)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_USHORT_GRAY, backgroundColor);
}
/**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageType3ByteRGB(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_4BYTE_ABGR
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageType4ByteABGR(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_4BYTE_ABGR
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageType4ByteABGRPre(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_INT_ARGB
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageTypeIntARGB(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_INT_ARGB_PRE
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageTypeIntARGBPre(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB_PRE, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_INT_BGR
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult doBitBltGridBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d,
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithGridImage(image, graphics2d, BufferedImage.TYPE_INT_BGR, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type TYPE_INT_RGB
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
More information about the distro-pkg-dev
mailing list