# HG changeset patch # User Pavel Tisnovsky # Date 1441717427 -7200 # Node ID b6a70c794e8e9f14a61539330205262803dbc003 # Parent 58bfac0c0151ddb7faad3283c6cc0e9c7af27982 Fixed wrong identifier names. diff -r 58bfac0c0151 -r b6a70c794e8e ChangeLog --- a/ChangeLog Tue Sep 08 14:55:24 2015 +0200 +++ b/ChangeLog Tue Sep 08 15:03:47 2015 +0200 @@ -1,3 +1,8 @@ +2015-09-08 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Fixed wrong identifier names. + 2015-09-08 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r 58bfac0c0151 -r b6a70c794e8e src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Sep 08 14:55:24 2015 +0200 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Sep 08 15:03:47 2015 +0200 @@ -2557,10 +2557,10 @@ * 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); + private TestResult doBitBltDiagonalColorStripesBufferedImageTypeIntBGR(TestImage image, Graphics2D graphics2d, + Color backgroundcolor) + { + return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR, backgroundcolor); } /** @@ -2574,10 +2574,10 @@ * 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); + private TestResult doBitBltDiagonalColorStripesBufferedImageTypeIntRGB(TestImage image, Graphics2D graphics2d, + Color backgroundcolor) + { + return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_RGB, backgroundcolor); } /** @@ -2591,10 +2591,10 @@ * 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); + private TestResult doBitBltDiagonalColorStripesBufferedImageTypeByteBinary(TestImage image, Graphics2D graphics2d, + Color backgroundcolor) + { + return CommonBitmapOperations.doBitBltTestWithDiagonalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, backgroundcolor); } /**