/hg/gfx-test: Five tests added into BitBltBasicTests.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Apr 9 11:06:22 UTC 2014
changeset 5e2971e3f19f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=5e2971e3f19f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Apr 09 13:07:02 2014 +0200
Five tests added into BitBltBasicTests.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltBasicTests.java | 75 ++++++++++++++++++++++++
2 files changed, 80 insertions(+), 0 deletions(-)
diffs (125 lines):
diff -r 415e13ece3f9 -r 5e2971e3f19f ChangeLog
--- a/ChangeLog Tue Apr 08 09:54:16 2014 +0200
+++ b/ChangeLog Wed Apr 09 13:07:02 2014 +0200
@@ -1,3 +1,8 @@
+2014-04-09 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltBasicTests.java:
+ Five tests added into BitBltBasicTests.
+
2014-04-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnChordAndRectangle.java:
diff -r 415e13ece3f9 -r 5e2971e3f19f src/org/gfxtest/testsuites/BitBltBasicTests.java
--- a/src/org/gfxtest/testsuites/BitBltBasicTests.java Tue Apr 08 09:54:16 2014 +0200
+++ b/src/org/gfxtest/testsuites/BitBltBasicTests.java Wed Apr 09 13:07:02 2014 +0200
@@ -6197,6 +6197,21 @@
}
/**
+ * Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_CUSTOM.
+ *
+ * @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 testBitBltRGBTexture2BufferedImageTypeCustom(TestImage image, Graphics2D graphics2d)
+ {
+ // create new buffered image and then perform basic BitBlt test.
+ return CommonBitmapOperations.doBitBltTestWithRGBTexture2Image(image, graphics2d, BufferedImage.TYPE_CUSTOM);
+ }
+
+ /**
* Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_3BYTE_BGR.
*
* @param image
@@ -6394,6 +6409,21 @@
}
/**
+ * Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_CUSTOM.
+ *
+ * @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 testBitBltRGBTexture3BufferedImageTypeCustom(TestImage image, Graphics2D graphics2d)
+ {
+ // create new buffered image and then perform basic BitBlt test.
+ return CommonBitmapOperations.doBitBltTestWithRGBTexture3Image(image, graphics2d, BufferedImage.TYPE_CUSTOM);
+ }
+
+ /**
* Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_3BYTE_BGR.
*
* @param image
@@ -6591,6 +6621,21 @@
}
/**
+ * Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_CUSTOM.
+ *
+ * @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 testBitBltRGBTexture4BufferedImageTypeCustom(TestImage image, Graphics2D graphics2d)
+ {
+ // create new buffered image and then perform basic BitBlt test.
+ return CommonBitmapOperations.doBitBltTestWithRGBTexture4Image(image, graphics2d, BufferedImage.TYPE_CUSTOM);
+ }
+
+ /**
* Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_3BYTE_BGR.
*
* @param image
@@ -6788,6 +6833,21 @@
}
/**
+ * Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_CUSTOM.
+ *
+ * @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 testBitBltRGBTexture5BufferedImageTypeCustom(TestImage image, Graphics2D graphics2d)
+ {
+ // create new buffered image and then perform basic BitBlt test.
+ return CommonBitmapOperations.doBitBltTestWithRGBTexture5Image(image, graphics2d, BufferedImage.TYPE_CUSTOM);
+ }
+
+ /**
* Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_3BYTE_BGR.
*
* @param image
@@ -6985,6 +7045,21 @@
}
/**
+ * Test basic BitBlt operation for texture RGB pattern #1 buffered image with type TYPE_CUSTOM.
+ *
+ * @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 testBitBltRGBTexture6BufferedImageTypeCustom(TestImage image, Graphics2D graphics2d)
+ {
+ // create new buffered image and then perform basic BitBlt test.
+ return CommonBitmapOperations.doBitBltTestWithRGBTexture6Image(image, graphics2d, BufferedImage.TYPE_CUSTOM);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list