/hg/gfx-test: Updated.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Aug 4 10:54:59 UTC 2015
changeset 5e107fd36f67 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=5e107fd36f67
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Aug 04 12:57:38 2015 +0200
Updated.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 250 +++++++++-----------
2 files changed, 115 insertions(+), 140 deletions(-)
diffs (391 lines):
diff -r 7181f90a163b -r 5e107fd36f67 ChangeLog
--- a/ChangeLog Mon Aug 03 11:38:35 2015 +0200
+++ b/ChangeLog Tue Aug 04 12:57:38 2015 +0200
@@ -1,3 +1,8 @@
+2015-08-04 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Updated.
+
2015-08-03 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r 7181f90a163b -r 5e107fd36f67 src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Aug 03 11:38:35 2015 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Aug 04 12:57:38 2015 +0200
@@ -8926,37 +8926,7 @@
}
/**
- * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_Pre.
- * 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 testBitBltEmptyBufferedImageType4ByteABGR_Pre_backgroundBlack(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageType4ByteABGRPre(image, graphics2d, Color.black);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_Pre.
- * 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 testBitBltEmptyBufferedImageType4ByteABGR_Pre_backgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageType4ByteABGRPre(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_4BYTE_ABGR_Pre.
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}.
* Background color is set to Color.green.
*
* @param image
@@ -9121,7 +9091,7 @@
}
/**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR.
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}.
* Background color is set to Color.magenta.
*
* @param image
@@ -9130,13 +9100,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntBGRbackgroundMagenta(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.magenta);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR.
+ public TestResult testBitBltEmptyBufferedImageTypeByteIndexedBackgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeByteIndexed(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}.
* Background color is set to Color.yellow.
*
* @param image
@@ -9145,13 +9115,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntBGRbackgroundYellow(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.yellow);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_BGR.
+ public TestResult testBitBltEmptyBufferedImageTypeByteIndexedBackgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeByteIndexed(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}.
* Background color is set to Color.white.
*
* @param image
@@ -9160,13 +9130,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntBGRbackgroundWhite(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.white);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeByteIndexedBackgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeByteIndexed(image, graphics2d, Color.white);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.black.
*
* @param image
@@ -9175,13 +9145,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundBlack(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.black);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.blue.
*
* @param image
@@ -9190,13 +9160,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.green.
*
* @param image
@@ -9205,13 +9175,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundGreen(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.green);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.cyan.
*
* @param image
@@ -9220,13 +9190,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundCyan(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.cyan);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.red.
*
* @param image
@@ -9235,13 +9205,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundRed(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.red);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.red);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.magenta.
*
* @param image
@@ -9250,13 +9220,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundMagenta(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.magenta);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.yellow.
*
* @param image
@@ -9265,13 +9235,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundYellow(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.yellow);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_RGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}.
* Background color is set to Color.white.
*
* @param image
@@ -9280,13 +9250,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntRGBbackgroundWhite(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntRGB(image, graphics2d, Color.white);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort555RGBBackgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort555RGB(image, graphics2d, Color.white);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}.
* Background color is set to Color.black.
*
* @param image
@@ -9295,13 +9265,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntARGBbackgroundBlack(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.black);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort565RGBBackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort565RGB(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}.
* Background color is set to Color.blue.
*
* @param image
@@ -9310,13 +9280,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntARGBbackgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort565RGBBackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort565RGB(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}.
* Background color is set to Color.green.
*
* @param image
@@ -9325,13 +9295,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntARGBbackgroundGreen(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.green);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort565RGBBackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort565RGB(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}.
* Background color is set to Color.cyan.
*
* @param image
@@ -9340,13 +9310,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntARGBbackgroundCyan(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.cyan);
- }
-
- /**
- * Test basic BitBlt operation for empty buffered image with type TYPE_INT_ARGB.
+ public TestResult testBitBltEmptyBufferedImageTypeUshort565RGBBackgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort565RGB(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}.
* Background color is set to Color.red.
*
* @param image
@@ -9355,9 +9325,9 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltEmptyBufferedImageTypeIntARGBbackgroundRed(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltEmptyBufferedImageTypeIntARGB(image, graphics2d, Color.red);
+ public TestResult testBitBltEmptyBufferedImageTypeUshort565RGBBackgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageTypeUshort565RGB(image, graphics2d, Color.red);
}
/**
More information about the distro-pkg-dev
mailing list