/hg/gfx-test: Five new tests added into BitBltUsingBgColorAlpha....
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Oct 13 14:36:46 UTC 2015
changeset 2b4e9029f1d4 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=2b4e9029f1d4
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Oct 13 16:39:45 2015 +0200
Five new tests added into BitBltUsingBgColorAlpha.java.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 75 +++++++++++++++++
2 files changed, 80 insertions(+), 0 deletions(-)
diffs (97 lines):
diff -r 9ae9e8e33c45 -r 2b4e9029f1d4 ChangeLog
--- a/ChangeLog Mon Oct 12 11:07:09 2015 +0200
+++ b/ChangeLog Tue Oct 13 16:39:45 2015 +0200
@@ -1,3 +1,8 @@
+2015-10-13 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
+ Five new tests added into BitBltUsingBgColorAlpha.java.
+
2015-10-12 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
diff -r 9ae9e8e33c45 -r 2b4e9029f1d4 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Mon Oct 12 11:07:09 2015 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Tue Oct 13 16:39:45 2015 +0200
@@ -2608,6 +2608,81 @@
}
/**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB}.
+ * 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 testBitBltEmptyBufferedImageTypeIntARGBbackgroundMagentaAlpha000(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.magenta, 0.0f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB}.
+ * 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 testBitBltEmptyBufferedImageTypeIntARGBbackgroundMagentaAlpha025(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.magenta, 0.25f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB}.
+ * 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 testBitBltEmptyBufferedImageTypeIntARGBbackgroundMagentaAlpha050(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.magenta, 0.5f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB}.
+ * 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 testBitBltEmptyBufferedImageTypeIntARGBbackgroundMagentaAlpha075(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.magenta, 0.75f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB}.
+ * 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 testBitBltEmptyBufferedImageTypeIntARGBbackgroundMagentaAlpha100(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.magenta, 1.00f);
+ }
+
+ /**
* Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}.
* Background color is set to Color.black.
*
More information about the distro-pkg-dev
mailing list