/hg/gfx-test: Fixed typos.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Sep 9 08:39:43 UTC 2015
changeset 2f516167638f in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=2f516167638f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Sep 09 10:42:34 2015 +0200
Fixed typos.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 84 +++++++++++-----------
2 files changed, 47 insertions(+), 42 deletions(-)
diffs (112 lines):
diff -r b6a70c794e8e -r 2f516167638f ChangeLog
--- a/ChangeLog Tue Sep 08 15:03:47 2015 +0200
+++ b/ChangeLog Wed Sep 09 10:42:34 2015 +0200
@@ -1,3 +1,8 @@
+2015-09-09 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Fixed typos.
+
2015-09-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
diff -r b6a70c794e8e -r 2f516167638f src/org/gfxtest/testsuites/BitBltUsingBgColor.java
--- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Sep 08 15:03:47 2015 +0200
+++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Wed Sep 09 10:42:34 2015 +0200
@@ -2547,54 +2547,54 @@
}
/**
- * test basic bitblt operation for diagonal color stripes buffered image with type {@link bufferedimage#type_int_bgr}.
- *
- * @param image
- * image to be used as a destination for bitblt-type operations
- * @param graphics2d
- * graphics canvas
- * @param backgroundcolor
- * background color
- * @return test result status - passed, failed or error
+ * Test basic BitBlt operation for diagonal color stripes buffered image with type {@link BufferedImage#TYPE_INT_BGR}.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
*/
private TestResult doBitBltDiagonalColorStripesBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d,
- Color backgroundcolor)
- {
- return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR, backgroundcolor);
- }
-
- /**
- * test basic bitblt operation for diagonal color stripes buffered image with type {@link bufferedimage#type_int_rgb}.
- *
- * @param image
- * image to be used as a destination for bitblt-type operations
- * @param graphics2d
- * graphics canvas
- * @param backgroundcolor
- * background color
- * @return test result status - passed, failed or error
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal color stripes buffered image with type {@link BufferedImage#TYPE_INT_RGB}.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
*/
private TestResult doBitBltDiagonalColorStripesBufferedImageTypeIntRGB(TestImage image, Graphics2D graphics2d,
- Color backgroundcolor)
- {
- return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_RGB, backgroundcolor);
- }
-
- /**
- * test basic bitblt operation for diagonal color stripes buffered image with type {@link bufferedimage#type_byte_binary}.
- *
- * @param image
- * image to be used as a destination for bitblt-type operations
- * @param graphics2d
- * graphics canvas
- * @param backgroundcolor
- * background color
- * @return test result status - passed, failed or error
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_RGB, backgroundColor);
+ }
+
+ /**
+ * Test basic BitBlt operation for diagonal color stripes buffered image with type {@link BufferedImage#TYPE_BYTE_BINARY}.
+ *
+ * @param image
+ * image to be used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @param backgroundColor
+ * background color
+ * @return test result status - PASSED, FAILED or ERROR
*/
private TestResult doBitBltDiagonalColorStripesBufferedImageTypeByteBinary(TestImage image, Graphics2D graphics2d,
- Color backgroundcolor)
- {
- return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, backgroundcolor);
+ Color backgroundColor)
+ {
+ return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, backgroundColor);
}
/**
More information about the distro-pkg-dev
mailing list