/hg/gfx-test: Ten new tests added into BitBltUsingBgColor.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Jul 16 01:51:01 PDT 2013
changeset f963af2be0b9 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f963af2be0b9
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Jul 16 10:54:42 2013 +0200
Ten new tests added into BitBltUsingBgColor.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 150 +++++++++++++++++++++
2 files changed, 155 insertions(+), 0 deletions(-)
diffs (172 lines):
diff -r 6afb31a503a8 -r f963af2be0b9 ChangeLog
--- a/ChangeLog Mon Jul 15 11:48:10 2013 +0200
+++ b/ChangeLog Tue Jul 16 10:54:42 2013 +0200
@@ -1,3 +1,8 @@
+2013-07-16 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Ten new tests added into BitBltUsingBgColor.
+
2013-07-15 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltBasicTests.java:
diff -r 6afb31a503a8 -r f963af2be0b9 src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Jul 15 11:48:10 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Jul 16 10:54:42 2013 +0200
@@ -2560,6 +2560,156 @@
}
/**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.blue.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.green.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.cyan.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.red.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.red);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.magenta.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.yellow.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Background color is set to Color.white.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType4ByteABGR_Pre_backgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType4ByteABGRPre(image, graphics2d, Color.white);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
+ * Background color is set to Color.black.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeIntBGRbackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntBGR(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
+ * Background color is set to Color.blue.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeIntBGRbackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntBGR(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_BGR.
+ * Background color is set to Color.green.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageTypeIntBGRbackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntBGR(image, graphics2d, Color.green);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list