/hg/gfx-test: Added one test into BitBltAffineScaleTransformOp.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Oct 2 00:48:00 PDT 2013
changeset 7fa68bf4256a in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=7fa68bf4256a
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Oct 02 09:51:47 2013 +0200
Added one test into BitBltAffineScaleTransformOp.
Four new common test methods added into BitBltBufferedImageOp.
diffstat:
ChangeLog | 7 +
src/org/gfxtest/testsuites/BitBltAffineScaleTransformOp.java | 15 ++
src/org/gfxtest/testsuites/BitBltBufferedImageOp.java | 73 +++++++++++-
3 files changed, 92 insertions(+), 3 deletions(-)
diffs (122 lines):
diff -r 5ad19e7d210f -r 7fa68bf4256a ChangeLog
--- a/ChangeLog Tue Oct 01 09:17:15 2013 +0200
+++ b/ChangeLog Wed Oct 02 09:51:47 2013 +0200
@@ -1,3 +1,10 @@
+2013-10-02 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltAffineScaleTransformOp.java:
+ Added one test into BitBltAffineScaleTransformOp.
+ * src/org/gfxtest/testsuites/BitBltBufferedImageOp.java:
+ Four new common test methods added into BitBltBufferedImageOp.
+
2013-10-01 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltAffineIdentityTransformOp.java:
diff -r 5ad19e7d210f -r 7fa68bf4256a src/org/gfxtest/testsuites/BitBltAffineScaleTransformOp.java
--- a/src/org/gfxtest/testsuites/BitBltAffineScaleTransformOp.java Tue Oct 01 09:17:15 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltAffineScaleTransformOp.java Wed Oct 02 09:51:47 2013 +0200
@@ -111,6 +111,21 @@
}
}
}
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType3ByteBGRScaleTransformation0Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, ScaleTransformationNearest1Op[0]);
+ }
+
/**
* Entry point to the test suite.
*
diff -r 5ad19e7d210f -r 7fa68bf4256a src/org/gfxtest/testsuites/BitBltBufferedImageOp.java
--- a/src/org/gfxtest/testsuites/BitBltBufferedImageOp.java Tue Oct 01 09:17:15 2013 +0200
+++ b/src/org/gfxtest/testsuites/BitBltBufferedImageOp.java Wed Oct 02 09:51:47 2013 +0200
@@ -549,9 +549,76 @@
}
/**
- * Test basic BitBlt operation for buffered image containing diagonal checker pattern
- * with type TYPE_3BYTE_BGR
- *
+ * Test basic BitBlt operation for diagonal checker buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param rasterOp
+ * selected raster operation
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ protected TestResult doBitBltDiagonalCheckerBufferedImageTypeByteBinary(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, rasterOp);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal checker buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param rasterOp
+ * selected raster operation
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ protected TestResult doBitBltDiagonalCheckerBufferedImageTypeByteGray(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_GRAY, rasterOp);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal checker buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param rasterOp
+ * selected raster operation
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ protected TestResult doBitBltDiagonalCheckerBufferedImageTypeByteIndexed(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_BYTE_INDEXED, rasterOp);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal checker buffered image with type {@link BufferedImage#TYPE_CUSTOM}.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param rasterOp
+ * selected raster operation
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ protected TestResult doBitBltDiagonalCheckerBufferedImageTypeCustom(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalCheckerImage(image, graphics2d, BufferedImage.TYPE_CUSTOM, rasterOp);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal checker buffered image with type {@link BufferedImage#TYPE_3BYTE_BGR}.
+ *
* @param image
* image used as a destination for BitBlt-type operations
* @param graphics2d
More information about the distro-pkg-dev
mailing list