/hg/gfx-test: Reformatting to prepare for local merge.
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue May 6 11:10:08 UTC 2014
changeset a55ed9fda1a6 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a55ed9fda1a6
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Tue May 06 13:10:49 2014 +0200
Reformatting to prepare for local merge.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltBufferedImageOp.java | 51 ++++++++++++------
2 files changed, 39 insertions(+), 17 deletions(-)
diffs (185 lines):
diff -r 6a0991824cdb -r a55ed9fda1a6 ChangeLog
--- a/ChangeLog Mon May 05 10:46:18 2014 +0200
+++ b/ChangeLog Tue May 06 13:10:49 2014 +0200
@@ -1,3 +1,8 @@
+2014-05-06 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltBufferedImageOp.java:
+ Reformatting to prepare for local merge.
+
2014-05-05 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r 6a0991824cdb -r a55ed9fda1a6 src/org/gfxtest/testsuites/BitBltBufferedImageOp.java
--- a/src/org/gfxtest/testsuites/BitBltBufferedImageOp.java Mon May 05 10:46:18 2014 +0200
+++ b/src/org/gfxtest/testsuites/BitBltBufferedImageOp.java Tue May 06 13:10:49 2014 +0200
@@ -1819,7 +1819,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeIntRGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeIntRGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_INT_RGB, rasterOp);
}
@@ -1835,7 +1836,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeIntARGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeIntARGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB, rasterOp);
}
@@ -1851,7 +1853,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeIntARGB_Pre(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeIntARGB_Pre(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB_PRE, rasterOp);
}
@@ -1867,7 +1870,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeUshort555RGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeUshort555RGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB, rasterOp);
}
@@ -1883,7 +1887,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeUshort565RGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeUshort565RGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_USHORT_565_RGB, rasterOp);
}
@@ -1899,7 +1904,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltDiagonalStripesTypeUshortGray(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltDiagonalStripesTypeUshortGray(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithDiagonalStripesImage(image, graphics2d, BufferedImage.TYPE_USHORT_GRAY, rasterOp);
}
@@ -1915,7 +1921,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesType3ByteBGR(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesType3ByteBGR(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_3BYTE_BGR, rasterOp);
}
@@ -1931,7 +1938,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesType4ByteABGR(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesType4ByteABGR(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR, rasterOp);
}
@@ -1947,7 +1955,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesType4ByteABGR_Pre(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesType4ByteABGR_Pre(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_4BYTE_ABGR_PRE, rasterOp);
}
@@ -1963,7 +1972,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeByteBinary(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeByteBinary(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_BINARY, rasterOp);
}
@@ -1979,7 +1989,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeByteIndexed(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeByteIndexed(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_INDEXED, rasterOp);
}
@@ -1995,7 +2006,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeByteGray(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeByteGray(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_BYTE_GRAY, rasterOp);
}
@@ -2011,7 +2023,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeIntBGR(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeIntBGR(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_BGR, rasterOp);
}
@@ -2027,7 +2040,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeIntRGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeIntRGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_RGB, rasterOp);
}
@@ -2043,7 +2057,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeIntARGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeIntARGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB, rasterOp);
}
@@ -2059,7 +2074,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeIntARGB_Pre(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeIntARGB_Pre(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_INT_ARGB_PRE, rasterOp);
}
@@ -2075,7 +2091,8 @@
* selected raster operation
* @return test result status - PASSED, FAILED or ERROR
*/
- protected TestResult doBitBltHorizontalColorStripesTypeUshort555RGB(TestImage image, Graphics2D graphics2d, BufferedImageOp rasterOp)
+ protected TestResult doBitBltHorizontalColorStripesTypeUshort555RGB(TestImage image, Graphics2D graphics2d,
+ BufferedImageOp rasterOp)
{
return CommonBitmapOperations.doBitBltTestWithHorizontalColorStripesImage(image, graphics2d, BufferedImage.TYPE_USHORT_555_RGB, rasterOp);
}
More information about the distro-pkg-dev
mailing list