/hg/gfx-test: New tests added into BitBltUsingBgColor.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Sep 3 08:20:32 UTC 2015
changeset 3ea01f17c392 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=3ea01f17c392
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Sep 03 10:23:24 2015 +0200
New tests added into BitBltUsingBgColor.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 92 +++++++++++-----------
2 files changed, 51 insertions(+), 46 deletions(-)
diffs (163 lines):
diff -r 73320fa3a318 -r 3ea01f17c392 ChangeLog
--- a/ChangeLog Wed Sep 02 11:13:28 2015 +0200
+++ b/ChangeLog Thu Sep 03 10:23:24 2015 +0200
@@ -1,3 +1,8 @@
+2015-09-03 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ New tests added into BitBltUsingBgColor.
+
2015-09-02 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r 73320fa3a318 -r 3ea01f17c392 src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Wed Sep 02 11:13:28 2015 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Sep 03 10:23:24 2015 +0200
@@ -10711,7 +10711,7 @@
}
/**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.blue.
*
* @param image
@@ -10720,13 +10720,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.green.
*
* @param image
@@ -10735,13 +10735,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundGreen(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.green);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.cyan.
*
* @param image
@@ -10750,13 +10750,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundCyan(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.cyan);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.red.
*
* @param image
@@ -10765,13 +10765,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundRed(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.red);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.red);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.magenta.
*
* @param image
@@ -10780,13 +10780,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundMagenta(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.magenta);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.yellow.
*
* @param image
@@ -10795,13 +10795,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundYellow(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.yellow);
- }
-
- /**
- * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.white.
*
* @param image
@@ -10810,9 +10810,9 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltCheckerBufferedImageTypeIntRGBbackgroundWhite(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, Color.white);
+ public TestResult testBitBltCheckerBufferedImageTypeUshort555RGBBackgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeUshort555RGB(image, graphics2d, Color.white);
}
/**
More information about the distro-pkg-dev
mailing list