/hg/gfx-test: Always set the normalization hint for graphics2D o...

dlila at icedtea.classpath.org dlila at icedtea.classpath.org
Fri Sep 24 08:07:04 PDT 2010


changeset 39e99963d1a1 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=39e99963d1a1
author: Denis Lila <dlila at redhat.com>
date: Fri Sep 24 11:07:17 2010 -0400

	Always set the normalization hint for graphics2D objects of
	TestImages to eliminate any differences caused by defaults in
	different java implementations


diffstat:

1 file changed, 3 insertions(+), 1 deletion(-)
src/org/gfxtest/framework/TestImage.java |    4 +++-

diffs (14 lines):

diff -r 8bdbaf02b8e6 -r 39e99963d1a1 src/org/gfxtest/framework/TestImage.java
--- a/src/org/gfxtest/framework/TestImage.java	Fri Sep 17 13:31:48 2010 +0200
+++ b/src/org/gfxtest/framework/TestImage.java	Fri Sep 24 11:07:17 2010 -0400
@@ -140,7 +140,9 @@ public class TestImage
 
     public Graphics2D getGraphics()
     {
-        return (Graphics2D) this.image.getGraphics();
+        Graphics2D g2d = (Graphics2D) this.image.getGraphics();
+        g2d.setRenderingHint(java.awt.RenderingHints.KEY_STROKE_CONTROL, java.awt.RenderingHints.VALUE_STROKE_PURE);
+        return g2d;
     }
 
     public int getWidth()



More information about the distro-pkg-dev mailing list