/hg/gfx-test: Updated.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Mon Jun 8 11:30:20 UTC 2015
changeset a37fe0795223 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a37fe0795223
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Jun 08 13:32:45 2015 +0200
Updated.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 154 ++++++++++----------
2 files changed, 82 insertions(+), 77 deletions(-)
diffs (246 lines):
diff -r e6c0df111443 -r a37fe0795223 ChangeLog
--- a/ChangeLog Thu Jun 04 09:41:46 2015 +0200
+++ b/ChangeLog Mon Jun 08 13:32:45 2015 +0200
@@ -1,3 +1,8 @@
+2015-06-08 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Updated.
+
2015-06-04 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r e6c0df111443 -r a37fe0795223 src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Jun 04 09:41:46 2015 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Jun 08 13:32:45 2015 +0200
@@ -13240,13 +13240,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshort565RGBBackgroundWhite(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshort565RGB(image, graphics2d, Color.white);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_USHORT_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeIntARGB_Pre_backgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeIntARGB_Pre(image, graphics2d, Color.white);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.black.
*
* @param image
@@ -13255,13 +13255,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundBlack(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.black);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.blue.
*
* @param image
@@ -13270,13 +13270,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.green.
*
* @param image
@@ -13285,13 +13285,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundGreen(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.green);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundGreen(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.green);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.cyan.
*
* @param image
@@ -13300,13 +13300,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundCyan(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.cyan);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundCyan(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.cyan);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.red.
*
* @param image
@@ -13315,13 +13315,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundRed(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.red);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundRed(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.red);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.magenta.
*
* @param image
@@ -13330,13 +13330,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundMagenta(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.magenta);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundMagenta(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.magenta);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.yellow.
*
* @param image
@@ -13345,13 +13345,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundYellow(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.yellow);
- }
-
- /**
- * Test basic BitBlt operation for diagonal checker buffered image with type TYPE_BYTE_GRAY.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundYellow(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.yellow);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
* Background color is set to Color.white.
*
* @param image
@@ -13360,13 +13360,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltDiagonalCheckerBufferedImageTypeUshortGrayBackgroundWhite(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltDiagonalCheckerBufferedImageTypeUshortGray(image, graphics2d, Color.white);
- }
-
- /**
- * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
+ public TestResult testBitBltGridBufferedImageTypeByteBinaryBackgroundWhite(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteBinary(image, graphics2d, Color.white);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}.
* Background color is set to Color.black.
*
* @param image
@@ -13375,13 +13375,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltGridBufferedImageType3ByteBGRbackgroundBlack(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltGridBufferedImageType3ByteRGB(image, graphics2d, Color.black);
- }
-
- /**
- * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
+ public TestResult testBitBltGridBufferedImageTypeByteGrayBackgroundBlack(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteGray(image, graphics2d, Color.black);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}.
* Background color is set to Color.blue.
*
* @param image
@@ -13390,13 +13390,13 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testBitBltGridBufferedImageType3ByteBGRbackgroundBlue(TestImage image, Graphics2D graphics2d)
- {
- return doBitBltGridBufferedImageType3ByteRGB(image, graphics2d, Color.blue);
- }
-
- /**
- * Test basic BitBlt operation for grid buffered image with type TYPE_3BYTE_BGR.
+ public TestResult testBitBltGridBufferedImageTypeByteGrayBackgroundBlue(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltGridBufferedImageTypeByteGray(image, graphics2d, Color.blue);
+ }
+
+ /**
+ * Test basic BitBlt operation for grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}.
* Background color is set to Color.green.
*
* @param image
More information about the distro-pkg-dev
mailing list