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

Incremental drawing of images is busted in Java 1.4

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.0
    • client-libs
    • 2d
    • x86
    • windows_98



      Name: gm110360 Date: 07/19/2002


      FULL PRODUCT VERSION :
      java version "1.0.2"
      ----------
      java version "1.1.7B"
      ----------
      java version "1.3.0_01"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0_01)
      Java HotSpot(TM) Client VM (build 1.3.0_01, mixed mode)
      ----------
      java version "1.4.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
      Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)



      FULL OPERATING SYSTEM VERSION :

      Windows 98 [Version 4.10.2222]

      A DESCRIPTION OF THE PROBLEM :
      Images no longer draw incrementally. Run the sample app.
      Under Java 1.0 and 1.1, the image displays incrementally.

      Under Java 1.3/1.4, the image does not display
      incrementally.

      REGRESSION. Last worked in version 1.1.8

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Run the sample app

      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import java.net.*;

      public class noincdraw extends Frame {
          private Image m_image;

          //----------------------------------------------------------------------
          public static void main(String[] args) {
              new noincdraw();
              }
          //----------------------------------------------------------------------
          public noincdraw() {
              super("Incremental Draw");
              resize(800,300);
              show();
              }
          //----------------------------------------------------------------------
          public boolean handleEvent( Event evt ) {
              if (evt.id==Event.WINDOW_DESTROY) {
                  System.exit(0);
                  }
              return super.handleEvent(evt);
              }
          //----------------------------------------------------------------------
          public void paint(Graphics g) {
              if (m_image==null) {
                  try {
                      URL url = new URL("http://www.idyll-by-the-
      sea.com/images/croquet.jpg");
                      m_image = getToolkit().getImage(url);
                      }
                  catch (Exception e) {
                      e.printStackTrace();
                      }
                  }
              g.drawImage( m_image, 0, insets().top, this );
              }
          }

      ---------- END SOURCE ----------

      CUSTOMER WORKAROUND :
      none - incremental drawing is simply busted
      (Review ID: 153534)
      ======================================================================

            Unassigned Unassigned
            gmanwanisunw Girish Manwani (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: