/hg/gfx-test: * src/org/gfxtest/framework/BitmapCropRegions.java:

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Sep 20 05:02:13 PDT 2012


changeset 9236cf2a422c in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=9236cf2a422c
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Sep 20 14:04:49 2012 +0200

	* src/org/gfxtest/framework/BitmapCropRegions.java:
	Added new class containing clip regions (static fields)
	used by BitBlt tests.
	* src/org/gfxtest/framework/CommonBitmapOperations.java:
	Minor fix.
	* Makefile: Added new class to compile.


diffstat:

 ChangeLog                                             |   9 +
 Makefile                                              |   1 +
 src/org/gfxtest/framework/BitmapCropRegions.java      |  92 +++++++++++++++++++
 src/org/gfxtest/framework/CommonBitmapOperations.java |   2 +-
 4 files changed, 103 insertions(+), 1 deletions(-)

diffs (135 lines):

diff -r 69fc6f9b7bb7 -r 9236cf2a422c ChangeLog
--- a/ChangeLog	Tue Sep 18 14:00:08 2012 +0200
+++ b/ChangeLog	Thu Sep 20 14:04:49 2012 +0200
@@ -1,3 +1,12 @@
+2012-09-20  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/BitmapCropRegions.java:
+	Added new class containing clip regions (static fields)
+	used by BitBlt tests.
+	* src/org/gfxtest/framework/CommonBitmapOperations.java:
+	Minor fix.
+	* Makefile: Added new class to compile.
+
 2012-09-18  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/framework/CommonBitmapOperations.java:
diff -r 69fc6f9b7bb7 -r 9236cf2a422c Makefile
--- a/Makefile	Tue Sep 18 14:00:08 2012 +0200
+++ b/Makefile	Thu Sep 20 14:04:49 2012 +0200
@@ -97,6 +97,7 @@
 	$(CLASSES)/$(FRAMEWORK_DIR)/CommonClippingOperations.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/CommonPathsGenerator.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/CommonBitmapOperations.class \
+	$(CLASSES)/$(FRAMEWORK_DIR)/BitmapCropRegions.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/EntityRenderingStyle.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/TestResult.class \
 	$(CLASSES)/$(FRAMEWORK_DIR)/ParameterNotFoundException.class \
diff -r 69fc6f9b7bb7 -r 9236cf2a422c src/org/gfxtest/framework/BitmapCropRegions.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/BitmapCropRegions.java	Thu Sep 20 14:04:49 2012 +0200
@@ -0,0 +1,92 @@
+/*
+  Java gfx-test framework
+
+   Copyright (C) 2012  Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+ */
+
+package org.gfxtest.framework;
+
+
+
+import java.awt.Rectangle;
+
+
+
+/**
+ * Definitions of crop regions used by various BitBlt tests.
+ *
+ * @author Pavel Tisnovsky
+ */
+public class BitmapCropRegions
+{
+    /**
+     * North-west part of tested image.
+     */
+    public static Rectangle CROP_REGION_NW = new Rectangle(
+                    0,
+                    0,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1);
+
+    /**
+     * North-east part of tested image.
+     */
+    public static Rectangle CROP_REGION_NE = new Rectangle(
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    0,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1);
+
+    /**
+     * South-west part of tested image.
+     */
+    public static Rectangle CROP_REGION_SW = new Rectangle(
+                    0,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1);
+
+    /**
+     * South-east part of tested image.
+     */
+    public static Rectangle CROP_REGION_SE = new Rectangle(
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_WIDTH >> 1,
+                    CommonBitmapOperations.DEFAULT_TEST_IMAGE_HEIGHT >> 1);
+
+}
diff -r 69fc6f9b7bb7 -r 9236cf2a422c src/org/gfxtest/framework/CommonBitmapOperations.java
--- a/src/org/gfxtest/framework/CommonBitmapOperations.java	Tue Sep 18 14:00:08 2012 +0200
+++ b/src/org/gfxtest/framework/CommonBitmapOperations.java	Thu Sep 20 14:04:49 2012 +0200
@@ -412,7 +412,7 @@
         // BitBlt with 1:1 scaling and cropping
         return performBitBlt(bufferedImage, image, graphics2d, cropRegion) ? TestResult.PASSED : TestResult.FAILED;
     }
- 
+
     /**
      * Create new buffered image containing diagonal checker pattern and then perform basic BitBlt test.
      *



More information about the distro-pkg-dev mailing list