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

Xrender slower than X11 for filling very small (1x1) rectangles

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8, 9
    • client-libs
    • 2d

      Performance analysis using J2DNBench which was done whilst fixing JDK-7105461
      found that very small retangles are slower than X11

      The full discussion is here ;
      http://mail.openjdk.java.net/pipermail/2d-dev/2012-October/002806.html
      Relevant text is
      ----
      I used J2DBench with client-jvm on amd64 to test 1x1 rectangles and
      didn't find any measureable difference on my notebook (intel + SNA,
      fastest driver for 2D as far as I know). Usually even hotspot-client
      is quite good optimizing code like this, as the static methods will be
      inlined and redundant checks are usually removed.

      However, I did find 1x1 fillRect with the xrender pipeline to be a lot
      slower compared to X11 which is caused by the xrender pipeline only
      having a XRenderFillRectangles native method, which always calls
      GetIntArrayCritical on a java array even for a single rectangle.
      A fast-path for a single rectangle should pay off for small dimensions.
      -----

            prr Philip Race
            prr Philip Race
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: