# HG changeset patch # User Pavel Tisnovsky # Date 1441788154 -7200 # Node ID 2f516167638f232a0b1ae78e14772082fb8acdda # Parent b6a70c794e8e9f14a61539330205262803dbc003 Fixed typos. 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 + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Fixed typos. + 2015-09-08 Pavel Tisnovsky * 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); } /**