/hg/gfx-test: Another six new tests added into BitBltAffineQuadr...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Nov 5 01:56:46 PST 2013
changeset 372bdbeb35f2 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=372bdbeb35f2
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Nov 05 11:00:40 2013 +0100
Another six new tests added into BitBltAffineQuadrantRotateTransformOp.java
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java | 84 ++++++++++
2 files changed, 89 insertions(+), 0 deletions(-)
diffs (106 lines):
diff -r 937aab54cacc -r 372bdbeb35f2 ChangeLog
--- a/ChangeLog Mon Nov 04 09:26:08 2013 +0100
+++ b/ChangeLog Tue Nov 05 11:00:40 2013 +0100
@@ -1,3 +1,8 @@
+2013-11-05 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java:
+ Another six new tests added into BitBltAffineQuadrantRotateTransformOp.java
+
2013-11-04 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltAffineIdentityTransformOp.java:
diff -r 937aab54cacc -r 372bdbeb35f2 src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java
--- a/src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java Mon Nov 04 09:26:08 2013 +0100
+++ b/src/org/gfxtest/testsuites/BitBltAffineQuadrantRotateTransformOp.java Tue Nov 05 11:00:40 2013 +0100
@@ -893,6 +893,90 @@
}
/**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ *
+ * @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 testBitBltCheckerBufferedImageTypeIntRGBRotateTransformation2Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, RotateTransformationNearest1Op[2]);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ *
+ * @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 testBitBltCheckerBufferedImageTypeIntRGBRotateTransformation3Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, RotateTransformationNearest1Op[3]);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ *
+ * @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 testBitBltCheckerBufferedImageTypeIntRGBRotateTransformation4Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, RotateTransformationNearest1Op[4]);
+ }
+
+ /**
+ Test basic BitBlt operation for checker buffered image with type TYPE_INT_RGB.
+ *
+ * @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 testBitBltCheckerBufferedImageTypeIntRGBRotateTransformation5Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntRGB(image, graphics2d, RotateTransformationNearest1Op[5]);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_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 testBitBltCheckerBufferedImageTypeIntBGRRotateTransformation0Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntBGR(image, graphics2d, RotateTransformationNearest1Op[0]);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_INT_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 testBitBltCheckerBufferedImageTypeIntBGRRotateTransformation1Nearest1Op(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageTypeIntBGR(image, graphics2d, RotateTransformationNearest1Op[1]);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list