Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6244574

X11PM/GDIBlitLoop don't clip to source surface's bounds

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 6
    • 1.4.2
    • client-libs
    • 2d
    • b32
    • x86
    • windows_2000

      The following test doesn't render correctly when run on
      windows with -Dsun.java2d.noddraw=true, or on solaris/linux
      with -Dsun.java2d.pmoffscreen=true
      --- VITest4.java ----
      import java.awt.*;
      import java.awt.event.*;
      import java.awt.image.*;
      import java.util.*;

      public class VITest4 extends Frame {
          private VolatileImage image;

          public static void main(String[] args) {
              Frame frame = new VITest4();
              frame.setBounds(0, 0, 400, 400);
              frame.show();
          }

          VITest4() {
          }

          public void paint(Graphics g) {
              if (image == null) {
                  image = getImage(100, 100);
              }
              int w = getWidth();
              int h = getHeight();
              g.drawImage(image, 0, 0, w, h,
                          0, 0, w, h, null);
          }

          private VolatileImage getImage(int w, int h) {
              image = createVolatileImage(w, h);
              image.validate(getGraphicsConfiguration());
              Graphics g = image.getGraphics();
              g.setColor(Color.RED);
              g.fillRect(0, 0, w, h);
              g.dispose();
              return image;
          }
      }
      -------

      ###@###.### 2005-03-22 23:37:57 GMT

      Note that on unix this bug causes this test to run in an infinite repaint loop,
      since the XCopyArea with incorrect bounds causes an Expose event, which
      causes a new repaint, which causes another XCopyArea, and so on

      ###@###.### 2005-03-30 23:13:42 GMT

            tdv Dmitri Trembovetski (Inactive)
            tdv Dmitri Trembovetski (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: