You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Denis Kishenko (JIRA)" <ji...@apache.org> on 2006/11/01 10:45:16 UTC

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

[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


=========== 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

        

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

Posted by "Denis Kishenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2032?page=all ]

Denis Kishenko updated HARMONY-2032:
------------------------------------

    Attachment: HARMONY-2032-actual.PNG

Actual screenshot

> [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
>         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

        

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

Posted by "Denis Kishenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2032?page=all ]

Denis Kishenko updated HARMONY-2032:
------------------------------------

    Attachment: HARMONY-2032-expected.PNG

Expected screenshot

> [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
>         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