/hg/gfx-test: Eight new tests added into BitBltUsingBgColor.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Jan 7 13:57:17 UTC 2016
changeset 6e2bcc48fba8 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6e2bcc48fba8
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jan 07 15:00:41 2016 +0100
Eight new tests added into BitBltUsingBgColor.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 122 ++++++++++++++++++++-
2 files changed, 126 insertions(+), 1 deletions(-)
diffs (151 lines):
diff -r e9bbfa68cc70 -r 6e2bcc48fba8 ChangeLog
--- a/ChangeLog Wed Jan 06 12:12:52 2016 +0100
+++ b/ChangeLog Thu Jan 07 15:00:41 2016 +0100
@@ -1,3 +1,8 @@
+2016-01-07 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Eight new tests added into BitBltUsingBgColor.
+
2016-01-06 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/ImageDiffer/ResultWriters/HtmlWriter.java:
diff -r e9bbfa68cc70 -r 6e2bcc48fba8 src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Wed Jan 06 12:12:52 2016 +0100
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Jan 07 15:00:41 2016 +0100
@@ -1,7 +1,7 @@
/*
Java gfx-test framework
- Copyright (C) 2010, 2011, 2012, 2013, 2014 Red Hat
+ Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016 Red Hat
This file is part of IcedTea.
@@ -14656,6 +14656,126 @@
}
/**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.black.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.blue.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.green.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.cyan.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.red.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.red);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.magenta.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.yellow.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ * Background color is set to Color.white.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltDiagonalGridBufferedImageType3ByteBGRbackgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltDiagonalGridBufferedImageType3ByteBGR(image, graphics2d, Color.white);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list