/hg/gfx-test: Added five new tests into BitBltUsingBgColorAlpha.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Feb 11 12:13:18 UTC 2016
changeset 1a1eddab7dcb in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=1a1eddab7dcb
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Feb 11 13:16:56 2016 +0100
Added five new tests into BitBltUsingBgColorAlpha.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 77 ++++++++++++++++-
2 files changed, 81 insertions(+), 1 deletions(-)
diffs (106 lines):
diff -r 2e9fd5d53068 -r 1a1eddab7dcb ChangeLog
--- a/ChangeLog Tue Feb 09 14:00:15 2016 +0100
+++ b/ChangeLog Thu Feb 11 13:16:56 2016 +0100
@@ -1,3 +1,8 @@
+2016-02-11 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
+ Added five new tests into BitBltUsingBgColorAlpha.
+
2016-02-09 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r 2e9fd5d53068 -r 1a1eddab7dcb src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Tue Feb 09 14:00:15 2016 +0100
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Thu Feb 11 13:16:56 2016 +0100
@@ -1,7 +1,7 @@
/*
Java gfx-test framework
- Copyright (C) 2012, 2013, 2014, 2015 Red Hat
+ Copyright (C) 2012, 2013, 2014, 2015, 2016 Red Hat
This file is part of IcedTea.
@@ -3208,6 +3208,81 @@
}
/**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_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 testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha000(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.0f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_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 testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha025(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.25f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_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 testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha050(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.5f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_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 testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha075(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.75f);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_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 testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha100(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 1.00f);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list