changeset 761:2f516167638f draft

Fixed typos.
author Pavel Tisnovsky <ptisnovs@redhat.com>
date Wed, 09 Sep 2015 10:42:34 +0200
parents b6a70c794e8e
children 567437704f56
files ChangeLog src/org/gfxtest/testsuites/BitBltUsingBgColor.java
diffstat 2 files changed, 47 insertions(+), 42 deletions(-) [+]
line wrap: on
line diff
--- 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@redhat.com>
+
+	* src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+	Fixed typos.
+
 2015-09-08  Pavel Tisnovsky  <ptisnovs@redhat.com>
 
 	* 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);
     }
 
     /**