You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Petrenko (JIRA)" <ji...@apache.org> on 2006/12/14 12:36:23 UTC

[jira] Resolved: (HARMONY-2032) [classlib][awt] Harmony clipping differs from RI by one pixel

     [ http://issues.apache.org/jira/browse/HARMONY-2032?page=all ]

Alexey Petrenko resolved HARMONY-2032.
--------------------------------------

    Resolution: Invalid

The test case is invalid since MultiRectArea is a Harmony private API and treated as a special case in 2D.

Denis, please verify that you agree with the resolution.

> [classlib][awt] Harmony clipping differs from RI by one pixel
> -------------------------------------------------------------
>
>                 Key: HARMONY-2032
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2032
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexey Petrenko
>         Attachments: HARMONY-2032-actual.PNG, HARMONY-2032-expected.PNG
>
>
> =========== Test ==========
> import java.awt.Color;
> import java.awt.Frame;
> import java.awt.Graphics;
> import java.awt.Panel;
> import java.awt.Rectangle;
> import org.apache.harmony.awt.gl.MultiRectArea;
> public class Test {
>     public static void main(String args[]) throws Exception {
>         Frame f = new Frame();
>         final Panel top = new Panel() {
>             public void paint(final Graphics g) {
>                 MultiRectArea mma = new MultiRectArea();
>                 mma.add(new Rectangle(10, 10, 2, 10));
>                 g.setClip(mma);
>                 g.setColor(Color.RED);
>                 g.drawRect(10, 10, 1, 10);
>             }
>         };
>         f.add(top);
>         f.setSize(200, 200);
>         f.setVisible(true);
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira