/hg/gfx-test: Six new rescale operators and nine new tests added...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Mar 14 03:06:10 PDT 2013
changeset 36745cfac283 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=36745cfac283
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Mar 14 11:09:17 2013 +0100
Six new rescale operators and nine new tests added into the test suite BitBltRescaleOp.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/BitBltRescaleOp.java | 144 ++++++++++++++++++++++++
2 files changed, 149 insertions(+), 0 deletions(-)
diffs (191 lines):
diff -r 0c2bda9645ee -r 36745cfac283 ChangeLog
--- a/ChangeLog Wed Mar 13 10:34:35 2013 +0100
+++ b/ChangeLog Thu Mar 14 11:09:17 2013 +0100
@@ -1,3 +1,8 @@
+2013-03-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/BitBltRescaleOp.java:
+ Six new rescale operators and nine new tests added into the test suite BitBltRescaleOp.
+
2013-03-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java:
diff -r 0c2bda9645ee -r 36745cfac283 src/org/gfxtest/testsuites/BitBltRescaleOp.java
--- a/src/org/gfxtest/testsuites/BitBltRescaleOp.java Wed Mar 13 10:34:35 2013 +0100
+++ b/src/org/gfxtest/testsuites/BitBltRescaleOp.java Thu Mar 14 11:09:17 2013 +0100
@@ -76,10 +76,20 @@
private static final float DarkenScale = 0.5f;
private static final float LightenScale = 2.0f;
+ private static final float[] NoFilterScaleArray = {1.0f, 1.0f, 1.0f};
+
private static final float ZeroOffset = 0.0f;
private static final float DarkeningOffset = -128;
private static final float LighteningOffset = 127f;
+ private static final float[] DarkeningRedOffset = new float[]{ DarkeningOffset, 0f, 0f };
+ private static final float[] DarkeningGreenOffset = new float[]{ 0f, DarkeningOffset,0f };
+ private static final float[] DarkeningBlueOffset = new float[]{ 0f, 0f, DarkeningOffset };
+
+ private static final float[] LighteningRedOffset = new float[]{ LighteningOffset, 0f, 0f };
+ private static final float[] LighteningGreenOffset = new float[]{ 0f, LighteningOffset,0f };
+ private static final float[] LighteningBlueOffset = new float[]{ 0f, 0f, LighteningOffset };
+
private static final float WhiteImageOffset = 255f;
private static final float BlackImageOffset = -255f;
@@ -90,6 +100,14 @@
private static final RescaleOp whiteImageOffsetROP = new RescaleOp(NoFilterScale, WhiteImageOffset, null);
private static final RescaleOp blackImageOffsetROP = new RescaleOp(NoFilterScale, BlackImageOffset, null);
+ private static final RescaleOp darkenRedOffsetROP = new RescaleOp(NoFilterScaleArray, DarkeningRedOffset, null);
+ private static final RescaleOp darkenGreenOffsetROP = new RescaleOp(NoFilterScaleArray, DarkeningGreenOffset, null);
+ private static final RescaleOp darkenBlueOffsetROP = new RescaleOp(NoFilterScaleArray, DarkeningBlueOffset, null);
+
+ private static final RescaleOp lightenRedOffsetROP = new RescaleOp(NoFilterScaleArray, LighteningRedOffset, null);
+ private static final RescaleOp lightenGreenOffsetROP = new RescaleOp(NoFilterScaleArray, LighteningGreenOffset, null);
+ private static final RescaleOp lightenBlueOffsetROP = new RescaleOp(NoFilterScaleArray, LighteningBlueOffset, null);
+
private static final RescaleOp darkenScaleROP = new RescaleOp(DarkenScale, ZeroOffset, null);
private static final RescaleOp lightenScaleROP = new RescaleOp(LightenScale, ZeroOffset, null);
private static final RescaleOp blackImageScaleROP = new RescaleOp(BlackImageScale, ZeroOffset, null);
@@ -166,6 +184,90 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundDarkenRedOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, darkenRedOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundDarkenGreenOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, darkenGreenOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundDarkenBlueOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, darkenBlueOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundLightenRedOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, lightenRedOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundLightenGreenOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, lightenGreenOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundLightenBlueOffsetROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, lightenBlueOffsetROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for empty buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
public TestResult testBitBltEmptyBufferedImageType3ByteBGRbackgroundLightenOffsetROP(TestImage image, Graphics2D graphics2d)
{
return doBitBltEmptyBufferedImageType3ByteRGB(image, graphics2d, lightenOffsetROP);
@@ -242,6 +344,48 @@
}
/**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundDarkenScaleROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, darkenScaleROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundLightenScaleROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, lightenScaleROP);
+ }
+
+ /**
+ * Test basic BitBlt operation for checker buffered image with type TYPE_3BYTE_BGR.
+ *
+ * @param image
+ * image used as a destination for BitBlt-type operations
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testBitBltCheckerBufferedImageType3ByteBGRbackgroundBlackImageROP(TestImage image, Graphics2D graphics2d)
+ {
+ return doBitBltCheckerBufferedImageType3ByteRGB(image, graphics2d, blackImageScaleROP);
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list