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

The createCompatibleVolatileImage ignores ImageCapabilites param

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 6
    • 6
    • client-libs
    • None
    • 2d
    • b47
    • x86
    • generic

      It seems that method :
      public VolatileImage createCompatibleVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException
      in class java.awt.GraphicsConfiguration ignores parameter caps.
      The result doesn't depends from given ImageCapabilities.

      Also there is no exception thrown, when such ImageCapabilities are not supported by this GraphicsConfiguraition.

      ------------------------------------------------------------------------------
      import java.awt.*;
      import java.awt.image.*;
      class Draw {
          final static int width = 40;
          final static int height = 40;
          static GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
          static GraphicsDevice gd = ge.getDefaultScreenDevice();
          static GraphicsConfiguration gc = gd.getDefaultConfiguration();

          public static void main(String[] a) {
              ImageCapabilities ic = new ImageCapabilities(true);
              try {
                  VolatileImage vi = gc.createCompatibleVolatileImage(width, height, ic);
                  System.out.println("ImageCapabilites is: " + vi.getCapabilities().isAccelerated());
              } catch (AWTException e) { }

              ic = new ImageCapabilities(false);
              try {
                  VolatileImage vi = gc.createCompatibleVolatileImage(width, height, ic);
                  System.out.println("ImageCapabilites is: " + vi.getCapabilities().isAccelerated());
              } catch (AWTException e) { }

          }
      }
      ###@###.### 10/27/04 08:58 GMT

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: