/hg/gfx-test: Fixed wrong identifier names.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Sep 8 13:00:55 UTC 2015
changeset b6a70c794e8e in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b6a70c794e8e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue Sep 08 15:03:47 2015 +0200
Fixed wrong identifier names.
diffstat:
ChangeLog | 5 ++++
src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 24 +++++++++++-----------
2 files changed, 17 insertions(+), 12 deletions(-)
diffs (60 lines):
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 <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltUsingBgColor.java:
+ Fixed wrong identifier names.
+
2015-09-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* 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);
}
/**
More information about the distro-pkg-dev
mailing list